Skip to content

Commit 6b01bf4

Browse files
authored
Update update_size.py
1 parent 6840dc7 commit 6b01bf4

File tree

1 file changed

+7
-21
lines changed

1 file changed

+7
-21
lines changed

.github/update_size.py

+7-21
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import jstyleson
21
import json
32
import glob
43
import os
@@ -10,36 +9,23 @@
109
for filename in glob.glob(os.path.join('.', '*.json')):
1110
if filename not in ignore:
1211
print(f"Opening: {filename}")
13-
14-
with open(filename, "r") as file:
15-
filecontent = file.read()
16-
17-
try:
18-
modlist = jstyleson.loads(filecontent)
19-
except Exception as err:
20-
print(f"❌ Error reading JSON file {filename}: {err}")
21-
sys.exit(os.EX_SOFTWARE)
22-
12+
filecontent = open(filename, "r").read()
13+
modlist = json.loads(filecontent)
2314
for mod, data in modlist.items():
2415
url = data["download"].replace(" ", "%20")
2516
print(f"Download {mod}: {url}")
26-
2717
try:
2818
response = urllib.request.urlopen(url)
29-
filecontent = response.read()
30-
print(f"✅ Download successful")
31-
except Exception as err:
32-
print(f"❌ Download failed: {err}")
19+
except:
20+
print("Error: download failed!")
3321
sys.exit(os.EX_SOFTWARE)
34-
35-
filesize = round(len(filecontent) / 1024 / 1024, 3)
36-
print(f"Size: {filesize} MB")
22+
filesize = round(len(response.read()) / 1024 / 1024, 3)
23+
print(f"Size: {filesize}")
3724
data["downloadSize"] = filesize
3825

3926
resultcontent = json.dumps(modlist, indent='\t', separators=(',', ' : ')) + "\n"
4027

4128
if filecontent != resultcontent:
42-
with open(filename, "w") as file:
43-
file.write(resultcontent)
29+
open(filename, "w").write(resultcontent)
4430

4531
sys.exit(os.EX_OK)

0 commit comments

Comments
 (0)