diff --git a/misc/generate_version_name.py b/misc/generate_version_name.py new file mode 100644 index 00000000..1c29b6cb --- /dev/null +++ b/misc/generate_version_name.py @@ -0,0 +1,9 @@ +import random + +from legendary.core import LegendaryCore + +core = LegendaryCore() +core.login() + +print(" ".join(map(lambda game: game.app_name, + random.choices(list(filter(lambda x: len(x.app_name) != 32, core.get_game_list(False))), k=2))))