I need to use a Python library that handles requests through the API of a web service. This library is an asyncio supported library. So I can't use it in a Django view by following the traditional and appropriate ways..
So what should I do to overcome this issue? I just thought that I can create a .py script and it would handle this library and I would use it in my Django view with os.system('...py') but it just looks awful.
Could you help me to find a way that looks just "normal"?