mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Add sizeInBytes of zip files to nightly.json generation
This commit is contained in:
@@ -18,6 +18,7 @@ def main():
|
|||||||
name = remove_prefix(data['fileName'], "nightly/")
|
name = remove_prefix(data['fileName'], "nightly/")
|
||||||
url = f"https://f001.backblazeb2.com/file/{bucket}/nightly/{urllib.parse.quote_plus(name)}"
|
url = f"https://f001.backblazeb2.com/file/{bucket}/nightly/{urllib.parse.quote_plus(name)}"
|
||||||
sha1 = data['contentSha1']
|
sha1 = data['contentSha1']
|
||||||
|
size = int(data['contentLength'])
|
||||||
ts = int(data['fileInfo']['src_last_modified_millis'])
|
ts = int(data['fileInfo']['src_last_modified_millis'])
|
||||||
date = datetime.datetime.fromtimestamp(ts/1000).strftime('%Y-%m-%d')
|
date = datetime.datetime.fromtimestamp(ts/1000).strftime('%Y-%m-%d')
|
||||||
|
|
||||||
@@ -28,6 +29,7 @@ def main():
|
|||||||
'name': name,
|
'name': name,
|
||||||
'url': url,
|
'url': url,
|
||||||
'sha1': sha1,
|
'sha1': sha1,
|
||||||
|
'sizeInBytes': size,
|
||||||
})
|
})
|
||||||
|
|
||||||
now = datetime.datetime.utcnow().isoformat()
|
now = datetime.datetime.utcnow().isoformat()
|
||||||
|
|||||||
Reference in New Issue
Block a user