We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec0160 commit c994ab2Copy full SHA for c994ab2
README.md
@@ -6,20 +6,22 @@
6
pip install browser-use-sdk
7
```
8
9
-## Quick Start
+## Two-Step QuickStart
10
11
-> Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)!
+1. ☝️ Get your API Key at [Browser Use Cloud](https://cloud.browser-use.com)...
12
+
13
+1. ✌️ Automate the web!
14
15
```python
16
from browser_use_sdk import BrowserUse
17
-client = BrowserUse()
18
+client = BrowserUse(api_key="bu_...")
19
-run = client.tasks.run(
20
+result = client.tasks.run(
21
task="Search for the top 10 Hacker News posts and return the title and url."
22
)
23
-run.done_output
24
+result.done_output
25
26
27
> The full API of this library can be found in [api.md](api.md).
0 commit comments