Chas. Wegrzyn
Chas. Wegrzyn
Excuse me? Here is the snippet from the uvicorn site: import asyncioimport uvicorn async def app(scope, receive, send): ... async def main(): config = uvicorn.Config("main:app", port=5000, log_level="info") server = uvicorn.Server(config)...
Okay, I'll try it. C. On Mon, Sep 12, 2022 at 12:34 PM Jarro van Ginkel ***@***.***> wrote: > Not completely sure (and I am on my phone) but I...
That did it! I followed the examples too carefully without reading the API docs. Thanks. C. On Mon, Sep 12, 2022 at 12:40 PM Charles Wegrzyn ***@***.***> wrote: > Okay,...