Metadata-Version: 2.1
Name: billboard
Version: 0.4.0
Summary: Python scraper for Billboard Hot 100
License: MIT
Author: TonyGrif
Author-email: TonyGriffin2000@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
Requires-Dist: fake-useragent (>=1.5.1,<2.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Description-Content-Type: text/markdown

# Billboard
Python scraper for [Billboard Charts](https://www.billboard.com/)

## Installation
Billboard is available through [PyPi](https://pypi.org/) through
`pip install billboard`.

Billboard officially supports [Python 3.9+](https://www.python.org/).

## Quick Start
```python
from billboard import BillboardChart

hot = BillboardChart("YYYY-MM-DD")
```

Other charts can be gathered in a similar way; check the 
[API docs](https://tonygrif.github.io/billboard/billboard.html) for more details.

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

## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) for details

