Registry / devops / fetch-use

fetch-use

JSON →
library0.4.0pypypi✓ verified 81d ago

Python client for the Browser-Use Fetch HTTP service, enabling programmatic HTTP requests with browser-level headers and fingerprints. Current version 0.4.0, released under MIT license. Development is active with monthly releases.

pip install fetch-use
INSTALL
IMPORT
SIG · FETCH-USE
F
fetch-use
devopspythonv0.4.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.

fetch
from fetch_use import fetch
from fetch_use import FetchUse
FetchResponse
from fetch_use import FetchResponse
FetchError
from fetch_use import FetchError

Initialize client with API key and make a GET request.

import os from fetch_use import FetchUse client = FetchUse(api_key=os.environ.get('FETCH_USE_API_KEY', '')) response = client.get('https://httpbin.org/get') print(response.status_code, response.text[:100])
Debug
Known issues
deprecatedThe sync constructor parameter 'api_base' was removed in v0.4.0. Use environment variable FETCH_USE_BASE_URL instead.
fix
Set FETCH_USE_BASE_URL env var or pass via config object.
affects: <0.4.0
breakingThe method 'request' now requires explicit 'method' parameter; previously it defaulted to 'GET'.
fix
Always pass method argument, e.g., client.request('GET', url).
affects: >=0.4.0
gotchaAPI key must be provided either as environment variable FETCH_USE_API_KEY or passed to the constructor. No fallback.
fix
Set the environment variable before importing or pass api_key directly.
affects: all
Upgrade
Version history
0.4.0latest on PyPI · released Apr 9, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources