Asynchronous client implementation for communicating with the Prefect REST API.Explore the client by communicating with an in-memory webserver - no setup required:<div class=“termy”>
Copy
$ # start python REPL with native await functionality$ python -m asynciofrom prefect.client.orchestration import get_clientasync with get_client() as client: response = await client.hello() print(response.json())👋