1
0
Fork 0
mirror of synced 2024-05-03 12:12:56 +12:00
Rare/misc/generate_version_name.py
2021-12-12 00:04:40 +01:00

10 lines
257 B
Python

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))))