Metadata-Version: 2.4
Name: rcrawl-cli
Version: 1.0.2
Summary: Command-line interface for RCrawl API
Home-page: https://github.com/your-org/rcrawl-cli
Author: rsu2000
Author-email: rsu2000 <rsu2000@gmail.com>
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0.0
Requires-Dist: httpx>=0.28.0
Requires-Dist: pydantic>=2.10.0
Requires-Dist: pydantic-settings>=2.6.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: tqdm>=4.66.0
Requires-Dist: beautifulsoup4>=4.12.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.24.0; extra == "dev"
Requires-Dist: black>=24.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Provides-Extra: completion
Requires-Dist: click-completion>=0.5.0; extra == "completion"
Provides-Extra: excel
Requires-Dist: pandas>=2.0.0; extra == "excel"
Requires-Dist: openpyxl>=3.1.0; extra == "excel"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# RCrawl CLI

Command-line interface for RCrawl API.

## Installation

```bash
# Via pip
pip install rcrawl-cli

# Via pipx (recommended)
pipx install rcrawl-cli

# From source
git clone https://github.com/your-org/rcrawl-cli.git
cd rcrawl-cli
pip install -e .
```

## Quick Start

```bash
# Configure
rcrawl config init

# Login
rcrawl auth login

# Scrape a page
rcrawl scrape https://example.com

# Get help
rcrawl --help
```

## Documentation

- [User Guide](USER_GUIDE.md) - Installation and usage instructions
- [Developer Guide](DEVELOPER_GUIDE.md) - Development and contribution guide
