Metadata-Version: 2.1
Name: aiomisc
Version: 16.2.4
Summary: aiomisc - miscellaneous utils for asyncio
Home-page: https://github.com/aiokitchen/aiomisc
Author: Dmitry Orlov
Author-email: me@mosquito.su
License: MIT
Project-URL: Source, https://github.com/aiokitchen/aiomisc
Project-URL: Tracker, https://github.com/aiokitchen/aiomisc/issues
Project-URL: Changelog, https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md
Project-URL: Documentation, https://aiomisc.readthedocs.io/en/latest/
Description: aiomisc - miscellaneous utils for asyncio
        =========================================
        
        .. image:: https://coveralls.io/repos/github/aiokitchen/aiomisc/badge.svg?branch=master
           :target: https://coveralls.io/github/aiokitchen/aiomisc
           :alt: Coveralls
        
        .. image:: https://github.com/aiokitchen/aiomisc/workflows/tox/badge.svg
           :target: https://github.com/aiokitchen/aiomisc/actions?query=workflow%3Atox
           :alt: Actions
        
        .. image:: https://img.shields.io/pypi/v/aiomisc.svg
           :target: https://pypi.python.org/pypi/aiomisc/
           :alt: Latest Version
        
        .. image:: https://img.shields.io/pypi/wheel/aiomisc.svg
           :target: https://pypi.python.org/pypi/aiomisc/
        
        .. image:: https://img.shields.io/pypi/pyversions/aiomisc.svg
           :target: https://pypi.python.org/pypi/aiomisc/
        
        .. image:: https://img.shields.io/pypi/l/aiomisc.svg
           :target: https://pypi.python.org/pypi/aiomisc/
        
        
        Miscellaneous utils for asyncio.
        
        The complete documentation is available in the following languages:
        
        * `English documentation`_
        * `Russian documentation`_
        
        .. _English documentation: https://aiomisc.readthedocs.io/en/latest/
        .. _Russian documentation: https://aiomisc.readthedocs.io/ru/latest/
        
        .. contents:: Table of contents
        
        Installation
        ------------
        
        Installing from pypi:
        
        .. code-block:: bash
        
            pip3 install aiomisc
        
        With uvloop_:
        
        .. code-block:: bash
        
            pip3 install "aiomisc[uvloop]"
        
        
        With aiohttp_:
        
        .. code-block:: bash
        
            pip3 install "aiomisc[aiohttp]"
        
        
        Installing from github.com:
        
        .. code-block:: bash
        
            pip3 install git+https://github.com/aiokitchen/aiomisc.git
            pip3 install \
                https://github.com/aiokitchen/aiomisc/archive/refs/heads/master.zip
        
        
        .. _uvloop: https://pypi.org/project/uvloop
        .. _aiohttp: https://pypi.org/project/aiohttp
        
        Versioning
        ----------
        
        This software follows `Semantic Versioning`_
        
        
        How to develop?
        ---------------
        
        Should be installed:
        
        * `virtualenv`
        * GNU Make as `make`
        * Python 3.5+ as `python3`
        
        
        For setting up developer environment just type
        
            .. code-block::
        
                make develop
        
                . .venv/bin/activate
        
                # run pre-commit before commit your changes
                pre-commit
        
                # or run: pre-commit install for adding pre-commit hook
        
        
        .. _Semantic Versioning: http://semver.org/
        
Platform: all
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: Russian
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.7, <4
Provides-Extra: aiohttp
Provides-Extra: asgi
Provides-Extra: carbon
Provides-Extra: develop
Provides-Extra: raven
Provides-Extra: uvloop
Provides-Extra: cron
