What's Changed
- Add run instructions to quickstart docs by @Isaac-Flath in #45
- Create applications.Air wrapper for fastapi.FastAPI by @pydanny in #46
Minimal apps now look like this:
import air
app = air.Air()
@app.get("/")
async def index():
return air.Html(air.H1("Hello, world!", style="color: blue;"))New Contributors
- @Isaac-Flath made their first contribution in #45
Full Changelog: v0.5.0...v0.6.0