]> jfr.im git - yt-dlp.git/blob - .gitignore
[cleanup] Misc
[yt-dlp.git] / .gitignore
1 # Config
2 *.conf
3 cookies
4 *cookies.txt
5 .netrc
6
7 # Downloaded
8 *.annotations.xml
9 *.aria2
10 *.description
11 *.dump
12 *.frag
13 *.frag.aria2
14 *.frag.urls
15 *.info.json
16 *.live_chat.json
17 *.meta
18 *.part*
19 *.tmp
20 *.temp
21 *.unknown_video
22 *.ytdl
23 .cache/
24
25 *.3gp
26 *.ape
27 *.ass
28 *.avi
29 *.desktop
30 *.f4v
31 *.flac
32 *.flv
33 *.jpeg
34 *.jpg
35 *.m4a
36 *.m4v
37 *.mhtml
38 *.mkv
39 *.mov
40 *.mp3
41 *.mp4
42 *.mpga
43 *.oga
44 *.ogg
45 *.opus
46 *.png
47 *.sbv
48 *.srt
49 *.swf
50 *.swp
51 *.tt
52 *.ttml
53 *.url
54 *.vtt
55 *.wav
56 *.webloc
57 *.webm
58 *.webp
59
60 # Allow config/media files in testdata
61 !test/**
62
63 # Python
64 *.pyc
65 *.pyo
66 .pytest_cache
67 wine-py2exe/
68 py2exe.log
69 build/
70 dist/
71 zip/
72 tmp/
73 venv/
74 .venv/
75 completions/
76
77 # Misc
78 *~
79 *.DS_Store
80 *.kate-swp
81 MANIFEST
82 test/local_parameters.json
83 .coverage
84 cover/
85 secrets/
86 updates_key.pem
87 *.egg-info
88 .tox
89 *.class
90 *.isorted
91 *.stackdump
92
93 # Generated
94 AUTHORS
95 README.txt
96 .mailmap
97 *.1
98 *.bash-completion
99 *.fish
100 *.tar.gz
101 *.zsh
102 *.spec
103 test/testdata/sigs/player-*.js
104
105 # Binary
106 /youtube-dl
107 /youtube-dlc
108 /yt-dlp
109 yt-dlp.zip
110 *.exe
111
112 # Text Editor / IDE
113 .idea
114 *.iml
115 .vscode
116 *.sublime-*
117 *.code-workspace
118
119 # Lazy extractors
120 */extractor/lazy_extractors.py
121
122 # Plugins
123 ytdlp_plugins/extractor/*
124 !ytdlp_plugins/extractor/__init__.py
125 !ytdlp_plugins/extractor/sample.py
126 ytdlp_plugins/postprocessor/*
127 !ytdlp_plugins/postprocessor/__init__.py
128 !ytdlp_plugins/postprocessor/sample.py