🐍 Python SDK • pip install flycrawl

Python Web Scraping & Markdown Extraction API

A lightweight, zero-dependency Python client for high-throughput web scraping, recursive sitemap traversal, and Fit-Markdown extraction. Drop-in compatible with existing Firecrawl scripts.

Quickstart
# 1. Install via pip
pip install flycrawl

# 2. Scrape to Markdown in Python
from flycrawl import FlyCrawl

app = FlyCrawl(api_key="fly_live_YOUR_KEY")
res = app.scrape_url("https://news.ycombinator.com")
print(res["markdown"])