sh_cpl/src/cpl_query/iterable/__init__.py

31 lines
761 B
Python
Raw Normal View History

2022-09-13 12:07:04 +02:00
# -*- coding: utf-8 -*-
"""
cpl-query sh-edraft Common Python library Query
~~~~~~~~~~~~~~~~~~~
sh-edraft Common Python library Python integrated Queries
:copyright: (c) 2021 - 2022 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'cpl_query.iterable'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de'
2022-09-18 11:37:50 +02:00
__version__ = '2022.10rc2'
2022-09-13 12:07:04 +02:00
from collections import namedtuple
# imports:
from .iterable_abc import IterableABC
from .iterable import Iterable
from .ordered_iterable_abc import OrderedIterableABC
from .ordered_iterable import OrderedIterable
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
2022-09-18 11:37:50 +02:00
version_info = VersionInfo(major='2022', minor='10', micro='rc2')