Skip to content
Advertisement

Getting HTTP GET arguments in Python

I’m trying to run an Icecast stream using a simple Python script to pick a random song from the list of songs on the server. I’m looking to add a voting/request interface, and my host allows use of python to serve webpages through CGI. However, I’m getting hung up on just how to get the GET arguments supplied by the user. I’ve tried the usual way with sys.argv:

#!/usr/bin/python
import sys
print "Content-type: text/htmlnn"
print sys.argv

But hitting up http://example.com/index.py?abc=123&xyz=987 only returns “[‘index.py’]”. Is there some other function Python has for this purpose, or is there something I need to change with CGI? Is what I’m trying to do even possible?

Thanks.

Advertisement

Answer

cgi.FieldStorage() should do the trick for you… It returns a dictionary with key as the field and value as its value.

import cgi
import cgitb; cgitb.enable() # Optional; for debugging only

print "Content-Type: text/html"
print ""

arguments = cgi.FieldStorage()
for i in arguments.keys():
 print arguments[i].value
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement