A random user-agent generator
Project description
ua-generator
A random user-agent generator for Python >= 3.6
Features
- No external user-agent list. No downloads.
- Templates are hardcoded into the code.
- Platform and browser versions are based on real releases.
- Client hints (Sec-CH-UA fields).
Installing
pip3 install ua-generator
Basic usage
import ua_generator
ua = ua_generator.generate()
print(ua) # Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/15.2 Safari/604.1.38
Customization
There are three different parameters to the generate user-agent by the certain conditions.
device = ('desktop', 'mobile')
platform = ('windows', 'macos', 'ios', 'linux', 'android')
browser = ('chrome', 'firefox', 'safari')
All of the parameters are optional, and the types can be choose multiple.
import ua_generator
ua = ua_generator.generate(device='desktop', browser='firefox')
print(ua.text) # Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:85.0) Gecko/20100101 Firefox/85.0
print(ua.platform) # linux
print(ua.browser) # firefox
print(ua.ch.brands) # " Not A;Brand";v="99"
print(ua.ch.mobile) # ?0
ua = ua_generator.generate(platform=('ios', 'macos'), browser='chrome')
print(ua.text) # Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/537.36 (KHTML, like Gecko) CriOS/80.0.3987.44 Mobile/15E148 Safari/537.36
print(ua.platform) # ios
print(ua.browser) # chrome
print(ua.ch.brands) # " Not A;Brand";v="99", "Chromium";v="80", "Google Chrome";v="80"
print(ua.ch.mobile) # ?1
Author
Ekin Karadeniz (iamdual@icloud.com)
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
ua-generator-0.1.4.tar.gz
(13.9 kB
view details)
Built Distribution
File details
Details for the file ua-generator-0.1.4.tar.gz
.
File metadata
- Download URL: ua-generator-0.1.4.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fe4144fb4232ad0908a0284c09017f24e06ddaca302a50b02a60c14bd5aa440 |
|
MD5 | 855c157e0f6454b54901a35e96163744 |
|
BLAKE2b-256 | 66b9f5901080aafad65eaa8f2af54553d98abb6a6467ed69f343050f30efc9cc |
File details
Details for the file ua_generator-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: ua_generator-0.1.4-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a452d64c6133f3990437d5db218f2075c36a8c9de4d0eef0fa27a22a015fe035 |
|
MD5 | 9de18eedbf9806de956b36fea122f2e8 |
|
BLAKE2b-256 | 930a6352086ac69b7aca274551c5322217c5b4cb8b7a675c22a39ec462e28a85 |