Metadata-Version: 2.4
Name: crw
Version: 0.2.1
Summary: Python SDK for CRW web scraper — scrape, crawl, and map any website from Python
Project-URL: Homepage, https://github.com/us/crw
Project-URL: Documentation, https://us.github.io/crw
Project-URL: Repository, https://github.com/us/crw
License-Expression: MIT
Keywords: ai-agent,crawler,firecrawl,mcp,scraper,web-scraping
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Requires-Dist: platformdirs>=3.0
Description-Content-Type: text/markdown

# crw

Python SDK for [CRW](https://github.com/us/crw) — the open-source web scraper built for AI agents.

## Install

```bash
pip install crw
```

## Usage

```python
from crw import CrwClient

# Zero-config (downloads crw-mcp binary automatically):
client = CrwClient()
result = client.scrape("https://example.com")
print(result["markdown"])

# Or connect to a remote server:
client = CrwClient(api_url="https://fastcrw.com/api", api_key="fc-...")
```

## MCP Server

After installing, you can also use `crw-mcp` as an MCP server:

```bash
crw-mcp  # starts stdio MCP server
```
