Skip to main content

Official Python SDK for WebUplink — the whole web, as function calls.

Project description

WebUplink

The whole web, as function calls.

PyPI version CI License: MIT

Official Python SDK for WebUplink.

Installation

pip install webuplink

Quickstart

from webuplink import WebUplink

client = WebUplink()  # reads WEBUPLINK_API_KEY from env

# Browse a page — get back structured, callable tools
page = client.browse("https://example.com")
print(page.summary)
print(page.tools)  # [Tool(name='...', description='...', params=[...]), ...]

# Execute a tool discovered on the page
tool = page.tools[0]
result = client.browse(
    session_id=page.session_id,
    tool=tool.name,
    params={tool.params[0].name: "some value"},
)

# Clean up
client.close_session(page.session_id)

Async

from webuplink import AsyncWebUplink

async with AsyncWebUplink() as client:
    page = await client.browse("https://example.com")
    print(page.tools)

What you can build

  • AI agents that act on the web — browse any site, get back typed tool definitions, execute actions
  • No selectors, no scraping — WebUplink understands pages and generates callable tools automatically
  • Multi-step workflows — sessions persist across navigations, so your agent can search → filter → select → checkout
  • Any website, zero configuration — works on sites you've never seen before

Documentation

Full reference at webuplink.ai/docs.

Contributing

git clone https://github.com/webuplink-dev/webuplink-python.git
cd webuplink-python
pip install -e ".[dev]"
pytest

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

webuplink-0.1.0.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

webuplink-0.1.0-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page