I'm using python and apache2.
I'd like to write a script called test.py that when accessed at http://example.com/test.py?foo=bar, prints the string 'bar'
I'm thinking it should be like this:
def index(req):
return idontknow.foo
The idontknow.foo is the part I'm asking about.