big upgrade UwU

This commit is contained in:
2026-07-27 15:16:01 +02:00
parent 9fb2bf0a74
commit 1ff979f1e5
30 changed files with 3304 additions and 183 deletions
+27
View File
@@ -0,0 +1,27 @@
"""Download Telegram sticker packs from the command line."""
from sticker_downloader.config import ALL_FILE_TYPES, DownloadConfig, parse_file_types
from sticker_downloader.downloader import FileOutcome, PackResult, StickerDownloader
from sticker_downloader.errors import (
FetchError,
InvalidPackReference,
StickerDownloaderError,
)
from sticker_downloader.urls import parse_pack_name, read_pack_references
__version__ = "1.0.0"
__all__ = [
"ALL_FILE_TYPES",
"DownloadConfig",
"FetchError",
"FileOutcome",
"InvalidPackReference",
"PackResult",
"StickerDownloader",
"StickerDownloaderError",
"__version__",
"parse_file_types",
"parse_pack_name",
"read_pack_references",
]