pydoll-python
Pydoll is a library for automating chromium-based browsers without a WebDriver, offering realistic interactions.
What it is and what it does
Pydoll is a Python library for automating Chromium browsers by connecting directly to the Chrome DevTools Protocol over WebSocket, eliminating the need for a WebDriver binary or the `navigator.webdriver` flag. It combines human-like interactions—Bezier-curve mouse movement, realistic typing, and scroll physics—with fingerprint injection that overrides User-Agent, Client Hints, navigator properties, WebGL, canvas, screen, fonts, timezone, and locale to present a consistent, non-bot identity. The library is built on asyncio and fully type-checked with mypy, offering clean async-native APIs for finding elements, clicking, typing, scrolling, intercepting network requests, and extracting structured data via Pydantic models.
The core use case is web scraping and automation that needs to bypass bot-detection systems like Cloudflare Turnstile or reCAPTCHA v3. It supports shadow DOM and cross-origin iframes, network request interception and monitoring, and authenticated HTTP requests that inherit the browser session. The maintainer notes the project is active but moving at a calmer pace as a single-person effort; Firefox support is planned once the project reaches 10k GitHub stars.
Use it for:
- Scrape sites protected by Cloudflare Turnstile or reCAPTCHA v3 by automating realistic user interactions and spoofing a consistent browser fingerprint.
- Monitor competitor pricing or content changes on bot-protected websites without triggering detection systems.
- Test web applications' anti-bot defenses and behavioral challenges in a controlled, headless environment.
- Intercept and analyze network traffic during automation to discover undocumented APIs or track third-party requests.
- Extract structured data from dynamic pages using Pydantic models for automatic validation and type safety.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Pydoll automates Chromium-based browsers via the Chrome DevTools Protocol without a WebDriver binary, using human-like interactions and fingerprint injection to evade bot detection.
Yes, if you need browser automation that evades bot detection and can tolerate a single-maintainer project with slower response times. The low install friction, active status, and zero known vulnerabilities make it safe to try. However, verify the license terms first (currently unclear in metadata), and confirm that fingerprint injection and human-like interactions actually work against your target sites—detection evasion success depends on your specific use case and the site's defenses.
Install
pydoll-python on PyPI
pip
pip install pydoll-pythonuv
uv add pydoll-pythonpoetry
poetry add pydoll-pythonInstalling pydoll-python
Before you install
Low install friction with five async-first runtime dependencies (aiofiles, aiohttp, pydantic, typing_extensions, websockets). Active maintenance with a release 1 day old. Single-maintainer project currently moving at a calmer pace, so response times may be longer than typical.
License in practice
License status is unclear—no SPDX identifier or raw license text is available in the package metadata. Verify the actual license terms before use in proprietary or commercial projects.
Quickstart
import asyncio
from pydoll.browser import Chrome
async def automate():
async with Chrome() as browser:
tab = await browser.start()
await tab.go_to('https://example.com')
element = await tab.find(tag_name='input')
await element.type_text('query', humanize=True)
asyncio.run(automate())
Requires Python 3.10 or later and a local Chromium installation; async/await syntax is mandatory.
Verify before relying
- Whether the package works with Chromium versions other than the latest, or if version-matching is required.
- Actual detection evasion success rates against current Cloudflare Turnstile and reCAPTCHA v3 implementations in real-world scenarios.
- Whether Firefox support is planned or confirmed for a future release.
- Performance and memory overhead compared to traditional WebDriver-based automation.
Package facts
| License | not declared (unclear) |
| Python support | supports the current Python release (<4.0,>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 5 — aiofiles, aiohttp, pydantic, typing_extensions, websockets |
| Maintenance | actively maintained — 1 days since the last release |
| First released | |
| Downloads | 76,358/month — #14,630 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: pydoll_python-2.24.0-py3-none-any.whl
Tags
More Dynamic Content packages
MarkupSafe provides a text object that escapes…
permissive · top 100 on PyPI
Jinja2Jinja2 is a templating engine that renders…
permissive · top 100 on PyPI
soupsieveSoupsieve is a CSS selector library designed to…
permissive · top 100 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI
MakoMako compiles Python-embedded templates into…
permissive · top 1,000 on PyPI
cloakbrowserLaunches a stealth Chromium browser that evades…
permissive · top 15,000 on PyPI
nodrivernodriver is an async browser automation library…
agpl · top 15,000 on PyPI
zendriverZendriver is an async-first web automation…
agpl · top 15,000 on PyPI
undetected-chromedriverPatches Selenium's Chrome WebDriver to avoid…
copyleft · top 5,000 on PyPI
mycdpMyCDP provides autogenerated Chrome DevTools…
permissive · top 15,000 on PyPI
pychromePychrome provides a Python interface to control…
permissive · top 15,000 on PyPI
selenium-stealthModifies a Selenium Chrome WebDriver to evade…
permissive · top 15,000 on PyPI
seleniumSelenium provides Python bindings to automate…
permissive · top 1,000 on PyPI
pyppeteerAutomates headless Chrome/Chromium browser…
permissive · top 5,000 on PyPI
choreographerChoreographer provides remote control of…
unclear · top 5,000 on PyPI