Repository URL to install this package:
Version:
7.2.1 ▾
|
"""Class that implements a Trio-style channel object that takes data from a
ReadableConnection_ and yields parsed message objects.
"""
from .encoder import EncoderChannel
from .lossy import create_lossy_channel
from .message import MessageChannel
from .parser import ParserChannel
__all__ = ("ParserChannel", "EncoderChannel", "MessageChannel", "create_lossy_channel")