aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/make_issue_template.py
blob: 878b94166a5fe1c7ccb6ed56696d4de0dfa7950b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3
import io
import optparse


def main():
    parser = optparse.OptionParser(usage='%prog INFILE OUTFILE')
    options, args = parser.parse_args()
    if len(args) != 2:
        parser.error('Expected an input and an output filename')

    infile, outfile = args

    with open(infile, encoding='utf-8') as inf:
        issue_template_tmpl = inf.read()

    # Get the version from yt_dlp/version.py without importing the package
    exec(compile(open('yt_dlp/version.py').read(),
                 'yt_dlp/version.py', 'exec'))

    out = issue_template_tmpl % {'version': locals()['__version__']}

    with open(outfile, 'w', encoding='utf-8') as outf:
        outf.write(out)


if __name__ == '__main__':
    main()