I'm using this uwsgi app: http://projects.unbit.it/uwsgi/wiki

def application(env, start_response):
  start_response('200 OK', [('Content-Type','text/html')])
  return "Hello World"

I'd like to know what my current URL is, for example:

localhost:9090/some/path/here?a=b&c=d

For some reason this isn't in the docs. Am I missing something fundamental here? What should I be looking up? How do I get the current URL?

Also, how do you get stuff like:

Cookies, Accept Language, Headers, etc.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

It's all in env, and wsgiref.util can help you get to it. And none of it is specific to uWSGI, which is just a WSGI container.

link|improve this answer
feedback

Most (if not all) servers is based on Apache (grandaddy). The environment is standardized.

Try: env['HTTP_HOST'], env['PATH_INFO'], env['HOST_NAME'], env['REQUEST_METHOD'], env['REQUEST_URI']

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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