osu-beatmap-parser

Easily parse .osu files into usable objects


Keywords
osu, osu!, parser, beatmap
License
MIT
Install
pip install osu-beatmap-parser==0.1

Documentation

osu-beatmap-parser

Python library to read and parse osu files.

Usage

Usage:
Where song_path is an absolute path to the .osu file

>>> from osureader.reader import BeatmapParser
>>> from osureader.beatmap import Beatmap

>>> parser = BeatmapParser()
>>> res = parser.parser(song_path)
>>> beatmap = Beatmap(res)

Installation options