Python SDK for Stagehand
Project description
Stagehand Python SDK
A Python SDK for BrowserBase Stagehand, enabling automated browser control and data extraction.
Installation
pip install stagehand-py
Quickstart
Before running your script, make sure you have exported the necessary environment variables:
export BROWSERBASE_API_KEY="your-api-key"
export BROWSERBASE_PROJECT_ID="your-project-id"
export OPENAI_API_KEY="your-openai-api-key"
export SERVER_URL="url-of-stagehand-server"
Usage
Here is a minimal example to get started:
import asyncio
import os
from stagehand import Stagehand
from dotenv import load_dotenv
load_dotenv()
async def log_handler(log_data: dict):
"""
Example async log handler. Prints real-time logs from the server.
"""
if "message" in log_data:
print(f"🤖 {log_data['message']}")
else:
print(f"🤖 LOG: {log_data}")
async def main():
# Create a Stagehand client - it will create a new session automatically
stagehand = Stagehand(
server_url=os.getenv("SERVER_URL"),
browserbase_api_key=os.getenv("BROWSERBASE_API_KEY"),
browserbase_project_id=os.getenv("BROWSERBASE_PROJECT_ID"),
openai_api_key=os.getenv("OPENAI_API_KEY"),
on_log=log_handler, # attach the log handler to receive streaming logs
verbose=2,
model_name="gpt-4o", # optional - defaults to server's default
dom_settle_timeout_ms=3000, # optional - defaults to server's default
debug_dom=True, # optional - defaults to server's default
)
# Initialize - this will create a new session
await stagehand.init()
print(f"Created new session: {stagehand.session_id}")
# Example: navigate to google.com
await stagehand.navigate("https://www.google.com")
print("Navigation complete.")
# Example: ACT to do something like 'search for openai'
result = await stagehand.act("search for openai")
print("Action result:", result)
# Close the session (if needed)
# await stagehand.close()
if __name__ == "__main__":
asyncio.run(main())
Configuration
server_url: The Stagehand server URL (default: http://localhost:3000)browserbase_api_key: Your BrowserBase API key (can also be set via BROWSERBASE_API_KEY environment variable)browserbase_project_id: Your BrowserBase project ID (can also be set via BROWSERBASE_PROJECT_ID environment variable)openai_api_key: Your OpenAI API key (can also be set via OPENAI_API_KEY environment variable)verbose: Verbosity level (default: 1)model_name: (optional) Model name to use for the conversationdom_settle_timeout_ms: (optional) Additional time for the DOM to settledebug_dom: (optional) Whether or not to enable DOM debug mode
Features
- Automated browser control with natural language commands
- Data extraction with schema validation (either pydantic or JSON schema)
- Async/await support
Requirements
- Python 3.7+
- httpx
- asyncio
- pydantic
- python-dotenv (optional if using a .env file)
License
MIT License (c) Browserbase, Inc.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file stagehand_py-0.1.3.tar.gz.
File metadata
- Download URL: stagehand_py-0.1.3.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c87c78b157cd3fd3d326658f88ce35ef48a134f0c0c6e8420a018777d90a534
|
|
| MD5 |
4e7c9832c85e57fca54de3b71fd072b6
|
|
| BLAKE2b-256 |
8b570620e49a1f99cb664c7aa7bbbf2662e2ae8a822c12f3eb916e812ee2a747
|
File details
Details for the file stagehand_py-0.1.3-py3-none-any.whl.
File metadata
- Download URL: stagehand_py-0.1.3-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e58a6db6978cf8be5f44f7a683cf0e2fb751607aaf999e0a4a2f533f34dd0cf4
|
|
| MD5 |
07ff70bfd27b6585e0dee9793d87e8e3
|
|
| BLAKE2b-256 |
2d988308223f75bc1ab4e9af7203b2e333f84e048c3837ed95786dc48f51aa43
|