I would like to add a REST API to my application. I already have some (non-REST) UNIX socket listeners using Python's asyncio which I would like to keep. Most frameworks I have found for implementing REST APIs seem to require starting their own event loop (which conflicts with asyncio's event loop).
What is the best approach/library for combining REST/UNIX socket listeners without having to roll my own implementation from scratch?
Thanks in advance!!