vote up 1 vote down star

In PHP I simply write:

$bob = $_POST['bob'];

How do I do the same in Python?

And yes, I do normally check that it exists etc, I'm just stripping it down specifically to the functionality I am after.


Edit: I am not using a framework

flag

may be you want to add "http" to the tags, I'm not sure that the tags "post" and "get" applies to this question. – David Ameller Sep 22 '08 at 20:01
Good plan, done! – Teifion Sep 22 '08 at 20:08

4 Answers

vote up 6 vote down check

The simplest method is the 'cgi' module:

import cgi
data = cgi.FieldStorage()
data['bob']

But the context you are executing in (frameworks you're using, WSGI or even (heaven forbid) mod_python) may have different, more efficient or more direct methods of access.

link|flag
vote up 0 vote down

Well, that really depends on what framework you are using. Elaborate?

link|flag
I am not using a framework, if I was then I'd have said so :) – Teifion Sep 22 '08 at 20:00
I agree with William. Your question should have been more clear. There isn't enough context, regardless if you implied any. – fuentesjr Sep 22 '08 at 20:09
vote up 1 vote down

Full example of how to process forms, including POST values, can be found here http://www.pyzine.com/Issue008/Section_Articles/article_CGIOne.html

link|flag
vote up 0 vote down

What exactly are you coding for? Is it a CGI scritpt in python? a wsgi application? a django/pylons/whateverframework application?

link|flag

Your Answer

Get an OpenID
or

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