Scripts2026年4月2日·1 分钟阅读
Pydoll — Browser Automation Without WebDriver
Python async browser automation via Chrome DevTools Protocol. Built-in CAPTCHA solving, anti-detection, no Selenium needed. 6.7K+ stars.
TO
TokRepo精选 · Community
快速使用
先拿来用,再决定要不要深挖
这里应该同时让用户和 Agent 知道第一步该复制什么、安装什么、落到哪里。
```bash
pip install pydoll
```
```python
import asyncio
from pydoll.browser import Chrome
from pydoll.constants import By
async def main():
async with Chrome() as browser:
page = await browser.start()
await page.go_to("https://example.com")
content = await page.get_content()
print(content)
asyncio.run(main())
```
---
🙏
来源与感谢
> Created by [autoscrape-labs](https://github.com/autoscrape-labs). Licensed under MIT.
>
> [pydoll](https://github.com/autoscrape-labs/pydoll) — ⭐ 6,700+
讨论
登录后参与讨论。
还没有评论,来写第一条吧。
相关资产
PocketBase — Backend in One File for AI Apps
Open-source backend with database, auth, file storage, and admin UI in a single executable. Perfect for AI app backends. 57K+ stars.
TokRepo精选
LLM — CLI Swiss Army Knife for Language Models
Run prompts from the terminal, log everything to SQLite, manage 50+ providers via plugins. By Django co-creator. 11K+ stars.
TokRepo精选
Zed — High-Performance AI Code Editor
GPU-accelerated editor built in Rust with multiplayer editing and built-in AI assistant. By the creators of Atom. 78K+ stars.
TokRepo精选