21 lines
323 B
Python
21 lines
323 B
Python
import os
|
|
from utils.CollectionManager import OsuDatabase
|
|
|
|
OSUPATH = "path/to/osu!"
|
|
|
|
db = OsuDatabase(OSUPATH+"osu!.db")
|
|
|
|
|
|
print(db.version)
|
|
print(db.folder_count)
|
|
print(db.account_unlocked)
|
|
print(db.player_name)
|
|
print(db.number_of_beatmaps)
|
|
|
|
for beatmap in db.beatmaps:
|
|
print(beatmap)
|
|
print(beatmap.beatmap_id)
|
|
|
|
|
|
|