Skip to content

TimmieDevelops/Python-Tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Python-Tutorial

Make Sure use this command to install Sanic

pip install Sanic

Code Down Here!

from sanic.response import text

app = Sanic("MyHelloWorldApp")

@app.get("/")
async def helloworld(request):
    return text("Hello, world.")


if name == "_main":
    app.run(host="localhost", port=69)```

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published