APIToolbox
Full-stack, asynchronous Python3 framework.
Design goals
- Fast, full-service framework
- Modular approach that does not force any design decisions
Getting started
from fastapi import FastAPI, Request
from apitoolbox import crud, db_registry
from apitoolbox.middleware import SessionMiddleware
from apitoolbox.models import BASE, Session, User
DATABASE_URL = "sqlite:///sqlite.db?check_same_thread=False"
class MyUser(User):
pass
app = FastAPI()
app.add_middleware(SessionMiddleware, bind=DATABASE_URL)
bind = db_registry.get_or_create(DATABASE_URL)
BASE.metadata.create_all(bind=bind)
session = Session()
for name in ["alice", "bob", "charlie", "david"]:
user = MyUser.get_by_username(session, name)
if user is None:
user = MyUser(username=name)
session.add(user)
session.commit()
@app.get("/users")
async def list_users(
request: Request
):
return await crud.list_instances(MyUser, request.state.session)
Assuming the above code is stored in the file main.py
, then run it via:
uvicorn main:app --reload
Call the endpoint:
curl -s localhost:8000/users | jq .
The output should contain a list of 4 users,
each with the attributes id
, username
, updated_at
and created_at
.
NOTE: Sqlite3 really doesn't like multiple threads using the same connection (hence
check_same_thread=False).
In this case, it's safe but in production a different database should be used.