Skip to main content

Vibium

Browser automation for AI agents and humans.

Installation

pip install vibium

Chrome downloads automatically on first use. To install Chrome ahead of time:

vibium install

Quick Start

from vibium import browser

bro = browser.start()
vibe = bro.page()
vibe.go("https://example.com")

# Take a screenshot
png = vibe.screenshot()
with open("screenshot.png", "wb") as f:
    f.write(png)

# Find and click a link
link = vibe.find("a")
print(link.text())
link.click()

bro.stop()

Async API

import asyncio
from vibium.async_api import browser

async def main():
    bro = await browser.start()
    vibe = await bro.page()
    await vibe.go("https://example.com")

    link = await vibe.find("a")
    await link.click()

    await bro.stop()

asyncio.run(main())

CLI

vibium install   # Download Chrome for Testing
vibium version   # Show version

Requirements

  • Python 3.9+

Links

License

Apache-2.0

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

vibium-26.8.21-py3-none-any.whl (54.5 kB view details)

Uploaded Python 3

File details

Details for the file vibium-26.8.21-py3-none-any.whl.

File metadata

  • Download URL: vibium-26.8.21-py3-none-any.whl
  • Upload date:
  • Size: 54.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for vibium-26.8.21-py3-none-any.whl
Algorithm Hash digest
SHA256 35de204d28901068d06721d1521767f3d2bf07b340d079ae1d00e37cb1f114a0
MD5 1bb1c2794d3218f026a562c07d4a8f7c
BLAKE2b-256 1052686d83d40ffe5ceaaae094c6fafd449324c1026445079b43ad215ce534d3

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

26.8.21 This release

1 file

26.5.31

1 file

26.3.18

1 file

26.3.17

1 file

26.3.11

1 file

26.3.9

1 file

26.2.28

1 file

0.1.8

1 file

0.1.7

1 file

0.1.6

1 file

0.1.5

1 file

0.1.4

1 file

0.1.3

1 file

0.1.0

1 file

0.0.1

2 files

Supported by

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