Skip to content

Commit 1fe9e97

Browse files
committed
Refine QuickStart ✨
1 parent a7b65cf commit 1fe9e97

File tree

1 file changed

+24
-13
lines changed

1 file changed

+24
-13
lines changed

README.md

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,37 @@ The BrowserUse Python library provides convenient access to the BrowserUse APIs
99

1010
## Three-Step QuickStart
1111

12-
1. 📦 Install the library with `pip install browser-use-sdk`
12+
1. 📦 Install Browser Use SDK
1313

14-
1. ☝️ Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)...
14+
```sh
15+
# PIP
16+
pip install browser-use-sdk
1517

16-
1. ✌️ Automate the web!
18+
# Poetry
19+
poetry add browser-use-sdk
1720

18-
```python
19-
from browser_use_sdk import BrowserUseClient
21+
# UV
22+
uv add browser-use-sdk
23+
```
2024

21-
client = BrowserUseClient(api_key="bu_...")
25+
1. 🔑 Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)!
2226

23-
task = client.tasks.create_task(
24-
task="Search for the top 10 Hacker News posts and return the title and url."
25-
llm="gpt-4.1",
26-
)
27+
1. 🦄 Automate the Internet!
2728

28-
result = task.complete()
29+
```python
30+
from browser_use_sdk import BrowserUseClient
2931

30-
result.output
31-
```
32+
client = BrowserUseClient(api_key="bu_...")
33+
34+
task = client.tasks.create_task(
35+
task="Search for the top 10 Hacker News posts and return the title and url."
36+
llm="gpt-4.1",
37+
)
38+
39+
result = task.complete()
40+
41+
result.output
42+
```
3243

3344
> The full API of this library can be found in [api.md](api.md).
3445

0 commit comments

Comments
 (0)