Skip to content

Commit c994ab2

Browse files
committed
fix: Improve Quick Start Section
1 parent 4ec0160 commit c994ab2

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,22 @@
66
pip install browser-use-sdk
77
```
88

9-
## Quick Start
9+
## Two-Step QuickStart
1010

11-
> Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)!
11+
1. ☝️ Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)...
12+
13+
1. ✌️ Automate the web!
1214

1315
```python
1416
from browser_use_sdk import BrowserUse
1517

16-
client = BrowserUse()
18+
client = BrowserUse(api_key="bu_...")
1719

18-
run = client.tasks.run(
20+
result = client.tasks.run(
1921
task="Search for the top 10 Hacker News posts and return the title and url."
2022
)
2123

22-
run.done_output
24+
result.done_output
2325
```
2426

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

0 commit comments

Comments
 (0)