├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── random_user_agent ├── __init__.py ├── data │ └── user_agents.zip ├── params.py └── user_agent.py └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/README.md -------------------------------------------------------------------------------- /random_user_agent/__init__.py: -------------------------------------------------------------------------------- 1 | name = "random_user_agent" 2 | -------------------------------------------------------------------------------- /random_user_agent/data/user_agents.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/random_user_agent/data/user_agents.zip -------------------------------------------------------------------------------- /random_user_agent/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/random_user_agent/params.py -------------------------------------------------------------------------------- /random_user_agent/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/random_user_agent/user_agent.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luqman-Ud-Din/random_user_agent/HEAD/setup.py --------------------------------------------------------------------------------