Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/aniso8601/__init__.py: 83%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

6 statements  

1# -*- coding: utf-8 -*- 

2 

3# Copyright (c) 2025, Brandon Nielsen 

4# All rights reserved. 

5# 

6# This software may be modified and distributed under the terms 

7# of the BSD license. See the LICENSE file for details. 

8 

9from aniso8601.date import get_date_resolution, parse_date 

10from aniso8601.duration import get_duration_resolution, parse_duration 

11from aniso8601.interval import ( 

12 get_interval_resolution, 

13 get_repeating_interval_resolution, 

14 parse_interval, 

15 parse_repeating_interval, 

16) 

17 

18# Import the main parsing functions so they are readily available 

19from aniso8601.time import ( 

20 get_datetime_resolution, 

21 get_time_resolution, 

22 parse_datetime, 

23 parse_time, 

24) 

25 

26__version__ = "10.0.1"