1
0
Fork 0
mirror of synced 2024-05-20 12:32:50 +12:00
Rare/misc/generate_version_name.py

10 lines
257 B
Python
Raw Normal View History

2021-12-12 12:04:40 +13:00
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))))