Skip to content

Instantly share code, notes, and snippets.

@tiramiseb
Created March 18, 2012 08:45
Show Gist options
  • Save tiramiseb/2070022 to your computer and use it in GitHub Desktop.
Save tiramiseb/2070022 to your computer and use it in GitHub Desktop.
Accessing "_GET" like in PHP with mod_python/PSP
import urlparse
_GET = dict(urlparse.parse_qsl(req.subprocess_env['QUERY_STRING']))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment