Registry / devops / wreq
library0.12.0pypypi✓ verified 88d ago

An ergonomic Python HTTP client that uses TLS fingerprint masking to avoid bot detection. Current version 0.12.0, requires Python >=3.11. Released irregularly; last update 2024.

pip install wreq
INSTALL
IMPORT
SIG · WREQ
W
wreq
devopspythonv0.12.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

wreq
✓ import wreq
✗ from wreq import wreq
wreq is a module, not a class. Use wreq.get() directly.

Simple GET request with automatic TLS fingerprint handling.

import wreq r = wreq.get('https://httpbin.org/get') print(r.status_code) print(r.text)
Debug
Known issues
gotchaThe module is `wreq`, not `wreq-python` or `wreq`. Import `wreq` directly.
fix
Use `import wreq`.
affects: all
gotchawreq does not support async/await. All methods are synchronous and blocking.
fix
Use `wreq.get()` directly; do not await.
affects: <=0.12.0
deprecatedThe `wreq.session` attribute is deprecated. Use `wreq.Session` context manager instead.
fix
Use `with wreq.Session() as s: s.get(...)`.
affects: >=0.12.0
gotchaTLS fingerprint is automatically masked; custom fingerprint setting is not yet implemented.
fix
No action needed; fingerprint is automatic.
affects: <=0.12.0
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'wreq'
Library not installed or pip install failed due to Python version <3.11.
fix
Ensure Python >=3.11 and run `pip install wreq`.
AttributeError: module 'wreq' has no attribute 'get'
Importing from wreq incorrectly, e.g., `from wreq import wreq`.
fix
Use `import wreq` then call `wreq.get()`.
TypeError: 'module' object is not callable
Calling `wreq()` instead of `wreq.get()`.
fix
Use `wreq.get(url)` for GET requests.
Upgrade
Version history
0.12.0latest on PyPI · released Jun 4, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
10
Amazon
1
Resources
wreq — pip install wreq · libregistry