Some checks failed
Generate M3U Playlist with Auto-Organization / build-and-organize (push) Failing after 1m14s
41 lines
No EOL
697 B
Text
41 lines
No EOL
697 B
Text
# IPTV Playlist Generator - Enhanced .gitignore
|
|
# ===== PYTHON =====
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
# ===== LOGS & TEMPORARY FILES =====
|
|
*.log
|
|
*.tmp
|
|
*_temp*
|
|
*.backup.*
|
|
temp_*
|
|
# ===== BACKUP FILES =====
|
|
backups/temp_*
|
|
backups/*.tmp
|
|
*.backup
|
|
*~
|
|
# ===== DATA ARCHIVES =====
|
|
data/archive/
|
|
reports/archive/
|
|
# ===== IDE & EDITOR FILES =====
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
# ===== IPTV SPECIFIC =====
|
|
bulk_import_temp.m3u
|
|
import_temp_*.m3u
|
|
*_processing.m3u
|
|
playlist_temp.m3u
|
|
temp_playlist_*.m3u
|
|
# Old timestamped files
|
|
*_20[0-9][0-9][0-9][0-9][0-9][0-9]_*.txt
|
|
*_20[0-9][0-9][0-9][0-9][0-9][0-9].txt
|
|
# ===== SETUP & MAINTENANCE =====
|
|
setup_*.py
|
|
comprehensive_cleanup.py |