mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-11-01 09:26:45 -07:00 
			
		
		
		
	In pycodestyle 2.1.0, E305 was introduced, which requires two blank lines after top level declarations, too. See https://github.com/PyCQA/pycodestyle/issues/400 See also #10689; thanks @stepshal for first mentioning this issue and initial patches
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
import os
 | 
						|
from os.path import dirname as dirn
 | 
						|
import sys
 | 
						|
 | 
						|
sys.path.insert(0, dirn(dirn((os.path.abspath(__file__)))))
 | 
						|
import youtube_dl
 | 
						|
 | 
						|
ZSH_COMPLETION_FILE = "youtube-dl.zsh"
 | 
						|
ZSH_COMPLETION_TEMPLATE = "devscripts/zsh-completion.in"
 | 
						|
 | 
						|
 | 
						|
def build_completion(opt_parser):
 | 
						|
    opts = [opt for group in opt_parser.option_groups
 | 
						|
            for opt in group.option_list]
 | 
						|
    opts_file = [opt for opt in opts if opt.metavar == "FILE"]
 | 
						|
    opts_dir = [opt for opt in opts if opt.metavar == "DIR"]
 | 
						|
 | 
						|
    fileopts = []
 | 
						|
    for opt in opts_file:
 | 
						|
        if opt._short_opts:
 | 
						|
            fileopts.extend(opt._short_opts)
 | 
						|
        if opt._long_opts:
 | 
						|
            fileopts.extend(opt._long_opts)
 | 
						|
 | 
						|
    diropts = []
 | 
						|
    for opt in opts_dir:
 | 
						|
        if opt._short_opts:
 | 
						|
            diropts.extend(opt._short_opts)
 | 
						|
        if opt._long_opts:
 | 
						|
            diropts.extend(opt._long_opts)
 | 
						|
 | 
						|
    flags = [opt.get_opt_string() for opt in opts]
 | 
						|
 | 
						|
    with open(ZSH_COMPLETION_TEMPLATE) as f:
 | 
						|
        template = f.read()
 | 
						|
 | 
						|
    template = template.replace("{{fileopts}}", "|".join(fileopts))
 | 
						|
    template = template.replace("{{diropts}}", "|".join(diropts))
 | 
						|
    template = template.replace("{{flags}}", " ".join(flags))
 | 
						|
 | 
						|
    with open(ZSH_COMPLETION_FILE, "w") as f:
 | 
						|
        f.write(template)
 | 
						|
 | 
						|
 | 
						|
parser = youtube_dl.parseOpts()[0]
 | 
						|
build_completion(parser)
 |