├── .gitignore ├── .travis.yml ├── AUTHORS.txt ├── LICENSE.txt ├── MANIFEST ├── MANIFEST.in ├── README.md ├── requirements.txt ├── setup.py └── user_agents ├── __init__.py ├── compat.py ├── devices.json ├── parsers.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS* 3 | TAGS 4 | dist 5 | cabal-dev 6 | *.pyc 7 | build/ 8 | *.egg-info 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/setup.py -------------------------------------------------------------------------------- /user_agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/user_agents/__init__.py -------------------------------------------------------------------------------- /user_agents/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/user_agents/compat.py -------------------------------------------------------------------------------- /user_agents/devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/user_agents/devices.json -------------------------------------------------------------------------------- /user_agents/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/user_agents/parsers.py -------------------------------------------------------------------------------- /user_agents/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selwin/python-user-agents/HEAD/user_agents/tests.py --------------------------------------------------------------------------------