Metadata-Version: 2.1
Name: bloonspy
Version: 0.1
Summary: A Python wrapper for the Ninja Kiwi Open Data API
Home-page: https://github.com/SartoRiccardo/bloonspy
Author: TheSartorsss
License: UNKNOWN
Platform: UNKNOWN
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

BloonsPy is a Python wrapper for the [Ninja Kiwi Open Data API](https://data.ninjakiwi.com/).

## 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:
    minutes, seconds = int(player.score.seconds/60), int(player.score.seconds%60) 
    print(f"{player.name} - {minutes}:{seconds}")
```

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

