Files
MediaCast2/__init__.py
2026-01-12 10:48:20 +08:00

22 lines
489 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# __init__.py (项目根目录)
"""
本地媒体投屏应用
此应用支持将本地媒体文件投屏到投影仪、电视等设备。
支持多协议自动检测包括DLNA、Chromecast等设备。
"""
__version__ = "1.0.1"
__author__ = "Local Cast"
__description__ = "本地媒体投屏工具"
# 定义公开的接口
__all__ = [
"DeviceDiscovery",
"MainWindow"
]
# 导入核心功能,便于直接访问
from core.device_discovery import *
from ui.main_window import *