🚀 Pydoll: Async Web Automation in Python!
https://github.com/autoscrape-labs/pydoll
🔥 Installation
pip install pydoll-python⚡ Quick Start
Get started with just a few lines of code:
import asyncio
from pydoll.browser.chrome import Chrome
from pydoll.constants import By
async def main():
async with Chrome() as browser:
await browser.start()
page = await browser.get_page()
# Works with captcha-protected sites
await page.go_to('https://example-with-cloudflare.com')
button = await page.find_element(By.CSS_SELECTOR, 'button')
await button.click()
asyncio.run(main())