sh_cpl/src/cpl_query/extension/__init__.py

31 lines
786 B
Python
Raw Normal View History

2021-07-26 15:55:08 +02:00
# -*- coding: utf-8 -*-
"""
2022-04-30 16:33:30 +02:00
cpl-query sh-edraft Common Python library Query
2021-07-26 15:55:08 +02:00
~~~~~~~~~~~~~~~~~~~
sh-edraft Common Python library Python integrated Queries
2022-05-25 19:59:38 +02:00
:copyright: (c) 2021 - 2022 sh-edraft.de
2021-07-26 15:55:08 +02:00
:license: MIT, see LICENSE for more details.
"""
__title__ = 'cpl_query.extension'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
2022-05-25 19:59:38 +02:00
__copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de'
2022-06-27 21:48:15 +02:00
__version__ = '2022.6.0rc2'
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')
2022-06-27 21:48:15 +02:00
version_info = VersionInfo(major='2022', minor='6', micro='0.rc2')