awesome-starlite icon indicating copy to clipboard operation
awesome-starlite copied to clipboard

Curated List of Resources for Starlite : A high performance ,secure, well architected , highly productive python async web framework

Awesome-Starlite

Curated List of Starlite Resources: A high performance ,secure, well architected , highly productive python async web framework

Starlite

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

Installation

pip install starlite

Quick Start

from starlite import Starlite, get


@get("/")
def hello_world() -> dict[str, str]:
    """Keeping the tradition alive with hello world."""
    return {"hello": "world"}


Starter Templates

Easy Starters

Full Stack

Minimal

Examples

User management and Auth

  • starlite-users

    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

Utilities