Official Python SDK for Browsa — anti-detect cloud browsers for AI agents (browsa.io)
Project description
browsa (Python)
Anti-detect browsers for AI agents — official Python SDK for browsa.io.
Install
pip install browsa
Zero dependencies. Pure stdlib. Single-file wheel.
Five-line hello world
from browsa import Client
c = Client(api_key="agt_live_...")
job = c.run_task(
task="Go to news.ycombinator.com and return the top story title.",
llm="claude-opus-4-7",
llm_api_key="sk-ant-...",
)
print(job.final_result)
print("watch live:", job.live_url)
That runs a real Chromium fork (Phantom — our anti-detect browser) inside an isolated burner session, driven by browser-use + Claude Opus. The agent navigates, extracts, and returns. A live noVNC stream URL is available the moment the burner spawns.
Async
import asyncio
from browsa import AsyncClient
async def main():
async with AsyncClient(api_key="agt_live_...") as c:
job = await c.run_task(
task="Scrape the top 5 products on producthunt.com today.",
llm="claude-opus-4-7",
llm_api_key="sk-ant-...",
country="US",
)
print(job.final_result)
asyncio.run(main())
Webhooks
from browsa import webhooks
# In your receiver (Flask/FastAPI/whatever):
ok = webhooks.verify_signature(
body=raw_request_body,
header=request.headers["X-Agents-Signature"],
secret=os.environ["BROWSA_WEBHOOK_SECRET"], # hex-encoded
)
if not ok:
return 401
# Trust the payload only after this point.
What you get
| Capability | Notes |
|---|---|
| Sync + async clients | Client + AsyncClient, same surface |
Real Job envelope |
Typed dataclass + .raw escape hatch |
| Long-poll waits | wait_for_job(timeout=...) uses server-side ?wait=30 |
| Webhook signature verify | HMAC-SHA256, constant-time compare, skew check |
| Canonical error envelope | AuthError, InvalidIDError, RateLimitError, etc. |
X-Request-Id propagation |
Every error carries the server's request id |
| Zero deps | Single wheel, audit-friendly, no transitive surface |
Advanced
Long-running tasks with progress callback
def show(job):
print(f" step {job.step_count}/{job.progress_total} status={job.status}")
job = c.run_task(
task="Open-ended research: scrape arxiv for papers on test-time compute, return top 10 by citation.",
llm="claude-opus-4-7",
llm_api_key="sk-ant-...",
max_steps=80,
on_progress=show,
)
Interactive (input_required) tasks
If your task can pause for human input (captcha, decision point), watch for status input_required and respond:
job = c.create_task(task="...", llm="...", llm_api_key="...")
while not job.is_terminal:
job = c.get_job(job.id, wait=30)
if job.status == "input_required":
answer = input(f"Agent asks: {job.input_question}\n> ")
job = c.respond_to_job(job.id, answer)
JA3-spoofed sessions
Some sites fingerprint TLS handshake shape. Set a profile to spoof macOS Chrome:
job = c.run_task(
task="Go to a TLS-fingerprint-fingerprinted site",
llm="claude-opus-4-7", llm_api_key="sk-...",
ja3_profile="macos_chrome_137", # uses utls
)
Docs
- API reference: https://browsa.io/docs
- Source: https://github.com/mohasaaid/neout/tree/main/sdks/browsa-python
- Issues: https://github.com/mohasaaid/neout/issues
License
MIT.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file browsa-0.1.1.tar.gz.
File metadata
- Download URL: browsa-0.1.1.tar.gz
- Upload date:
- Size: 20.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37de961db9d1e6a8fcb488bc7382e5c7eb283c232e70312b7d1ac9e35d0f916d
|
|
| MD5 |
7b498cff58a03a8dd9bd629312c3fefb
|
|
| BLAKE2b-256 |
411f2600e8f44178d1e181e361f4db55686c316c4c1d9c022d29f3477aa2c720
|
File details
Details for the file browsa-0.1.1-py3-none-any.whl.
File metadata
- Download URL: browsa-0.1.1-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3abfc423040a0e1fa0a24c66026ed398df13e979db1b87fc03af3c13768f9be
|
|
| MD5 |
ed0ffbe136c3df0b84d741f83c220181
|
|
| BLAKE2b-256 |
0add97bf7f5911d68aa542ad4703ce855a025afadc4f103f4eac6d9d9a6326fc
|