youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

make_issue_template.py (795B)


      1 #!/usr/bin/env python
      2 from __future__ import unicode_literals
      3 
      4 import io
      5 import optparse
      6 
      7 
      8 def main():
      9     parser = optparse.OptionParser(usage='%prog INFILE OUTFILE')
     10     options, args = parser.parse_args()
     11     if len(args) != 2:
     12         parser.error('Expected an input and an output filename')
     13 
     14     infile, outfile = args
     15 
     16     with io.open(infile, encoding='utf-8') as inf:
     17         issue_template_tmpl = inf.read()
     18 
     19     # Get the version from youtube_dl/version.py without importing the package
     20     exec(compile(open('youtube_dl/version.py').read(),
     21                  'youtube_dl/version.py', 'exec'))
     22 
     23     out = issue_template_tmpl % {'version': locals()['__version__']}
     24 
     25     with io.open(outfile, 'w', encoding='utf-8') as outf:
     26         outf.write(out)
     27 
     28 if __name__ == '__main__':
     29     main()