I want to offer an asynchronous http server to clients, and use asynchronous pub-sub on an internal network of peers to which those clients connect.
It looks like the best libraries for this, respectively, are aiohttp and aiozmq:
import aiohttp
import aiozmq
If I do the above, am I already doing it wrong?
It is like using different asynchronous frameworks at once...