Metadata-Version: 2.1
Name: OsuPyParser
Version: 0.2.2
Summary: A powerful package for parsing .osu extention file
Home-page: https://github.com/lenforiee/osupyparser
Author: Lenforiee
Author-email: lenforiee@misumi.me
License: UNKNOWN
Description: [![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()
        
        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.
        
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
