使用本地 Firecrawl 服务抓取网站数据。
http://192.168.1.2:3002/curl -X POST "http://192.168.1.2:3002/v1/scrape" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "formats": ["markdown"]}'
curl -X POST "http://192.168.1.2:3002/v1/map" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'
python3 scripts/firecrawl_search.py "关键词" --site https://example.com
scripts/firecrawl_scrape.py - 网页抓取(无需外部依赖)scripts/firecrawl_map.py - 网站地图scripts/firecrawl_search.py - 内容搜索✅ 无需安装任何依赖 - 使用 Python 标准库 urllib.request
http://192.168.1.2:3002/共 1 个版本