Metadata-Version: 2.4
Name: swimrankingsscraper
Version: 0.1.6
Summary: A scraper for swimrankings.net
Author-email: Bas Neeleman <bas@neeleman-mail.nl>
License: MIT
Project-URL: Homepage, https://swimrankingsscraper.readthedocs.io/
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4
Requires-Dist: lxml
Requires-Dist: requests
Provides-Extra: dev
Requires-Dist: pytest==8.0.0; extra == "dev"
Provides-Extra: docs
Requires-Dist: recommonmark; extra == "docs"
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx_rtd_theme; extra == "docs"
Dynamic: license-file

# SwimrankingsScraper
A library for getting information from swimrankings.net

### Installation
```
pip install swimrankingsscraper
```

### Development
```bash
uv sync --extra dev
uv run python -m unittest tests/test_swimrankingsscraper.py
```

### Get started


```Python
from swimrankingsscraper import SwimrankingsScraper

# Instantiate a scraper
scraper = SwimrankingsScraper()

# Get an athelete from the scraper
athelete = scraper.get_athlete('4292888')

# Get the meets the athelete participated in
meets = athelete.list_meets()
```
