MicroPie is a small and very fast Python web framework. It is designed with flexability and simplicity in mind. Check out the website or the GitHub project.
from MicroPie import App
class MyApp(App):
async def index(self):
return 'Hello ASGI World!'
app = MyApp() # Run with `uvicorn app:app`
You must log in or register to comment.