Python Installation
Install the Browser7 Python SDK.
Requirements
- Python 3.8 or higher
httpx(installed automatically as a dependency)
Installation
pip install browser7
Sync and Async Support
The SDK ships two clients:
| Client | Import | Best for |
|---|---|---|
Browser7 | from browser7 import Browser7 | Scripts, data pipelines, Jupyter notebooks |
AsyncBrowser7 | from browser7 import AsyncBrowser7 | FastAPI, Django async, any asyncio-based app |
Both expose identical methods. Choose based on your project - there is no functional difference in what they can do.