Python / AppEngine: Retrieving Client Browser Information

How can I get client browser information (type, version, etc.) using Python / AppEngine?

+5
source share
1 answer

In the User-Agent header:

user_agent_string = self.request.headers['user-agent']

http://code.google.com/appengine/docs/python/tools/webapp/requestclass.html#Request_headers

+5
source

All Articles