返回 douyin-downloader
.gitignore
根目录 / .gitignore
1 # Python cache
2 __pycache__/
3 *.py[cod]
4 *.pyo
5 *.pyd
6
7 # Test/cache artifacts
8 .pytest_cache/
9 .mypy_cache/
10 .ruff_cache/
11 .coverage
12 htmlcov/
13
14 # Build/package artifacts
15 build/
16 dist/
17 .eggs/
18 *.egg-info/
19 pip-wheel-metadata/
20
21 # Virtual environments
22 .venv/
23 venv/
24 env/
25
26 # OS files
27 .DS_Store
28
29 # Logs
30 logs/
31 *.log
32
33 # Runtime output
34 Downloaded/
35 Transcripts/
36 dy_downloader.db
37 *.db
38 *.sqlite
39 *.sqlite3
40
41 # Local config/secrets
42 config*.yml
43 !config.example.yml
44 .cookies.json
45 config/cookies.json
46 .omx/
47
48 # Editor / IDE local settings
49 .claude/
50 .idea/
51 .vscode/
52 .omc/
53 .gstack/
54
54 lines Plain Text