Skip to content

Latest commit

 

History

History
88 lines (48 loc) · 2.67 KB

README.md

File metadata and controls

88 lines (48 loc) · 2.67 KB

Awesome-Starlite

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

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