mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 00:03:33 +00:00
2b19f390e7
* chore: Bump pysubs2 to v1.7.1 * chore: bump version to 1.7.2 * remove bin
36 lines
783 B
Python
36 lines
783 B
Python
from .ssafile import SSAFile
|
|
from .ssaevent import SSAEvent
|
|
from .ssastyle import SSAStyle
|
|
from . import time, formats, cli, exceptions
|
|
from .formats import whisper
|
|
from .exceptions import * # noqa: F403
|
|
from .common import Color, Alignment, VERSION
|
|
|
|
__all__ = [
|
|
"SSAFile",
|
|
"SSAEvent",
|
|
"SSAStyle",
|
|
"time",
|
|
"formats",
|
|
"cli",
|
|
"whisper",
|
|
"exceptions",
|
|
"Color",
|
|
"Alignment",
|
|
"VERSION",
|
|
"load",
|
|
"load_from_whisper",
|
|
"make_time",
|
|
]
|
|
|
|
#: Alias for :meth:`SSAFile.load()`.
|
|
load = SSAFile.load
|
|
|
|
#: Alias for :meth:`pysubs2.whisper.load_from_whisper()`.
|
|
load_from_whisper = whisper.load_from_whisper
|
|
|
|
#: Alias for :meth:`pysubs2.time.make_time()`.
|
|
make_time = time.make_time
|
|
|
|
#: Alias for `pysubs2.common.VERSION`.
|
|
__version__ = VERSION
|