]> jfr.im git - yt-dlp.git/blob - .gitignore
[cleanup] Misc fixes
[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 *.flac
31 *.flv
32 *.jpeg
33 *.jpg
34 *.m4a
35 *.m4v
36 *.mhtml
37 *.mkv
38 *.mov
39 *.mp3
40 *.mp4
41 *.ogg
42 *.opus
43 *.png
44 *.sbv
45 *.srt
46 *.swf
47 *.swp
48 *.ttml
49 *.url
50 *.vtt
51 *.wav
52 *.webloc
53 *.webm
54 *.webp
55
56 # Allow config/media files in testdata
57 !test/**
58
59 # Python
60 *.pyc
61 *.pyo
62 .pytest_cache
63 wine-py2exe/
64 py2exe.log
65 build/
66 dist/
67 zip/
68 tmp/
69 venv/
70 completions/
71
72 # Misc
73 *~
74 *.DS_Store
75 *.kate-swp
76 MANIFEST
77 test/local_parameters.json
78 .coverage
79 cover/
80 secrets/
81 updates_key.pem
82 *.egg-info
83 .tox
84 *.class
85
86 # Generated
87 AUTHORS
88 README.txt
89 .mailmap
90 *.1
91 *.bash-completion
92 *.fish
93 *.tar.gz
94 *.zsh
95 *.spec
96 test/testdata/sigs/player-*.js
97
98 # Binary
99 /youtube-dl
100 /youtube-dlc
101 /yt-dlp
102 yt-dlp.zip
103 *.exe
104
105 # Text Editor / IDE
106 .idea
107 *.iml
108 .vscode
109 *.sublime-*
110 *.code-workspace
111
112 # Lazy extractors
113 */extractor/lazy_extractors.py
114
115 # Plugins
116 ytdlp_plugins/extractor/*
117 !ytdlp_plugins/extractor/__init__.py
118 !ytdlp_plugins/extractor/sample.py
119 ytdlp_plugins/postprocessor/*
120 !ytdlp_plugins/postprocessor/__init__.py
121 !ytdlp_plugins/postprocessor/sample.py