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