mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-19 16:10:31 -08:00
29 lines
705 B
Python
29 lines
705 B
Python
"""
|
|
Download tracking services for FastAnime.
|
|
|
|
This module provides comprehensive download tracking and management capabilities
|
|
including progress monitoring, queue management, and integration with watch history.
|
|
"""
|
|
|
|
from .manager import DownloadManager, get_download_manager
|
|
from .models import (
|
|
DownloadIndex,
|
|
DownloadQueueItem,
|
|
EpisodeDownload,
|
|
MediaDownloadRecord,
|
|
MediaIndexEntry,
|
|
)
|
|
from .tracker import DownloadTracker, get_download_tracker
|
|
|
|
__all__ = [
|
|
"DownloadManager",
|
|
"get_download_manager",
|
|
"DownloadTracker",
|
|
"get_download_tracker",
|
|
"EpisodeDownload",
|
|
"MediaDownloadRecord",
|
|
"DownloadIndex",
|
|
"MediaIndexEntry",
|
|
"DownloadQueueItem",
|
|
]
|