Metadata-Version: 2.1
Name: tasktools
Version: 1.2.0
Summary: This module allows you to work with asyncio coroutines and schedule some tasks.
Home-page: https://tasktools.readthedocs.io/en/latest/
License: GPL-3.0-or-later
Keywords: asyncio,loop,futures,tasks,scheduler
Author: David Pineda
Author-email: dahalpi@gmail.com
Maintainer: David Pineda
Maintainer-email: dahalpi@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Project-URL: Documentation, https://tasktools.readthedocs.io/en/latest/
Project-URL: Repository, https://gitlab.com/pineiden/tasktools.git
Description-Content-Type: text/markdown

Asyncio Tasks Tools
======================

The [asyncio](https://docs.python.org/3/library/asyncio.html) module,
from standar library since 3.4, is basic for the coroutines and
tasks. You need to study first this module because it's not really easy.

This module allows you to work with asyncio coroutines and schedule some
tasks.

These tasks can be build in a really generic way, like an independet loop.

The tools in this module can help you to manage your coroutines and succeed.

The 'how to use' on [documentation](../doc/tasktools.pdf) file.


How to install
-----------------

To install, in your virtualenvironment, execute pip:

```
pip install git+[url]
```

Or, using setup:

```
python setup.py tasktools
```

