views:

35

answers:

1

Hello, how can I handle post request in python script? Somewhere I want to send it from ajax to the python script with given params. What's correct way to handle that data in python?

+1  A: 

you probably use a cgi and you can handle it with form = cgi.FieldStorage() as described into http://docs.python.org/library/cgi.html

Xavier Combelle