Metadata-Version: 2.4
Name: capitolscraper
Version: 0.0.1
Summary: Web scraper for capitoltrades.com
Requires-Python: >=3.9
Requires-Dist: beautifulsoup4>=4.12.3
Requires-Dist: httpx>=0.28.1
Description-Content-Type: text/markdown

# CapitolScraper
A web scraper for [capitoltrades](https://www.capitoltrades.com/), a website dedicated to tracking
Congress stock trades.

## Requirements
* [uv](https://github.com/astral-sh/uv)

## Installation
All main dependencies can be installed through `uv sync --no-group dev`.
For developer and testing dependencies, use `uv sync --all-groups`.

## Quickstart
```python
from scraper import Trades

scraper = Trades()
print(scraper.trades)
```

## Authors
* [TonyGrif](https://github.com/TonyGrif) - Creator and Maintainer
