-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbootstrap.py
42 lines (36 loc) · 1.23 KB
/
bootstrap.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
31
32
33
34
35
36
37
38
39
40
41
42
import os
from slugify import slugify
import shutil
import json
os.mkdir('dst')
# folder path
dir_path = r'GBAX2003'
# list to store files
res = []
# Iterate directory
for path in os.listdir(dir_path):
# check if current path is a file
if os.path.isfile(os.path.join(dir_path, path)):
if ".gba" in path.lower():
slug = slugify(path[:-3])
folder = f'dst/{slug}'
os.mkdir(f'dst/{slug}')
shutil.copyfile(f"{dir_path}/{path}", f"{folder}/{slug}.gba")
game_manifest = {
"slug": slug,
"screenshots": [f"{slug}-0.png", f"{slug}-1.png", f"{slug}-2.png"],
"tags": ["event:gbax2003"],
"files": [{
"default": True,
"filename": f"{slug}.gba",
"playable": True
}],
"title": path[:-4],
"platform": "GBA",
"typetag": "game",
"developer": ""
}
with open(f'{folder}/game.json', 'w') as fp:
json.dump(game_manifest, fp, indent=3)
res.append(path)
print(res)