Registry / devops / zendriver

zendriver

JSON →
library0.15.3pypypi✓ verified 80d ago

A blazing fast, async-first, undetectable web scraping and automation framework with stealth features to avoid bot detection. Current version 0.15.3, actively maintained with weekly releases.

pip install zendriver
INSTALL
IMPORT
SIG · ZENDRIVER
Z
zendriver
devopspythonv0.15.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Browser
from zendriver import Browser
from zendriver import Driver
Tab
from zendriver import Tab
start
from zendriver import start

Basic usage: launch a browser, navigate, wait for element, and print title.

import asyncio from zendriver import Driver async def main(): driver = Driver() await driver.start(headless=False) page = await driver.get('https://example.com') await page.wait_for('h1') title = await page.title() print(f'Page title: {title}') await driver.stop() asyncio.run(main())
Debug
Known issues
breakingIn version 0.14, the API changed from synchronous to fully async. Old synchronous code will not work.
fix
Wrap all calls in async functions and use await. Refer to migration guide: https://github.com/ultrafunkamsterdam/zendriver#migration-from-0.13
affects: >=0.14
gotchaDo not import from zendriver.cdp by default; it is an internal module and may change without notice. Use the high-level API.
fix
Always use public imports: from zendriver import Driver, WebElement, By.
affects: all
deprecatedThe 'browser_path' parameter in Driver.__init__ is deprecated starting 0.15. Use 'browser_executable_path' instead.
fix
Change from Driver(browser_path=...) to Driver(browser_executable_path=...).
affects: >=0.15
Upgrade
Version history
0.15.3latest on PyPI · released Mar 12, 2026
Audit
Dependencies
playwrightoptionalUsed by default for browser automation; alternative is cdp (Chrome DevTools Protocol) driver.
Agent activity
36 hits · last 30 days
node
30
Resources

No resource links recorded.

zendriver — pip install zendriver · libregistry