Yet Another Python Queue


Keywords
yapq
License
MIT
Install
pip install yapq==0.4.0

Documentation

yapq

Documentation Status Updates

Yet Another Python Queue

Usage

>>> from yapq import Yapq
>>> yapq = Yapq()
>>> yapq.start()
>>> result = yapq.enqueue(lambda a, b: a + b, 5, 3)
>>> result.get()
8

Installing

pip install yapq

Features

  • Executing tasks in thread-based workers

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.