Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ua-parser/uap-python
Python implementation of ua-parser
https://github.com/ua-parser/uap-python
python3 user-agent user-agent-parser user-agent-parsing
Last synced: 3 days ago
JSON representation
Python implementation of ua-parser
- Host: GitHub
- URL: https://github.com/ua-parser/uap-python
- Owner: ua-parser
- License: apache-2.0
- Created: 2014-11-09T04:09:44.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T21:23:16.000Z (4 months ago)
- Last Synced: 2024-10-29T21:33:18.906Z (4 months ago)
- Topics: python3, user-agent, user-agent-parser, user-agent-parsing
- Language: Python
- Homepage:
- Size: 865 KB
- Stars: 563
- Watchers: 31
- Forks: 152
- Open Issues: 8
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
uap-python
==========Official python implementation of the `User Agent String
Parser `_ project.Build Status
------------.. image:: https://github.com/ua-parser/uap-python/actions/workflows/ci.yml/badge.svg
:target: https://github.com/ua-parser/uap-python/actions/workflows/ci.yml?query=branch%3Amaster
:alt: CI on the master branch.. image:: https://readthedocs.org/projects/uap-python/badge/?version=latest
:target: https://uap-python.readthedocs.io/
:alt: Documentation StatusInstalling
----------Add ``ua-parser[regex]`` to your project's dependencies, or run
.. code-block:: sh
$ pip install 'ua-parser[regex]'
to install in the current environment.
ua-parser supports CPython 3.9 and newer, recent pypy (supporting
3.10), and GraalPy 24... note::
The ``[regex]`` feature is *strongly* recommended:
- ``[re2]`` is slightly slower and only works with cpython, though
it is still a great option then (and is more memory-efficient).
- Pure python (no feature) is *significantly* slower, especially on
non-cpython runtimes, but it is the most memory efficient even
with caches.See `builtin resolvers`_ for more explanation of the tradeoffs
between the different options... _builtin resolvers: https://uap-python.readthedocs.io/stable/guides.html#builtin-resolvers
Quick Start
-----------Retrieve all data on a user-agent string
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.. code-block:: python
>>> from ua_parser import parse
>>> ua_string = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.104 Safari/537.36'
>>> parse(ua_string) # doctest: +NORMALIZE_WHITESPACE, +ELLIPSIS
Result(user_agent=UserAgent(family='Chrome',
major='41',
minor='0',
patch='2272',
patch_minor='104'),
os=OS(family='Mac OS X',
major='10',
minor='9',
patch='4',
patch_minor=None),
device=Device(family='Mac',
brand='Apple',
model='Mac'),
string='Mozilla/5.0 (Macintosh; Intel Mac OS...Any datum not found in the user agent string is set to ``None``::
>>> parse("")
Result(user_agent=None, os=None, device=None, string='')Extract only browser data from user-agent string
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.. code-block:: python
>>> from ua_parser import parse_user_agent
>>> ua_string = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.104 Safari/537.36'
>>> parse_user_agent(ua_string)
UserAgent(family='Chrome', major='41', minor='0', patch='2272', patch_minor='104')For specific domains, a match failure just returns ``None``::
>>> parse_user_agent("")
Extract OS information from user-agent string
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.. code-block:: python
>>> from ua_parser import parse_os
>>> ua_string = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.104 Safari/537.36'
>>> parse_os(ua_string)
OS(family='Mac OS X', major='10', minor='9', patch='4', patch_minor=None)Extract device information from user-agent string
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.. code-block:: python
>>> from ua_parser import parse_device
>>> ua_string = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.104 Safari/537.36'
>>> parse_device(ua_string)
Device(family='Mac', brand='Apple', model='Mac')Upgrading
---------Upgrading from 0.x? See `the upgrade guide`_.
.. _the upgrade guide: https://uap-python.readthedocs.io/stable/advanced/migration.html