Joël Luijmes
run_until_complete
__aenter__
Kyle Moon-Wright
class AsyncTask(Task): def run(self): return asyncio.run(self._bootstrap_run_async()) @abc.abstractclassmethod async def run_async(self): raise NotImplementedError('Abstract method') async def _bootstrap_run_async(self): if self.__aenter__: await self.__aenter__() hit_except = False try: return await self.run_async() except Exception: hit_except = True if not self.__aexit__ or not await self.__aexit__(*sys.exc_info()): raise finally: if self.__aexit__ and not hit_except: await self.__aexit__(None, None, None)
Ernest
Bring your towel and join one of the fastest growing data communities. Welcome to our second-generation open source orchestration platform, a completely rethought approach to dataflow automation.