Add scripts/__init__.py
Some checks failed
📺 Generate M3U Playlist / build (push) Has been cancelled
Some checks failed
📺 Generate M3U Playlist / build (push) Has been cancelled
This commit is contained in:
parent
cfb54f4ec1
commit
556c1edac7
1 changed files with 24 additions and 0 deletions
24
scripts/__init__.py
Normal file
24
scripts/__init__.py
Normal 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'
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue