Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.0"
".": "1.0.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.0.1 (2025-08-21)

Full Changelog: [v1.0.0...v1.0.1](https://github.com/browser-use/browser-use-python/compare/v1.0.0...v1.0.1)

### Bug Fixes

* Improve Quick Start Section ([c994ab2](https://github.com/browser-use/browser-use-python/commit/c994ab27ce570d95961f84d8e54a48dd04bd3dfc))

## 1.0.0 (2025-08-20)

Full Changelog: [v0.3.0...v1.0.0](https://github.com/browser-use/browser-use-python/compare/v0.3.0...v1.0.0)
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,22 @@
pip install browser-use-sdk
```

## Quick Start
## Two-Step QuickStart

> 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)...

1. ✌️ Automate the web!

```python
from browser_use_sdk import BrowserUse

client = BrowserUse()
client = BrowserUse(api_key="bu_...")

run = client.tasks.run(
result = client.tasks.run(
task="Search for the top 10 Hacker News posts and return the title and url."
)

run.done_output
result.done_output
```

> The full API of this library can be found in [api.md](api.md).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "browser-use-sdk"
version = "1.0.0"
version = "1.0.1"
description = "The official Python library for the browser-use API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/browser_use_sdk/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "browser_use_sdk"
__version__ = "1.0.0" # x-release-please-version
__version__ = "1.0.1" # x-release-please-version