Metadata-Version: 2.1
Name: bloonspy
Version: 0.6.0
Summary: A Python wrapper for the Ninja Kiwi Open Data API
Home-page: https://github.com/SartoRiccardo/bloonspy
Author: TheSartorsss
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# BloonsPy

[![Documentation Status](https://readthedocs.org/projects/bloonspy/badge/?version=latest)](https://bloonspy.readthedocs.io/en/latest/?badge=latest)
[![PyPI](https://img.shields.io/pypi/v/bloonspy)](https://pypi.org/project/bloonspy/)

BloonsPy is a Python wrapper for the [Ninja Kiwi Open Data API](https://data.ninjakiwi.com/),
that makes you write more readable code and handles rate limiting automatically.
It also renames cryptic variable names so you can know what you're doing while coding.

## Installing

**Python 3.10 or higher is required**

```bash
python3 -m pip install bloonspy
```

## Quick example

```python
from bloonspy import Client

boss_event = Client.bosses()[0].standard()
boss_standard_top_3 = boss_event.leaderboard()[:3]
for player in boss_standard_top_3: 
    print(f"{player.name} - {player.score}")
```

## Resources
+ [Documentation](https://bloonspy.readthedocs.io/en/latest/)
+ [Github](https://github.com/SartoRiccardo/bloonspy)
