Metadata-Version: 2.1
Name: maniera
Version: 1.0.2
Summary: An osu! Mania PP and star rating calculator.
Home-page: https://github.com/NiceAesth/maniera
Author: Nice Aesthetics
Author-email: nice@aesth.dev
License: GPLv3+
Keywords: osu! osu
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# 🎹 Maniera
## osu! Mania PP calculator written in Python.
Written with ❤️ by [Nice Aesthetics](https://aesth.dev). Based on [ompp-web](https://github.com/toxicpie/ompp-web)

Installation:
------
```sh
pip install maniera
```
Maniera is supposed to work on Python 3+ versions

Example Usage:
------
```py
from maniera.calculator import Maniera

# 64 = DT (https://github.com/ppy/osu-api/wiki#mods)
# Maniera(path, modnum, score)
calc = Maniera('beatmap.osu', 64, 800000)
calc.calculate()

print(f"{round(calc.pp, 2)} PP - {round(calc.sr, 2)} Stars")
```
Output:
```sh
564.36 PP - 8.16 Stars
```

