File tree Expand file tree Collapse file tree 1 file changed +24
-13
lines changed Expand file tree Collapse file tree 1 file changed +24
-13
lines changed Original file line number Diff line number Diff line change @@ -9,26 +9,37 @@ The BrowserUse Python library provides convenient access to the BrowserUse APIs
9
9
10
10
## Three-Step QuickStart
11
11
12
- 1 . 📦 Install the library with ` pip install browser-use-sdk `
12
+ 1 . 📦 Install Browser Use SDK
13
13
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
15
17
16
- 1 . ✌️ Automate the web!
18
+ # Poetry
19
+ poetry add browser-use-sdk
17
20
18
- ``` python
19
- from browser_use_sdk import BrowserUseClient
21
+ # UV
22
+ uv add browser-use-sdk
23
+ ```
20
24
21
- client = BrowserUseClient( api_key = " bu_... " )
25
+ 1 . 🔑 Get your API Key at [ Browser Use Cloud ] ( https://cloud.browser-use.com ) !
22
26
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!
27
28
28
- result = task.complete()
29
+ ``` python
30
+ from browser_use_sdk import BrowserUseClient
29
31
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
+ ```
32
43
33
44
> The full API of this library can be found in [ api.md] ( api.md ) .
34
45
You can’t perform that action at this time.
0 commit comments