Skip to main content

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:

ClientImportBest for
Browser7from browser7 import Browser7Scripts, data pipelines, Jupyter notebooks
AsyncBrowser7from browser7 import AsyncBrowser7FastAPI, 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.

Next Steps