What is a best way to parse
User Agent string from the django request?
request.META.get('HTTP_USER_AGENT', '')
here is what i get in the string.
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.146 Safari/537.36
Not sure how to parse this information.
Is there any cost(time, + memory) efficient solution. I just need to parse the string thats' all.
you can try this library :
Example :