Python client SDK for Narada
Project description
Computer Use for Agentic Process Automation!
The official Narada Python SDK that helps you launch browsers and run tasks with Narada UI agents.
Installation
pip install narada
Quick Start
Important: The first time Narada opens the automated browser, you will need to manually install the Narada Enterprise extension and log in to your Narada account.
After installation and login, create a Narada API Key (see this link for instructions) and set the following environment variable:
export NARADA_API_KEY=<YOUR KEY>
That's it. Now you can run the following code to spin up Narada to go and download a file for you from arxiv:
import asyncio
from narada import Narada
async def main() -> None:
# Initialize the Narada client.
async with Narada() as narada:
# Open a new browser window and initialize the Narada UI agent.
window = await narada.open_and_initialize_browser_window()
# Run a task in this browser window.
response = await window.agent(
prompt='Search for "LLM Compiler" on Google and open the first arXiv paper on the results page, then open the PDF. Then download the PDF of the paper.',
# Optionally generate a GIF of the agent's actions.
generate_gif=True,
)
print("Response:", response.model_dump_json(indent=2))
if __name__ == "__main__":
asyncio.run(main())
This would then result in the following trajectory:
You can use the SDK to launch browsers and run automated tasks using natural language instructions. For more examples and code samples, please explore the examples/ folder in this repository.
Features
- Natural Language Control: Send instructions in plain English to control browser actions
- Parallel Execution: Run multiple browser tasks simultaneously across different windows
- Error Handling: Built-in timeout handling and retry mechanisms
- Action Recording: Generate GIFs of agent actions for debugging and documentation
- Async Support: Full async/await support for efficient operations
Key Capabilities
- Web Search & Navigation: Automatically search, click links, and navigate websites
- Data Extraction: Extract information from web pages using AI understanding
- Form Interaction: Fill out forms and interact with web elements
- File Operations: Download files and handle web-based documents
- Multi-window Management: Coordinate tasks across multiple browser instances
License
This project is licensed under the Apache 2.0 License.
Support
For questions, issues, or support, please contact: support@narada.ai
Citation
We appreciate it if you could cite Narada if you found it useful for your project.
@software{narada_ai2025,
author = {Narada AI},
title = {Narada AI: Agentic Process Automation for Enterprise},
year = {2025},
publisher = {GitHub},
url = {https://github.com/NaradaAI/narada-python-sdk}
}
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 narada-0.1.20.tar.gz.
File metadata
- Download URL: narada-0.1.20.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
511280770add2a45f99090cab3ee6375d0db6f6531de22c529ce22095938ea3b
|
|
| MD5 |
5810feeeace12beb4970a268c4862f91
|
|
| BLAKE2b-256 |
eb56382dfbe39e46c9e20e1c146c506aeaf107a047102e4f7e07f682096fb997
|
File details
Details for the file narada-0.1.20-py3-none-any.whl.
File metadata
- Download URL: narada-0.1.20-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f299a9723b8d99cd5e6d6b9efb02274ec9d4175f9ce73f80942279aedb968178
|
|
| MD5 |
7814f97c816e3cef32858339c065af3c
|
|
| BLAKE2b-256 |
bde2b7e7f795d110fd070aeee5b32ff91dcfe5f937b8f982c0057c11cf25cc14
|