Extracts OS Browser etc information from http user agent string
Project description
Features
Works on Python 2.5+ and Python 3
Fast
Detects OS and Browser. Does not aim to be a full featured agent parser
Usage
>>> import httpagentparser >>> s = "Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.9 (KHTML, like Gecko) Chrome/5.0.307.11 Safari/532.9" >>> print httpagentparser.simple_detect(s) ('Linux', 'Chrome 5.0.307.11') >>> print httpagentparser.detect(s) {'os': {'name': 'Linux'}, 'browser': {'version': '5.0.307.11', 'name': 'Chrome'}} >>> s = "Mozilla/5.0 (Linux; U; Android 2.3.5; en-in; HTC_DesireS_S510e Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" >>> print httpagentparser.simple_detect(s) ('Android Linux 2.3.5', 'Safari 4.0') >>> print httpagentparser.detect(s) {'dist': {'version': '2.3.5', 'name': 'Android'}, 'os': {'name': 'Linux'}, 'browser': {'version': '4.0', 'name': 'Safari'}}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
httpagentparser-1.1.2.tar.gz
(3.8 kB
view details)
File details
Details for the file httpagentparser-1.1.2.tar.gz
.
File metadata
- Download URL: httpagentparser-1.1.2.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d0e45aa460fcad5237e2d1d6f8f26455a51c20ac524888ba1aa6522b3776c44 |
|
MD5 | 1c7fd4cf73533f3347d99d5d623cf7a2 |
|
BLAKE2b-256 | 36c515c9cf32d3ed663ff05f61e5075f9dd75f996cea0a7b500727a8074ba336 |