Is it possible to use Python's asyncio
on Google Cloud Functions?
async def handle_someting():
# do something
some = await aiofunc()
# Do I need the code below?
loop = asyncio.get_event_loop()
loop.run_until_complete(handle_someting())
loop.close()