Metadata-Version: 2.1
Name: asyncio-multisubscriber-queue
Version: 0.2.2
Summary: UNKNOWN
Home-page: https://github.com/smithk86/asyncio-multisubscriber-queue
Author: Kyle Smith
Author-email: smithk86@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Framework :: AsyncIO
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown

#  asyncio-multisubscriber-queue

MultisubscriberQueue allows a single producer to provide the same payload to multiple consumers simultaniously. An asyncio.Queue is created for each consumer and each call to MultisubscriberQueue.put() iterates over each asyncio.Queue and puts the payload on each queue.

Please see [example.py](https://github.com/smithk86/asyncio-multisubscriber-queue/blob/master/example.py) for a simple example.

