Tina4Python

The Intelligent Native Application 4ramework

Website Dev Admin Gallery GitHub Star
Server running Port 8080 v3.10.69

Getting Started

# app.py
from tina4_python.core import run
from tina4_python.core.router import get

@get("/hello")
async def hello(request, response):
    return response({"message": "Hello World!"})

run()  # starts on port 7146