Skip to content

Instantly share code, notes, and snippets.

View A5rocks's full-sized avatar

EXPLOSION A5rocks

View GitHub Profile
@A5rocks
A5rocks / main.py
Last active August 24, 2020 02:27
Dispatch with Trio
# pretty basic backpressured pubsub
import trio
import typing
class PubSub:
topics_to_channels: typing.MutableMapping[
str,
typing.List[trio.MemorySendChannel]
]