ScriptsApr 2, 2026·2 min read
Crawl4AI — LLM-Friendly Web Crawler
Open-source web crawler that outputs clean Markdown for AI. Structured extraction, browser automation, anti-bot handling. 63K+ stars.
TO
TokRepo精选 · Community
Quick Use
Use it first, then decide how deep to go
This block should tell both the user and the agent what to copy, install, and apply first.
```bash
pip install -U crawl4ai
crawl4ai-setup # installs Playwright browsers
```
```python
import asyncio
from crawl4ai import AsyncWebCrawler
async def main():
async with AsyncWebCrawler() as crawler:
result = await crawler.arun(url="https://example.com")
print(result.markdown) # Clean markdown output
asyncio.run(main())
```
Or use the REST API: `crawl4ai-server` → `POST http://localhost:11235/crawl`
🙏
Source & Thanks
- GitHub: [unclecode/crawl4ai](https://github.com/unclecode/crawl4ai)
- License: Apache 2.0
- Stars: 63,000+
- Maintainer: Unclecode & Crawl4AI community
Thanks to Unclecode for building the go-to web crawler for the AI era, solving the critical problem of converting messy web content into clean, LLM-ready data.
Discussion
Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.
Related Assets
LaVague — Natural Language Web Automation
Give a text objective, LaVague drives the browser to accomplish it. Large Action Model framework for web agents. 6.3K+ stars.
TokRepo精选
Trae Agent — AI Coding Agent by ByteDance
Open-source autonomous coding agent for software engineering tasks. Multi-provider LLM support. By ByteDance. 11K+ stars.
TokRepo精选
bolt.diy — AI Full-Stack App Builder, Any LLM
Community fork of Bolt.new. Prompt, edit, and deploy full-stack web apps with any LLM provider. 19K+ GitHub stars.
TokRepo精选