]>
Raphaƫl G. Git Repositories - youtubedl/blob - devscripts/gh-pages/add-version.py
9 print('Specify the version number as parameter')
13 with open('update/LATEST_VERSION', 'w') as f
:
16 versions_info
= json
.load(open('update/versions.json'))
17 if 'signature' in versions_info
:
18 del versions_info
['signature']
24 'exe': 'youtube-dl.exe',
25 'tar': 'youtube-dl-%s.tar.gz' % version
}
26 for key
, filename
in filenames
.items():
27 print('Downloading and checksumming %s...' % filename
)
28 url
= 'https://yt-dl.org/downloads/%s/%s' % (version
, filename
)
29 data
= urllib
.request
.urlopen(url
).read()
30 sha256sum
= hashlib
.sha256(data
).hexdigest()
31 new_version
[key
] = (url
, sha256sum
)
33 versions_info
['versions'][version
] = new_version
34 versions_info
['latest'] = version
36 with open('update/versions.json', 'w') as jsonf
:
37 json
.dump(versions_info
, jsonf
, indent
=4, sort_keys
=True)