Add scripts/__init__.py
Some checks failed
📺 Generate M3U Playlist / build (push) Has been cancelled

This commit is contained in:
stoney420 2025-06-27 23:27:12 +02:00
parent cfb54f4ec1
commit 556c1edac7

24
scripts/__init__.py Normal file
View file

@ -0,0 +1,24 @@
"""
IPTV Playlist Generator Scripts Package
Modular components for playlist generation and management.
"""
__version__ = "2.0.0"
__author__ = "IPTV Playlist Generator"
# Import main classes for easier access
from .config_manager import ConfigManager
from .channel_processor import ChannelProcessor
from .file_manager import FileManager
from .playlist_builder import PlaylistBuilder
from .health_checker import HealthChecker
from .report_generator import ReportGenerator
__all__ = [
'ConfigManager',
'ChannelProcessor',
'FileManager',
'PlaylistBuilder',
'HealthChecker',
'ReportGenerator'
]