papermill
papermill copied to clipboard
Add async function calls
Since nbclient support async requests, we should support async calls for the engine executions to enable an async papermill call from python code paths. This would necessitate we have an async and a sync version of functions since not all engines will support both patterns. Here's an example of function wrappers that can help with wrapping async calls to be synchronous: https://github.com/jupyter/nbclient/blob/master/nbclient/util.py#L56-L93.
Hello @MSeal! Any news about async support for papermill?