2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2016-03-06 22:16:13 +00:00
|
|
|
import optparse
|
|
|
|
|
|
|
|
|
2022-04-27 08:15:45 +00:00
|
|
|
def read(fname):
|
|
|
|
with open(fname, encoding='utf-8') as f:
|
|
|
|
return f.read()
|
|
|
|
|
|
|
|
|
|
|
|
# Get the version from yt_dlp/version.py without importing the package
|
|
|
|
def read_version(fname):
|
|
|
|
exec(compile(read(fname), fname, 'exec'))
|
|
|
|
return locals()['__version__']
|
|
|
|
|
|
|
|
|
2016-03-06 22:16:13 +00:00
|
|
|
def main():
|
2016-03-28 20:16:38 +00:00
|
|
|
parser = optparse.OptionParser(usage='%prog INFILE OUTFILE')
|
2016-03-06 22:16:13 +00:00
|
|
|
options, args = parser.parse_args()
|
2016-03-28 20:16:38 +00:00
|
|
|
if len(args) != 2:
|
|
|
|
parser.error('Expected an input and an output filename')
|
2016-03-06 22:16:13 +00:00
|
|
|
|
2016-03-28 20:16:38 +00:00
|
|
|
infile, outfile = args
|
2022-04-11 15:10:28 +00:00
|
|
|
with open(outfile, 'w', encoding='utf-8') as outf:
|
2022-04-27 08:15:45 +00:00
|
|
|
outf.write(
|
|
|
|
read(infile) % {'version': read_version('yt_dlp/version.py')})
|
2016-03-06 22:16:13 +00:00
|
|
|
|
2022-04-11 15:10:28 +00:00
|
|
|
|
2016-03-06 22:16:13 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|