+
Skip to content
/ air Public

The new web framework that breathes fresh air into Python web development. Built with FastAPI, Starlette, and Pydantic.

Notifications You must be signed in to change notification settings

feldroy/air

Repository files navigation

Air: The new web framework that breathes fresh air into Python web development. Built with FastAPI, Starlette, and Pydantic.

Air: The new web framework that breathes fresh air into Python web development. Built with FastAPI, Starlette, and Pydantic.

Test Package version Supported Python versions

Caution

Air is currently in an alpha state. While breaking changes are becoming less common, nevertheless, anything and everything could change.

We ask that you hold off on contributing mostly for now, to give us space to focus on getting our ideas down. If you happen to fix a bug, though, little PRs for that are welcome.

Why use Air?

  • Powered by FastAPI - Designed to work with FastAPI so you can server your API and web pages from one app
  • Fast to code - Tons of intuitive shortcuts and optimizations designed to expedite coding HTML with FastAPI
  • Air Tags - Easy to write and performant HTML content generation using Python classes to render HTML
  • Jinja Friendly - No need to write response_class=HtmlResponse and templates.TemplateResponse for every HTML view
  • Mix Jinja and Air Tags - Jinja and Air Tags both are first class citizens. Use either or both in the same view!
  • HTMX friendly - We love HTMX and provide utilities to use it with Air
  • HTML form validation powered by pydantic - We love using pydantic to validate incoming data. Air Forms provide two ways to use pydantic with HTML forms (dependency injection or from within views)
  • Easy to learn yet well documented - Hopefully Air is so intuitive and well-typed you'll barely need to use the documentation. In case you do need to look something up we're taking our experience writing technical books and using it to make documentation worth boasting about

Documentation: https://feldroy.github.io/air/

Source Code: https://github.com/feldroy/air

Installation

Install using pip install -U air or conda install air -c conda-forge.

For uv users, just create a virtualenv and install the air package, like:

uv venv
source .venv/bin/activate
uv add air
uv add fastapi[standard]

A Simple Example

Create a main.py with:

import air

app = air.Air()


@app.get("/")
async def index():
    return air.Html(air.H1("Hello, world!", style="color: blue;"))

Note

This example uses Air Tags, which are Python classes that render as HTML. Air Tags are typed and documented, designed to work well with any code completion tool.

Combining FastAPI and Air

Air is just a layer over FastAPI. So it is trivial to combine sophisticated HTML pages and a REST API into one app.

import air
from fastapi import FastAPI

app = air.Air()
api = FastAPI()

@app.get("/")
def landing_page():
    return air.Html(
        air.Head(air.Title("Awesome SaaS")),
        air.Body(
            air.H1("Awesome SaaS"),
            air.P(air.A("API Docs", target="_blank", href="/api/docs")),
        ),
    )


@api.get("/")
def api_root():
    return {"message": "Awesome SaaS is powered by FastAPI"}

# Combining the Air and and FastAPI apps into one
app.mount("/api", api)

Combining FastAPI and Air using Jinja2

Want to use Jinja2 instead of Air Tags? We've got you covered.

import air
from fastapi import FastAPI

app = air.Air()
api = FastAPI()

# Air's Jinja2Renderer is a shortcut for using Jinja templates
jinja = air.Jinja2Renderer(directory="templates")

@app.get("/")
def index(request: Request):
    return jinja(request, name="home.html")

@api.get("/")
def api_root():
    return {"message": "Awesome SaaS is powered by FastAPI"}

# Combining the Air and and FastAPI apps into one
app.mount("/api", api)    

Don't forget the Jinja template!

<!doctype html
<html>
    <head>
        <title>Awesome SaaS</title>
    </head>
    <body>
        <h1>Awesome SaaS</h1>
        <p>
            <a target="_blank" href="/api/docs">API Docs</a>
        </p>
    </body>
</html>

Note

Using Jinja with Air is easier than with FastAPI. That's because as much as we enjoy Air Tags, we also love Jinja!

Contributing

For guidance on setting up a development environment and how to make a contribution to Air, see Contributing to Air.

About

The new web framework that breathes fresh air into Python web development. Built with FastAPI, Starlette, and Pydantic.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 6

点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载