Metadata-Version: 2.1
Name: ready
Version: 0.1.0
Summary: Take control of the event loop with simplified task management and queueing
Home-page: https://github.com/kalaspuff/ready
License: MIT
Keywords: ready
Author: Carl Oscar Aaro
Author-email: hello@ready.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Project-URL: Repository, https://github.com/kalaspuff/ready
Description-Content-Type: text/markdown

# `ready`
[![pypi](https://badge.fury.io/py/ready.svg)](https://pypi.python.org/pypi/ready/)
[![Made with Python](https://img.shields.io/pypi/pyversions/ready)](https://www.python.org/)
[![Type hinted - mypy validated](https://img.shields.io/badge/typehinted-yes-teal)](https://github.com/kalaspuff/ready)
[![MIT License](https://img.shields.io/github/license/kalaspuff/ready.svg)](https://github.com/kalaspuff/ready/blob/master/LICENSE)
[![Code coverage](https://codecov.io/gh/kalaspuff/ready/branch/master/graph/badge.svg)](https://codecov.io/gh/kalaspuff/ready/tree/master/ready)

*A set of functions to simplify task management on the event loop using asyncio on Python 3.6, 3.7 and 3.8.*


## Installation with `pip`
Like you would install any other Python package, use `pip`, `poetry`, `pipenv` or your weapon of choice.
```
$ pip install ready
```


## Usage and examples

#### Use-case
```
import ready

```

