browser-use-sdk

Python SDK for the Browser Use cloud API

41 个版本 Python >=3.9
安装
pip install browser-use-sdk
poetry add browser-use-sdk
pipenv install browser-use-sdk
conda install browser-use-sdk
描述

browser-use-sdk

Official Python SDK for Browser Use Cloud.

Install

uv add browser-use-sdk

Quick Start

Get your API key at cloud.browser-use.com/settings.

export BROWSER_USE_API_KEY=your_key
from browser_use_sdk import AsyncBrowserUse

client = AsyncBrowserUse()
result = await client.run("Find the top 3 trending repos on GitHub today")
print(result.output)

v3 Bring Your Own LLM Key

Add your provider API key in Browser Use project settings, then enable BYOK for v3 agent runs:

from browser_use_sdk.v3 import BrowserUse

client = BrowserUse(use_own_key=True)
result = client.run("Find the top 3 trending repos on GitHub today")
print(result.output)

Docs

docs.browser-use.com

License

MIT

版本列表
3.8.4 2026-06-10
3.8.1 2026-06-04
3.8.0 2026-06-01
3.7.1 2026-05-18
3.7.0 2026-05-18
3.6.0 2026-05-14
3.5.0 2026-05-06
3.4.3 2026-04-10
3.4.2 2026-04-04
3.4.1 2026-04-03
3.4.0 2026-03-31
3.3.2 2026-03-30
3.3.1 2026-03-18
3.3.0 2026-03-07
3.2.0 2026-03-05
3.1.0 2026-02-26
3.0.3 2026-02-25
3.0.2 2026-02-25
2.0.15 2026-02-09
2.0.14 2026-01-30
2.0.13 2026-01-15
2.0.12 2025-12-07
2.0.11 2025-12-05
2.0.10 2025-12-04
2.0.9 2025-12-04
2.0.8 2025-12-04
2.0.7 2025-11-25
2.0.6 2025-11-25
2.0.5 2025-11-15
2.0.4 2025-09-08
2.0.3 2025-09-05
2.0.2 2025-09-02
2.0.1 2025-09-02
2.0.0 2025-09-02
1.0.2 2025-08-22
1.0.1 2025-08-21
1.0.0 2025-08-20
0.3.0 2025-08-20
0.2.0 2025-08-19
0.1.0 2025-08-18
0.0.2 2025-08-09