-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmogRunGlyph.py
31 lines (25 loc) · 888 Bytes
/
mogRunGlyph.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from glyph import mint
with open("seeds.txt", "r") as f:
seeds = [line.strip() for line in f]
base_path = "../Mogwai_Wallet/Mog/"
for idx,seed in enumerate(seeds):
#out_path = f'{base_path}output_{idx}.png'
"""
# utilisé les 5 premier caractère du seed pour le nom de l'image
# pour faire de test je vais increment la valeur de idx
# basé sur le seed en fin d'avoir de fichier avec des nom unique et qui se suivent logiquement
"""
out_path_2 = f'{base_path}output_{seed[:6]}.png'
# print(f"Generating {out_path}")
print(f"Generating {out_path_2}")
mint(seed=seed, out_path=out_path_2)
print("Done")
#
# with open("seeds.txt", "w+b") as f :
# seeds = [int(line[:-1]) for line in f]
#
# out_path = r"C:\Users\y_mc\PycharmProjects\Mogwai_Wallet\Mog"
# for seed in seeds :
# mint(seed=seed, out_path=out_path)
#
#