Hi Team , anyone worked on invoking kedro pipeline...
# questions
s
Hi Team , anyone worked on invoking kedro pipeline , asynchrnously from flask api?
j
hi @Sanjeev! to my knowledge there are no natively asynchronous ways of running Kedro, but you have several tools in Python to run synchronous functions from asynchronous ones, like `asyncio.run_in_executor`: https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.loop.run_in_executor does this help?