Is it possible to use Python\'s asyncio on Google Cloud Functions?
asyncio
async def handle_someting(): # do something some = await aiofunc() #
Sure, you just need to run the async functions from your main deployed function (here, you would deploy the test function):
test
import asyncio async def foo(): return 'Asynchronicity!' async def bar(): return await foo() def test(request): return asyncio.run(bar())