REST API Python Binding for Notte
The Notte Python SDK provides a comprehensive set of tools for interacting with the Notte API. This guide will walk you through the steps to install the SDK, configure your API key, and start using the SDK to manage your browser sessions, web agents, and page interactions.
Install the latest version of the SDK (requires `python >= 3.11`)
Configure your API key as an environment variable
You can request a free key directly from our console
Run your first agent
The SDK provides a comprehensive set of tools for interacting with the Notte API.
Learn more about browser sessions in the browser sessions guide.
you can also always list all your sessions using the sessions.list
method:
Learn more about page interactions in the page interactions guide.
The Notte SDK also allows you to observe a web page and its actions, scrape the page content, as well as execute actions in a running session:
BaseModel
from pydantic
)Learn more about vaults and secrets in the vaults and secrets guide.
The Notte SDK allows you to securely store and access your credentials in a secure vault.
Notte makes it super easy to scrape a webpage and extract structured data from it using pydantic
models.
At any time during the execution of a session or an agent, you can retrieve a replay of the execution so far as a WebP
image.
REST API Python Binding for Notte
The Notte Python SDK provides a comprehensive set of tools for interacting with the Notte API. This guide will walk you through the steps to install the SDK, configure your API key, and start using the SDK to manage your browser sessions, web agents, and page interactions.
Install the latest version of the SDK (requires `python >= 3.11`)
Configure your API key as an environment variable
You can request a free key directly from our console
Run your first agent
The SDK provides a comprehensive set of tools for interacting with the Notte API.
Learn more about browser sessions in the browser sessions guide.
you can also always list all your sessions using the sessions.list
method:
Learn more about page interactions in the page interactions guide.
The Notte SDK also allows you to observe a web page and its actions, scrape the page content, as well as execute actions in a running session:
BaseModel
from pydantic
)Learn more about vaults and secrets in the vaults and secrets guide.
The Notte SDK allows you to securely store and access your credentials in a secure vault.
Notte makes it super easy to scrape a webpage and extract structured data from it using pydantic
models.
At any time during the execution of a session or an agent, you can retrieve a replay of the execution so far as a WebP
image.