What is the best method to parse a User-Agent string in Python to reliably detect

  1. Browser
  2. Browser version
  3. OS

Or perhaps any helper library that does it

link|improve this question

More to the point, depending on browser OSes and versions for capability detection is not a good strategy. What problem are you trying to solve? – Dan Davies Brackett May 29 '09 at 19:06
We have a simple ticket reporter form for our web app. And we frequently ask users what's the broswer/OS etc. So we might just detect it beforehand and ask the user to confirm. Well, if thats not so trivial we will just dump the user-agent but still need to ask questions, as user might be using a different browser to submit the ticket. – Shekhar May 29 '09 at 19:12
You may wish to just let Python render the form and use Javascript to change the input field values to those of the current OS and what ever else you wish. – NerdyNick May 29 '09 at 19:23
feedback

6 Answers

up vote 18 down vote accepted

Answering my own question ;)

Finally I decided to go by suggestion#1 i.e. write your own. And I am happy with the outcome. Please feel free to use/modify/send me patch etc.

It's here -> http://pypi.python.org/pypi/httpagentparser

link|improve this answer
This doesn't seem to work particularly well for mobile phones. In particular, blackberry isn't detected. (although you got my +1 for writing it!) – Jason Sundram Sep 20 '11 at 4:15
1  
@Jason Sundram If you help by providing agent strings and expected results, blackberry, others can be supported. Check github.com/shon/httpagentparser/issues – Shekhar Sep 20 '11 at 13:11
I was interested in comparison, but that's a fair point. Retracted. – James Broadhead Apr 14 at 23:00
feedback

UASparser for Python by Hicro Kee. Auto updated datafile and cache from remote server with version checking.

link|improve this answer
feedback

However if you wish to parse all this on the Python side you can use the XML/INI files provided at http://browsers.garykeith.com/downloads.asp to do lookups on the user agent. This is the same file that is used in php's get_browser() function.

link|improve this answer
feedback

Th Browser Cap Parser should work. It may be a bit slow though..

link|improve this answer
feedback

You can't. Best you can get is having someone collect a database of them. You can do that yourself or there are some in Internet.

link|improve this answer
feedback

Having run these suggestions against the full corpus of Firefox User Agents, I've found that the version-number parsing for comparison is quite poor.

If that's what you need, I suggest that you take a look at UAparser, which used to be part of the browserscope project. Documentation here.

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.