Metadata-Version: 2.1
Name: yarqueue
Version: 0.4.0
Summary: Yet Another python queue backed by redis; but modern and compliant
Home-page: https://github.com/clbarnes/yarqueue
Author: Chris L. Barnes
Author-email: barnesc@janelia.hhmi.org
License: MIT license
Description: =======================
        Yet Another Redis Queue
        =======================
        
        .. image:: https://img.shields.io/pypi/v/yarqueue.svg
                :target: https://pypi.python.org/pypi/yarqueue
        
        .. image:: https://img.shields.io/travis/clbarnes/yarqueue.svg
                :target: https://travis-ci.org/clbarnes/yarqueue
        
        .. image:: https://readthedocs.org/projects/yarqueue/badge/?version=latest
                :target: https://yarqueue.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        Yet Another python queue backed by redis; but modern and compliant
        
        * Free software: MIT license
        * Documentation: https://yarqueue.readthedocs.io.
        
        Heavily inspired by hotqueue_.
        
        Features
        --------
        
        * Compatible with the API of `multiprocessing.Queue`_
        * LIFO, FIFO and Double-Ended variants
        
          - Each has a non-joinable and a joinable form (compatible with ``multiprocessing.JoinableQueue``)
        
        * Additional convenience methods:
        
          - ``get_many()``, ``put_many()``, ``clear()`` for all queues
          - ``n_tasks()`` and ``n_in_progress()`` for joinable queues
        
        * Can be used as a context manager
        
          - Deletes the queue on exit
          - For Joinable variants, first waits for all tasks to be done
        
        * Can use custom serializers, or none at all
        
          - By default, uses the highest pickle protocol available, using the pickle5 backport if possible.
        
        * As thread-safe as the `underlying Redis client instance <https://github.com/andymccurdy/redis-py#thread-safety>`_
        
        * Simple queue watchers
        
          - ``yarqwatch``: command-line progress bars for given queues
          - ``yarqserve``: simple REST API and browser page for given queues
        
        Credits
        -------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _hotqueue: https://github.com/richardhenry/hotqueue
        .. _multiprocessing.Queue: https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Queue
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
Keywords: yarqueue queue multiprocessing hotqueue redis redislite
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Provides-Extra: cli
Provides-Extra: redislite
Provides-Extra: all
Provides-Extra: pickle
Provides-Extra: http
