# IPTV Playlist Generator - Enhanced .gitignore # ===== PYTHON ===== __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 # ===== LOGS & TEMPORARY FILES ===== *.log *.tmp *_temp* *.backup.* temp_* .temp/ # Specific log patterns playlist_update.log import_*.log health_check_*.log # ===== BACKUP FILES ===== # Keep backups directory but ignore temporary backups backups/temp_* backups/*.tmp *.backup *~ # ===== DEVELOPMENT & TESTING ===== .pytest_cache/ .coverage htmlcov/ .tox/ .nox/ .cache nosetests.xml coverage.xml *.cover .hypothesis/ # ===== IDE & EDITOR FILES ===== .vscode/ .idea/ *.swp *.swo *~ .DS_Store Thumbs.db # ===== ENVIRONMENT & CONFIG ===== .env .env.local .env.*.local venv/ env/ ENV/ # ===== IPTV SPECIFIC ===== # Temporary import files (keep the main one) bulk_import_temp.m3u import_temp_*.m3u *_processing.m3u # Large test files test_large_*.m3u sample_*.m3u # Generated temporary playlists playlist_temp.m3u temp_playlist_*.m3u # ===== DOCUMENTATION BUILDS ===== docs/_build/ site/ # ===== ARCHIVE & COMPRESSED ===== *.tar.gz *.zip *.rar logs_archive_*.tar.gz # ===== SYSTEM FILES ===== .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db