Skip to content

Commit cbbabdc

Browse files
authored
Merge pull request #39 from browserbase/local_support
Local support
2 parents 223d161 + a8c9415 commit cbbabdc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+7017
-2154
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
</p>
1616

1717
<p align="center">
18-
<a href="https://pypi.org/project/stagehand-py">
18+
<a href="https://pypi.org/project/stagehand">
1919
<picture>
20-
<source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/pypi/v/stagehand-py.svg?style=for-the-badge" />
21-
<img alt="PyPI version" src="https://img.shields.io/pypi/v/stagehand-py.svg?style=for-the-badge" />
20+
<source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/pypi/v/stagehand.svg?style=for-the-badge" />
21+
<img alt="PyPI version" src="https://img.shields.io/pypi/v/stagehand.svg?style=for-the-badge" />
2222
</picture>
2323
</a>
2424
<a href="https://github.com/browserbase/stagehand/tree/main?tab=MIT-1-ov-file#MIT-1-ov-file">
@@ -65,7 +65,7 @@ await stagehand.agent.execute("book a reservation for 2 people for a trip to the
6565
Install the Python package via pip:
6666

6767
```bash
68-
pip install stagehand-py
68+
pip install stagehand
6969
```
7070
## Requirements
7171

@@ -135,7 +135,7 @@ def main():
135135
)
136136

137137
# Initialize Stagehand
138-
stagehand = Stagehand(config=config, server_url=os.getenv("STAGEHAND_API_URL"))
138+
stagehand = Stagehand(config=config, api_url=os.getenv("STAGEHAND_API_URL"))
139139
stagehand.init()
140140
print(f"Session created: {stagehand.session_id}")
141141

@@ -185,7 +185,7 @@ async def main():
185185
)
186186

187187
# Initialize Stagehand
188-
stagehand = Stagehand(config=config, server_url=os.getenv("STAGEHAND_API_URL"))
188+
stagehand = Stagehand(config=config, api_url=os.getenv("STAGEHAND_API_URL"))
189189
await stagehand.init()
190190
print(f"Session created: {stagehand.session_id}")
191191

@@ -239,7 +239,7 @@ def main():
239239
)
240240

241241
# Initialize Stagehand
242-
stagehand = Stagehand(config=config, server_url=os.getenv("STAGEHAND_API_URL"))
242+
stagehand = Stagehand(config=config, api_url=os.getenv("STAGEHAND_API_URL"))
243243
stagehand.init()
244244
print(f"Session created: {stagehand.session_id}")
245245

@@ -450,6 +450,7 @@ config = StagehandConfig(
450450
)
451451
```
452452

453+
453454
## License
454455

455456
MIT License (c) 2025 Browserbase, Inc.

evals/act/google_jobs.py

Lines changed: 0 additions & 169 deletions
This file was deleted.

0 commit comments

Comments
 (0)