2021-06-03 05:43:42 -04:00
|
|
|
#!/usr/bin/env python3
|
2012-12-07 15:59:59 -05:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2022-04-11 20:01:54 -04:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2021-02-24 13:45:56 -05:00
|
|
|
import yt_dlp
|
2012-12-07 15:38:45 -05:00
|
|
|
|
2021-02-25 09:49:57 -05:00
|
|
|
BASH_COMPLETION_FILE = "completions/bash/yt-dlp"
|
2012-12-11 13:17:02 -05:00
|
|
|
BASH_COMPLETION_TEMPLATE = "devscripts/bash-completion.in"
|
2012-12-07 15:38:45 -05:00
|
|
|
|
2014-11-23 14:41:03 -05:00
|
|
|
|
2012-12-07 15:38:45 -05:00
|
|
|
def build_completion(opt_parser):
|
|
|
|
opts_flag = []
|
|
|
|
for group in opt_parser.option_groups:
|
|
|
|
for option in group.option_list:
|
2014-11-23 14:41:03 -05:00
|
|
|
# for every long flag
|
2012-12-07 15:38:45 -05:00
|
|
|
opts_flag.append(option.get_opt_string())
|
|
|
|
with open(BASH_COMPLETION_TEMPLATE) as f:
|
|
|
|
template = f.read()
|
|
|
|
with open(BASH_COMPLETION_FILE, "w") as f:
|
2014-11-23 14:41:03 -05:00
|
|
|
# just using the special char
|
2012-12-07 15:38:45 -05:00
|
|
|
filled_template = template.replace("{{flags}}", " ".join(opts_flag))
|
|
|
|
f.write(filled_template)
|
|
|
|
|
2016-11-17 06:42:56 -05:00
|
|
|
|
2022-04-27 04:15:45 -04:00
|
|
|
parser = yt_dlp.parseOpts(ignore_config_files=True)[0]
|
2012-12-07 15:38:45 -05:00
|
|
|
build_completion(parser)
|