3 # Allow direct execution
7 sys
.path
.insert(0, os
.path
.dirname(os
.path
.dirname(os
.path
.abspath(__file__
))))
13 from yt_dlp
.utils
import shell_quote
15 FISH_COMPLETION_FILE
= 'completions/fish/yt-dlp.fish'
16 FISH_COMPLETION_TEMPLATE
= 'devscripts/fish-completion.in'
19 'remux-video': ['--arguments', 'mp4 mkv', '--exclusive'],
20 'recode-video': ['--arguments', 'mp4 flv ogg webm mkv', '--exclusive'],
22 # Options that need a file parameter
23 'download-archive': ['--require-parameter'],
24 'cookies': ['--require-parameter'],
25 'load-info': ['--require-parameter'],
26 'batch-file': ['--require-parameter'],
30 def build_completion(opt_parser
):
33 for group
in opt_parser
.option_groups
:
34 for option
in group
.option_list
:
35 long_option
= option
.get_opt_string().strip('-')
36 complete_cmd
= ['complete', '--command', 'yt-dlp', '--long-option', long_option
]
37 if option
._short
_opts
:
38 complete_cmd
+= ['--short-option', option
._short
_opts
[0].strip('-')]
39 if option
.help != optparse
.SUPPRESS_HELP
:
40 complete_cmd
+= ['--description', option
.help]
41 complete_cmd
.extend(EXTRA_ARGS
.get(long_option
, []))
42 commands
.append(shell_quote(complete_cmd
))
44 with
open(FISH_COMPLETION_TEMPLATE
) as f
:
46 filled_template
= template
.replace('{{commands}}', '\n'.join(commands
))
47 with
open(FISH_COMPLETION_FILE
, 'w') as f
:
48 f
.write(filled_template
)
51 parser
= yt_dlp
.parseOpts(ignore_config_files
=True)[0]
52 build_completion(parser
)