Using Async CommandsΒΆ
As of pyApp 4.3 command handlers can be defined as Async functions and pyApp will take care of setting up an event loop to call the handler.
app = CliApplication()
@app.command
async def my_command(args):
pass
This feature is also available to the default handler.