KaraokeVideoDownloader/.gitignore

88 lines
889 B
Plaintext

# Downloaded karaoke videos and media files
downloads/
*.mp4
*.mp3
*.webm
*.mkv
*.avi
*.mov
*.wmv
*.flv
# Log files
logs/
*.log
# Tracking and cache files
*.cache
# yt-dlp temporary files
*.info.json
*.meta
*.description
*.thumbnail
*.annotations
*.comments
*.srt
*.vtt
# Python cache and build files
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
venv/
env/
ENV/
env.bak/
venv.bak/
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.temp
*.bak
*.backup
# Configuration files with sensitive data (optional - uncomment if needed)
# config.json
# Test files
test_*.py
*_test.py
.pytest_cache/
# Coverage reports
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/