Async pubsub implementation.
Project description
AioSubPub
Async pub sub implementation.
Inspired by someone else whose name I cannot find anymore. If you see your code (I did some improvements on it I think) please let me know and I am happy to give you credit.
Installation
pip install aiosubpub
Usage
import aiosubpub
import asyncio
loop=asyncio.get_event_loop()
# create a channel
a_channel = aiosubpub.Channel()
# subscribe to the channel using a callback.
def call_back(data):
print(data)
subscription = loop.create_task(a_channel.subscribe(call_back))
# Publish a message.
a_channel.publish("a message")
subscription.un_subscribe()
# Without callback:
subscription = a_channel.get_subscription()
async def _custom_subscriber():
with subscription as sub:
result = await sub.get()
print(result)
a_channel.publish("a message")
result = await _custom_subscriber()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiosubpub-1.0.5.tar.gz
(4.6 kB
view hashes)
Built Distribution
Close
Hashes for aiosubpub-1.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4ed29561d1837c90613cbbd6b4d294301ea3ddf83ce6017f756265366202b6f |
|
MD5 | 669f9eb09c3c6802d8b6dea6377eb892 |
|
BLAKE2b-256 | 5c09ff4278285fae6eae9d10c2b5e62de7e861c26204001702ddc12baab62311 |