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