I\'m using Google App Engine python. I want to know what browser the user is using.
If you're using Django, that should be:
def some_view(request) return HttpResponse(request.META['HTTP_USER_AGENT'])
class BaseRequestHandler(webapp.RequestHandler): def browser(self): return str(self.request.headers['User-Agent'])