Catching up with #Python asyncio, coming from #Twisted.
In Twisted, I was using LineOnlyReceiver to implement a protocol. What would be the right way to do the same with asyncio?
I could subclass asyncio.Protocol and assemble the lines myself. Or I could use Streams which seem to handle lines natively, but can't be easily subclassed when I need slightly different parsers?
And then there is StreamReaderProtocol, but that's undocumented and seems private?!







