Randomly generates a useragent for fetching a web page without a browser.
Project description
Randomly generate a fake useragent.
This project's idea is inspired by fake-useragent. I rewrote the whole codes in order to boost performance by:
- using
asyncio
andaiohttp
to improve fetching speed - taking advantage of
Xpath
to improve parsing speed - changing random choice algorithm to improve random choice speed
Supported browsers are: chrome, edge, firefox, safari, and opera. Browser name is case insensitive. Some other possible spellings of each browser are mapped to the right one (e.g. "ie" -> "edge", "google" -> "chrome").
Usage
As a binary, on your terminal, just simply enter fakeua
Other usages on terminal:
# Set to get a useragent in debug mode
fakeua <browser or omit> --debug
# Set to get a useragent without local caching
fakeua <browser or omit> --nocache
# Remove cache from $HOME/.cache/fakeua folder
fakeua --remove
# Print the current version of the program
fakeua --version
As a library, in your python script, import the function.
Every time you run the script, the useragent value will be different.
from fake_user_agent import user_agent
# Not specify a browser
ua = user_agent()
# Specify a browser to randomly choose from
ua = user_agent("chrome")
# It takes < 2s for the first run, including fetching, parsing, and writing cache.
# Using cache by default, it takes < 0.01s starting from the second time.
# You can specify not using cache, and it will take < 1s to run, including fetching and parsing.
ua = user_agent(use_cache=False)
# If there is an async function needing a useragent in your script,
# don't put `user_agent()` in your async function, put it above instead.
# Remove cache in a python script.
# May need `sudo python yourscript.py` for Linux.
from fake_user_agent import rm_cache
rm_cache()
Installation
pip install fake_user_agent
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
Built Distribution
File details
Details for the file fake_user_agent-2.1.6.tar.gz
.
File metadata
- Download URL: fake_user_agent-2.1.6.tar.gz
- Upload date:
- Size: 84.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6957d4b2006a350cc37d0c465e55ab04374346a764b409ffecedf6a04d0955b4 |
|
MD5 | c10910ea1206ad536480961819840fee |
|
BLAKE2b-256 | e83bd299b08b250c45df53e68368da7b760b0c98c55ad771e43ff9eec8babef9 |
File details
Details for the file fake_user_agent-2.1.6-py3-none-any.whl
.
File metadata
- Download URL: fake_user_agent-2.1.6-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3fa0c85959cc36377380cac89158597ec3770071132149d5e72f9c9ecc7d833 |
|
MD5 | fbf755e69e1d894c349df329f50af59c |
|
BLAKE2b-256 | d9ff4a69b065f0e578a4a01eb231a94f062d617f01c77cd20def0718d49156be |