Skip to content

Commit 5c4d65b

Browse files
authored
Update update_size.py
1 parent 866ff96 commit 5c4d65b

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

.github/update_size.py

+3-12
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import os
44
import sys
55
import urllib.request
6-
from io import StringIO
76

87
from ignore_json import ignore
98

@@ -15,7 +14,6 @@
1514
filecontent = file.read()
1615

1716
try:
18-
jstyleson.load(StringIO(filecontent))
1917
modlist = jstyleson.loads(filecontent)
2018
except Exception as err:
2119
print(f"❌ Error reading JSON file {filename}: {err}")
@@ -27,21 +25,14 @@
2725

2826
try:
2927
response = urllib.request.urlopen(url)
28+
filecontent = response.read()
3029
print(f"✅ Download successful")
3130
except Exception as err:
3231
print(f"❌ Download failed: {err}")
3332
sys.exit(os.EX_SOFTWARE)
3433

35-
try:
36-
filecontent = response.read().decode("utf-8")
37-
jstyleson.load(StringIO(filecontent))
38-
print(f"✅ JSON valid")
39-
except Exception as err:
40-
print(f"❌ JSON invalid: {err}")
41-
sys.exit(os.EX_SOFTWARE)
42-
43-
filesize = round(len(filecontent.encode('utf-8')) / 1024 / 1024, 3)
44-
print(f"Size: {filesize}")
34+
filesize = round(len(filecontent) / 1024 / 1024, 3)
35+
print(f"Size: {filesize} MB")
4536
data["downloadSize"] = filesize
4637

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

0 commit comments

Comments
 (0)