1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-24 06:50:51 +00:00
bazarr/libs/aniso8601/__init__.py

27 lines
705 B
Python
Raw Normal View History

2022-09-22 10:33:33 +00:00
# -*- coding: utf-8 -*-
2025-01-18 15:02:09 +00:00
# Copyright (c) 2025, Brandon Nielsen
2022-09-22 10:33:33 +00:00
# All rights reserved.
#
# This software may be modified and distributed under the terms
# of the BSD license. See the LICENSE file for details.
from aniso8601.date import get_date_resolution, parse_date
from aniso8601.duration import get_duration_resolution, parse_duration
from aniso8601.interval import (
get_interval_resolution,
get_repeating_interval_resolution,
parse_interval,
parse_repeating_interval,
)
# Import the main parsing functions so they are readily available
from aniso8601.time import (
get_datetime_resolution,
get_time_resolution,
parse_datetime,
parse_time,
)
2025-01-18 15:02:09 +00:00
__version__ = "10.0.0"