Polyconseil / aioamqp

AMQP implementation using asyncio
Other
280 stars 88 forks source link

Question: how does aioamqp serialize outgoing messages? #170

Closed alonisser closed 6 years ago

alonisser commented 6 years ago

does it implement a json serializer? Or should I implement it? Same for incoming messages

dzen commented 6 years ago

hello @alonisser ;

Aioamqp is meant to be a lowlevel library, and only implement the AMQP protocol. It only sends bytes over the wire, the serialization is up to you.

alonisser commented 6 years ago

Is there a higher level wrapper you know of?