Introducing the Maxun Python SDK
Maxun Python SDK
We’re excited to announce that the Maxun Python SDK is here.
Maxun already offers a Node.js SDK for building web automation and data extraction workflows. Now, Python developers can access the same capabilities — programmatically creating, running, and managing robots directly from their applications.
Simple. Powerful. Native to Python.
Installation
pip install maxun
Create Your First Scraper
from maxun import Scrape, Config
scraper = Scrape(Config(api_key="your-api-key"))
robot = await scraper.create( "Quotes Scraper", "https://quotes.toscrape.com/", formats=["markdown"], )
result = await robot.run() print(result["data"]["markdown"])
Capabilities
- Extract structured data from any website
- Scrape entire pages as Markdown or HTML
- Crawl multiple pages automatically to discover and scrape content
- Perform web searches and extract results as metadata or full content
- Use AI to extract data with natural language prompts
- Capture screenshots (visible area or full page)
- Automate workflows with clicks, form fills, and navigation
- Schedule recurring jobs to keep your data fresh
- Get webhooks when extractions complete
- Handle pagination automatically (scroll, click, load more)
Explore the Python SDK
Documentation: https://docs.maxun.dev/sdk/python-sdk/sdk-scrape
Get Started
Turn any website into a live API in minutes.