28 lines
734 B
Python
28 lines
734 B
Python
"""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",
|
|
]
|