Curated List of Starlite Resources: A high performance ,secure, well architected , highly productive python async web framework
Starlite is a powerful, performant, flexible and opinionated ASGI framework, offering first class typing support and a full Pydantic integration.
Check out the documentation 📚.## Starlite
pip install starlite
from starlite import Starlite, get
@get("/")
def hello_world() -> dict[str, str]:
"""Keeping the tradition alive with hello world."""
return {"hello": "world"}
-
starlite-halfstack-cookiecutter Simpilfied version of official pq starter starlite-api/starlite-pg-redis-docker , by using https://github.com/topsport-com-au/starlite-saqlalchemy lib
-
JeromeK13/starlite-minimal-starter
Bare minimal Cookie Cutter
-
starlite-fullstack Full stack backend and Vue frontend .
-
starlite-api/starlite-pg-redis-docker
Full featured Starlite project using SQLAlchemy + Alembic + postgresql, Redis, SAQ and Docker.
-
Fullstack starter template for starlite with Piccolo ORM.
-
starlite-api/starlite-hello-world
Minimal starter template for starlite.
-
lesnik512/starlite-sqlalchemy-template
Docker ready Starlite template
-
GPS/GIS exmaple using route38 and starlite
-
User and Auth features for starlite with builtin support for :
- Session, JWT and JWTCookie , Role based Guards
- Routes For Authentication,Registration,Verification,Password reset, User CRUD , Role CRUD, Assignment/revocation of roles to/from users
-
Starlite API boilerplate abstraction and utilities.