Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In PHP you can just use $_POST for POST and $_GET for GET (Query string) variables. What's the equivalent in Python?

share|improve this question
Are you writing a CGI script, mod_python, or Django (or other framework) application? The answer hinges on a bit more info... – Rob Jan 21 '09 at 4:03
can you provide sample code for each of these? – Click Upvote Jan 21 '09 at 4:26
1  
CGI, mod_python, Django, CherryPy and Pylons aren't code samples. They're Python Web Frameworks that handle GET and POST. See wiki.python.org/moin/WebFrameworks for information. Your question -- as asked -- cannot be answered. – S.Lott Jan 21 '09 at 11:19
-1: No web framework identified. – S.Lott Jan 21 '09 at 12:40
30  
i didn't know that this depended on frameworks when i asked this question.. sorry for not being born with the knowledge of how every programming language in the world works – Click Upvote Jan 21 '09 at 14:51

5 Answers

up vote 78 down vote accepted

suppose you're posting a html form with this:

<input type="text" name="username">

If using raw cgi:

import cgi
form = cgi.FieldStorage()
print form["username"]

If using Django or Pylons:

print request.GET['username'] # for GET form method
print request.POST['username'] # for POST form method

Using Turbogears, Cherrypy:

from cherrypy import request
print request.params['username']

Web.py:

form = web.input()
print form.username

Werkzeug:

print request.form['username']

If using Cherrypy or Turbogears, you can also define your handler function taking a parameter directly:

def index(self, username):
    print username

So you really will have to choose one of those frameworks.

share|improve this answer
3  
Using import cgi, isn't it print form["username"].value? – J. Katzwinkel Feb 18 at 0:20

They are stored in the CGI fieldstorage object.

import cgi
form = cgi.FieldStorage()

print "The user entered %s" % form.getvalue("uservalue")
share|improve this answer
1  
-1. there are quite a few representation of the request object, depending on the libs/framework used. – bruno desthuilliers Jan 21 '09 at 9:42
4  
I'm not sure why you did -1. I mean, what I gave works. Perhaps he is unable to use a framework. ALso, don't most frameworks just use this in the background? – Evan Fosmark Jan 21 '09 at 20:37
1  
Was stupid to do -1, I've +1 to balance it, plus I think this is the best method as it returns a sting (which is what's asked for) – jdborg Sep 24 '12 at 15:55

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:

import os, sys

# the query string, which contains the raw GET data
# (For example, for http://example.com/myscript.py?a=b&c=d&e
# this is "a=b&c=d&e")
os.getenv("QUERY_STRING")

# the raw POST data
sys.stdin.read()
share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
If you're not ambitious enough to follow a link, I'm not ambitious enough to cut and paste if from the link. – Charlie Martin Jan 21 '09 at 17:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.