In PHP you can just use $_POST for POST and $_GET for GET (Query string) variables. What's the equivalent in Python?
|
|
|||||||||||||||
|
|
suppose you're posting a html form with this:
If using raw cgi:
Using Turbogears, Cherrypy:
If using Cherrypy or Turbogears, you can also define your handler function taking a parameter directly:
So you really will have to choose one of those frameworks. |
|||||
|
|
They are stored in the CGI fieldstorage object.
|
|||||||||||||
|
|
I've found nosklo's answer very extensive and useful! For those, like myself, who might find accessing the raw request data directly also useful, I would like to add the way to do that:
|
|||
|
|
|
Python is only a language, to get GET and POST data, you need a web framework or toolkit written in Python. Django is one, as Charlie points out, the cgi and urllib standard modules are others. Also available are Turbogears, Pylons, CherryPy, web.py, mod_python, fastcgi, etc, etc. In Django, your view functions receive a request argument which has request.GET and request.POST. Other frameworks will do it differently. |
|||
|
|
|
It somewhat depends on what you use as a CGI framework, but they are available in dictionaries accessible to the program. I'd point you to the docs, but I'm not getting through to python.org right now. But this note on mail.python.org will give you a first pointer. Look at the CGI and URLLIB Python libs for more. |
|||
|