The simplest method is the cgi module:
import cgi data = cgi.FieldStorage() data['bob']
But the context that you execute in (the framework you use, WSGI, or even (sky) mod_python) may have different, more efficient, or more direct access methods.
source share