mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
f05b09f349
Updates rarfile to 3.1 Updates stevedore to 3.5.0 Updates appdirs to 1.4.4 Updates click to 8.1.3 Updates decorator to 5.1.1 Updates dogpile.cache to 1.1.8 Updates pbr to 5.11.0 Updates pysrt to 1.1.2 Updates pytz to 2022.6 Adds importlib-metadata version 3.1.1 Adds typing-extensions version 4.1.1 Adds zipp version 3.11.0
22 lines
818 B
Python
22 lines
818 B
Python
# -*- coding: utf-8 -*-
|
|
__title__ = 'subliminal'
|
|
__version__ = '2.1.0'
|
|
__short_version__ = '.'.join(__version__.split('.')[:2])
|
|
__author__ = 'Antoine Bertin'
|
|
__license__ = 'MIT'
|
|
__copyright__ = 'Copyright 2016, Antoine Bertin'
|
|
|
|
import logging
|
|
|
|
from .core import (AsyncProviderPool, ProviderPool, check_video, download_best_subtitles, download_subtitles,
|
|
list_subtitles, refine, save_subtitles, scan_video, scan_videos)
|
|
from .cache import region
|
|
from .exceptions import Error, ProviderError
|
|
from .extensions import provider_manager, refiner_manager
|
|
from .providers import Provider
|
|
from .score import compute_score, get_scores
|
|
from .subtitle import SUBTITLE_EXTENSIONS, Subtitle
|
|
from .video import VIDEO_EXTENSIONS, Episode, Movie, Video
|
|
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|