sh_cpl/src/cpl_query/extension/__init__.py

31 lines
784 B
Python
Raw Normal View History

2021-07-26 15:55:08 +02:00
# -*- coding: utf-8 -*-
"""
sh_cpl-query sh-edraft Common Python library Query
2021-07-26 15:55:08 +02:00
~~~~~~~~~~~~~~~~~~~
sh-edraft Common Python library Python integrated Queries
:copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'cpl_query.extension'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
2021-11-14 09:52:07 +01:00
__version__ = '2021.10.2'
2021-07-26 15:55:08 +02:00
from collections import namedtuple
# imports:
2021-11-02 17:45:45 +01:00
from .iterable_abc import IterableABC
from .iterable import Iterable
from .list import List
from .ordered_iterable_abc import OrderedIterableABC
from .ordered_iterable import OrderedIterable
2021-07-26 15:55:08 +02:00
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
2021-11-14 09:52:07 +01:00
version_info = VersionInfo(major='2021', minor='10', micro='2')