That means, mods can be given either through their (legacy) bitflags, a string for acronyms, a "GameMod" dict, or a sequence whose items are either a "GameMod" dict, a single acronym string, or bitflags for a single mod.
A "GameMod" dictmust have the item 'acronym': str and an optional item 'settings': GameModSettings.
This should make it easy to pass along mods as they're given by the osu!api by simple using json.loads(...) to convert the JSON into a python object.
Bump
rosu-pp
tov1.1.0
which utilizesrosu-mods
to pass mods as arguments.Instead of the binding only allowing the
int
type for mods, now the type must coincide with the alias definitionsThat means, mods can be given either through their (legacy) bitflags, a string for acronyms, a "GameMod"
dict
, or a sequence whose items are either a "GameMod"dict
, a single acronym string, or bitflags for a single mod.A "GameMod"
dict
must have the item'acronym': str
and an optional item'settings': GameModSettings
.This should make it easy to pass along mods as they're given by the osu!api by simple using
json.loads(...)
to convert the JSON into a python object.