Channels
announcements
introduce-yourself
resources
random
plugins-integrations
user-research
questions
questions-so
job-posting
help-
circleci-status
dependencies-releases
Powered by
#questions
Title
# questions
s
Sanjeev
03/27/2023, 4:09 PM
Hi Team , anyone worked on invoking kedro pipeline , asynchrnously from flask api?
j
Juan Luis
03/28/2023, 8:47 AM
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?
Post