Metadata-Version: 2.1
Name: OsuPyParser
Version: 1.0.3
Summary: A powerful package for parsing .osu and .osr extention files
Home-page: https://github.com/lenforiee/osupyparser
Author: lenforiee
Author-email: lenforiee@misumi.me
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

[![PyPI version](https://badge.fury.io/py/OsuPyParser.svg)](https://badge.fury.io/py/OsuPyParser.svg)
# OsuPyParser 
A powerful package for parsing .osu extention file

## What's this?
OsuPyParser is simply parser for .osu files i made for my usage due i consistantly need it in my private repositories,
It can parse literally all major data from .osu file, even timing points.

## Example
Good packages need a good explanation how to use them so there it is!

```py
from osupyparser import OsuFile

osuMap = OsuFile("./test.osu")

mapInfo = osuMap.parse_file()

print(f"{mapInfo.bpm}bpm {mapInfo.artist}")
```

## Contribution
If you feel like you want to help/fix/change something in this package,
just create Issue or Pull Request on GitHub and I'll review it.


