gazorby / awesome-starlite

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Minimal CookieCutter

Bare minimal Coockie Cutter

Starlite Template with Docker Builtin

starlite-pg-redis-docker

This is an example Starlite project using SQLAlchemy + Alembic + postgresql, Redis, SAQ and Docker.

starlite-hello-world

Minimum starter template for starlite.

starlite-fullstack

Full stack both frontend and backend . Frontend in Vue .

Examples

Starlite-Tile38

Strlite-Sqlalchemy

User Auth and CRUD

CRUD

Usr Auth and Verification

About

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

License:MIT License