mirror of https://github.com/morpheus65535/bazarr
16 lines
380 B
Python
16 lines
380 B
Python
from .ssafile import SSAFile
|
|
from .ssaevent import SSAEvent
|
|
from .ssastyle import SSAStyle
|
|
from . import time, formats, cli
|
|
from .exceptions import *
|
|
from .common import Color, VERSION
|
|
|
|
#: Alias for :meth:`SSAFile.load()`.
|
|
load = SSAFile.load
|
|
|
|
#: Alias for :meth:`pysubs2.time.make_time()`.
|
|
make_time = time.make_time
|
|
|
|
#: Alias for `pysubs2.common.VERSION`.
|
|
__version__ = VERSION
|