1
0
Fork 0
mirror of synced 2024-05-03 20:23:01 +12:00

Add generate_version_name.py

This commit is contained in:
Dummerle 2021-12-12 00:04:40 +01:00
parent 0d9fe54256
commit a7f3f3c325
No known key found for this signature in database
GPG key ID: AB68CC59CA39F2F1

View file

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