Skip to main content

Fake useragent 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 and aiohttp 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

On your terminal, just simply enter fakeua

In your python script, just import the function. Every time you run the script, the useragent value will be different.

from fake_user_agent.main 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 based on my 200M bandwith, including fetching, parsing, and writing cache. 
# Using tempfile by default, it takes < 0.01s starting from the second time. 
# You can specify not using tempfile, and it will take < 1s to run, including fetching and parsing:
ua = user_agent(use_tempfile=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 tempfile in a python script. 
# May need `sudo python yourscript.py` for Linux.
from fake_user_agent.main import rm_tempfile
rm_tempfile()  

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 tempfile folder
fakeua --remove  

# Print the current version of the program
fakeua --version

Installation

pip install fake_user_agent

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fake_user_agent-0.2.0.tar.gz (144.8 kB view details)

Uploaded Source

Built Distribution

fake_user_agent-0.2.0-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file fake_user_agent-0.2.0.tar.gz.

File metadata

  • Download URL: fake_user_agent-0.2.0.tar.gz
  • Upload date:
  • Size: 144.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.25.1

File hashes

Hashes for fake_user_agent-0.2.0.tar.gz
Algorithm Hash digest
SHA256 16a8629476ffe4e6f2bc405373a1f5b996595af39120a9eb0c41e34c5b242c2f
MD5 1a25a12d0797bcc1a13653bc59f23d82
BLAKE2b-256 36d5500b5701d40e9f531b3e5e5f43323ebf03920daecdb1f8952d433f2d92ec

See more details on using hashes here.

File details

Details for the file fake_user_agent-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for fake_user_agent-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 628701062035179990731a8438e5c1637ea5a525aeb8f254f64267358c9f50af
MD5 85aa274b4a3caaccc07d84ab126726e5
BLAKE2b-256 a5ebfbf961be41533e62dbea07e19eba00e557e18759725dfc36102ae836e1c0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page