starlite 1.51.16


pip install starlite

  Latest version

Released: May 06, 2024


Meta
Author: Janek NouvertnΓ©
Maintainer: Litestar Developers
Requires Python: >=3.8,<4.0

Classifiers

Development Status
  • 5 - Production/Stable

Environment
  • Web Environment

License
  • OSI Approved :: MIT License

Natural Language
  • English

Operating System
  • OS Independent

Programming Language
  • Python
  • Python :: 3
  • Python :: 3.8
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12

Topic
  • Internet :: WWW/HTTP
  • Software Development
  • Software Development :: Libraries

Typing
  • Typed
Starlite logo

PyPI - License PyPI - Python Version

All Contributors

Reddit Discord Matrix Blog

Medium

Starlite β†’ Litestar

Starlite has been renamed to Litestar

Starlite is a powerful, performant, flexible and opinionated ASGI framework, offering first class typing support and a full Pydantic integration.

Check out the documentation πŸ“š.

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"}


app = Starlite(route_handlers=[hello_world])

Core Features

Example Applications

  • starlite-pg-redis-docker: In addition to Starlite, this demonstrates a pattern of application modularity, SQLAlchemy 2.0 ORM, Redis cache connectivity, and more. Like all Starlite projects, this application is open to contributions, big and small.
  • starlite-hello-world: A bare-minimum application setup. Great for testing and POC work.

The name Starlite and relation to Starlette

Starlite was originally built using the Starlette ASGI toolkit. The name Starlite was meant to show this relation. But, over time Starlite grew in capabilities and complexity, and eventually we no longer needed to depend on Starlette. From version 1.39.0 onward starlette was removed as a dependency of Starlite, and the name now carries this piece of history with it.

Performance

Starlite is fast. It is on par with, or significantly faster than comparable ASGI frameworks.

You can see and run the benchmarks here, or read more about it here in our documentation.

JSON Benchmarks

JSON benchmarks

Plaintext Benchmarks

Plaintext benchmarks

Features

Class Based Controllers

While supporting function based route handlers, Starlite also supports and promotes python OOP using class based controllers:

from typing import List, Optional

from pydantic import UUID4
from starlite import Controller, Partial, get, post, put, patch, delete
from datetime import datetime

from my_app.models import User


class UserController(Controller):
    path = "/users"

    @post()
    async def create_user(self, data: User) -> User:
        ...

    @get()
    async def list_users(self) -> List[User]:
        ...

    @get(path="/{date:int}")
    async def list_new_users(self, date: datetime) -> List[User]:
        ...

    @patch(path="/{user_id:uuid}")
    async def partial_update_user(self, user_id: UUID4, data: Partial[User]) -> User:
        ...

    @put(path="/{user_id:uuid}")
    async def update_user(self, user_id: UUID4, data: User) -> User:
        ...

    @get(path="/{user_name:str}")
    async def get_user_by_name(self, user_name: str) -> Optional[User]:
        ...

    @get(path="/{user_id:uuid}")
    async def get_user(self, user_id: UUID4) -> User:
        ...

    @delete(path="/{user_id:uuid}")
    async def delete_user(self, user_id: UUID4) -> None:
        ...

Data Parsing, Type Hints and Pydantic

One key difference between Starlite and Starlette/FastAPI is in parsing of form data and query parameters- Starlite supports mixed form data and has faster and better query parameter parsing.

Starlite is rigorously typed, and it enforces typing. For example, if you forget to type a return value for a route handler, an exception will be raised. The reason for this is that Starlite uses typing data to generate OpenAPI specs, as well as to validate and parse data. Thus typing is absolutely essential to the framework.

Furthermore, Starlite allows extending its support using plugins.

Plugin System, ORM support and DTOs

Starlite has a plugin system that allows the user to extend serialization/deserialization, OpenAPI generation and other features. It ships with a builtin plugin for SQL Alchemy, which allows the user to use SQLAlchemy declarative classes "natively", i.e. as type parameters that will be serialized/deserialized and to return them as values from route handlers.

Starlite also supports the programmatic creation of DTOs with a DTOFactory class, which also supports the use of plugins.

OpenAPI

Starlite has custom logic to generate OpenAPI 3.1.0 schema, the latest version. The schema generated by Starlite is significantly more complete and more correct than those generated by FastAPI, and they include optional generation of examples using the pydantic-factories library.

ReDoc, Swagger-UI and Stoplight Elements API Documentation

Starlite serves the documentation from the generated OpenAPI schema with:

All these are available and enabled by default.

Dependency Injection

Starlite has a simple but powerful DI system inspired by pytest. You can define named dependencies - sync or async - at different levels of the application, and then selective use or overwrite them.

from starlite import Starlite, Provide, get


async def my_dependency() -> str: ...


@get("/")
async def index(injected: str) -> str:
    return injected


app = Starlite([index], dependencies={"injected": Provide(my_dependency)})

Middleware

Starlite supports typical ASGI middleware and ships with middlewares to handle things such as

  • CORS
  • CSRF
  • Rate limiting
  • GZip and Brotli compression
  • Client- and server-side sessions

Route Guards

Starlite has an authorization mechanism called guards, which allows the user to define guard functions at different level of the application (app, router, controller etc.) and validate the request before hitting the route handler function.

from starlite import (
    Starlite,
    get,
    ASGIConnection,
    NotAuthorizedException,
    BaseRouteHandler,
)


async def is_authorized(connection: ASGIConnection, handler: BaseRouteHandler) -> None:
    # validate authorization
    # if not authorized, raise NotAuthorizedException
    raise NotAuthorizedException()


@get("/", guards=[is_authorized])
async def index() -> None: ...


app = Starlite([index])

Request Life Cycle Hooks

Starlite supports request life cycle hooks, similarly to Flask - i.e. before_request and after_request

Contributing

Starlite is open to contributions big and small. You can always join our discord server or join our Matrix space to discuss contributions and project maintenance. For guidelines on how to contribute, please see the contribution guide.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Na'aman Hirschfeld
Na'aman Hirschfeld

🚧 πŸ’» πŸ“– ⚠️ πŸ€” πŸ’‘ πŸ›
Peter Schutt
Peter Schutt

🚧 πŸ’» πŸ“– ⚠️ πŸ€” πŸ’‘ πŸ›
Ashwin Vinod
Ashwin Vinod

πŸ’» πŸ“–
Damian
Damian

πŸ“–
Vincent Sarago
Vincent Sarago

πŸ’»
Jonas KrΓΌger Svensson
Jonas KrΓΌger Svensson

πŸ“¦
Sondre LillebΓΈ Gundersen
Sondre LillebΓΈ Gundersen

πŸ“¦
Lev
Lev

πŸ’» πŸ€”
Tim Wedde
Tim Wedde

πŸ’»
Tory Clasen
Tory Clasen

πŸ’»
Arseny Boykov
Arseny Boykov

πŸ’» πŸ€”
Jacob Rodgers
Jacob Rodgers

πŸ’‘
Dane Solberg
Dane Solberg

πŸ’»
madlad33
madlad33

πŸ’»
Matthew Aylward
Matthew Aylward

πŸ’»
Jan Klima
Jan Klima

πŸ’»
C2D
C2D

⚠️
to-ph
to-ph

πŸ’»
imbev
imbev

πŸ“–
cătălin
cătălin

πŸ’»
Seon82
Seon82

πŸ“–
Slava
Slava

πŸ’»
Harry
Harry

πŸ’» πŸ“–
Cody Fincher
Cody Fincher

🚧 πŸ’» πŸ“– ⚠️ πŸ€” πŸ’‘ πŸ›
Christian Clauss
Christian Clauss

πŸ“–
josepdaniel
josepdaniel

πŸ’»
devtud
devtud

πŸ›
Nicholas Ramos
Nicholas Ramos

πŸ’»
seladb
seladb

πŸ“– πŸ’»
Simon WienhΓΆfer
Simon WienhΓΆfer

πŸ’»
MobiusXS
MobiusXS

πŸ’»
Aidan Simard
Aidan Simard

πŸ“–
wweber
wweber

πŸ’»
Samuel Colvin
Samuel Colvin

πŸ’»
Mateusz MikoΕ‚ajczyk
Mateusz MikoΕ‚ajczyk

πŸ’»
Alex
Alex

πŸ’»
Odiseo
Odiseo

πŸ“–
Javier  Pinilla
Javier Pinilla

πŸ’»
Chaoying
Chaoying

πŸ“–
infohash
infohash

πŸ’»
John Ingles
John Ingles

πŸ’»
Eugene
Eugene

⚠️ πŸ’»
Jon Daly
Jon Daly

πŸ“– πŸ’»
Harshal Laheri
Harshal Laheri

πŸ’» πŸ“–
TΓ©va KRIEF
TΓ©va KRIEF

πŸ’»
Konstantin Mikhailov
Konstantin Mikhailov

🚧 πŸ’» πŸ“– ⚠️ πŸ€” πŸ’‘ πŸ›
Mitchell Henry
Mitchell Henry

πŸ“–
chbndrhnns
chbndrhnns

πŸ“–
nielsvanhooy
nielsvanhooy

πŸ’»
provinzkraut
provinzkraut

🚧 πŸ’» πŸ“– ⚠️ πŸ€” πŸ’‘ πŸ›
Joshua Bronson
Joshua Bronson

πŸ“–
Roman Reznikov
Roman Reznikov

πŸ“–
mookrs
mookrs

πŸ“–
Mike DePalatis
Mike DePalatis

πŸ“–
Carlos Alberto PΓ©rez-Molano
Carlos Alberto PΓ©rez-Molano

πŸ“–
ThinksFast
ThinksFast

⚠️ πŸ“–
Christopher Krause
Christopher Krause

πŸ’»
Kyle Smith
Kyle Smith

πŸ’» πŸ“–
Scott Bradley
Scott Bradley

πŸ›
Srikanth Chekuri
Srikanth Chekuri

⚠️ πŸ“–
Michael Bosch
Michael Bosch

πŸ“–
sssssss340
sssssss340

πŸ›
ste-pool
ste-pool

πŸ’»
Alc-Alc
Alc-Alc

πŸ“–
asomethings
asomethings

πŸ’»
Garry Bullock
Garry Bullock

πŸ“–
Niclas Haderer
Niclas Haderer

πŸ’»
Diego Alvarez
Diego Alvarez

πŸ“– πŸ’»
Jason Nance
Jason Nance

πŸ“–
Igor Kapadze
Igor Kapadze

πŸ“–
Somraj Saha
Somraj Saha

πŸ“–
Magnús Ágúst Skúlason
Magnús Ágúst Skúlason

πŸ’» πŸ“–
Alessio Parma
Alessio Parma

πŸ“–
Peter Brunner
Peter Brunner

πŸ’»
Jacob Coffee
Jacob Coffee

πŸ“– πŸ’» ⚠️
Gamazic
Gamazic

πŸ’»
Kareem Mahlees
Kareem Mahlees

πŸ’»
Abdulhaq Emhemmed
Abdulhaq Emhemmed

πŸ’»

This project follows the all-contributors specification. Contributions of any kind welcome!

2.0.0a2 Mar 25, 2023
2.0.0a1 Mar 04, 2023
1.51.16 May 06, 2024
1.51.15 May 05, 2024
1.51.14 Aug 04, 2023
1.51.13 Jul 17, 2023
1.51.12 May 02, 2023
1.51.11 Apr 28, 2023
1.51.10 Apr 12, 2023
1.51.9 Mar 30, 2023
1.51.8 Mar 30, 2023
1.51.7 Mar 13, 2023
1.51.6 Mar 01, 2023
1.51.5 Feb 21, 2023
1.51.4 Feb 17, 2023
1.51.3 Feb 16, 2023
1.51.2 Feb 15, 2023
1.51.1 Feb 11, 2023
1.51.0 Feb 04, 2023
1.50.2 Jan 26, 2023
1.50.1 Jan 22, 2023
1.50.0 Jan 22, 2023
1.49.0 Jan 15, 2023
1.48.1 Jan 03, 2023
1.48.0 Dec 29, 2022
1.47.0 Dec 26, 2022
1.46.0 Dec 23, 2022
1.45.1 Dec 13, 2022
1.45.0 Dec 11, 2022
1.44.0 Dec 05, 2022
1.43.1 Nov 30, 2022
1.43.0 Nov 29, 2022
1.42.0 Nov 26, 2022
1.41.0 Nov 23, 2022
1.40.1 Nov 21, 2022
1.40.0 Nov 20, 2022
1.39.0 Nov 12, 2022
1.38.0 Nov 07, 2022
1.37.0 Nov 05, 2022
1.36.0 Nov 04, 2022
1.35.1 Oct 30, 2022
1.35.0 Oct 29, 2022
1.34.0 Oct 27, 2022
1.33.0 Oct 26, 2022
1.32.0 Oct 24, 2022
1.31.0 Oct 23, 2022
1.30.0 Oct 21, 2022
1.29.0 Oct 18, 2022
1.28.1 Oct 16, 2022
1.28.0 Oct 16, 2022
1.27.0 Oct 12, 2022
1.26.1 Oct 10, 2022
1.26.0 Oct 09, 2022
1.25.0 Oct 06, 2022
1.24.0 Oct 03, 2022
1.23.1 Sep 29, 2022
1.23.0 Sep 28, 2022
1.21.2 Sep 25, 2022
1.21.1 Sep 24, 2022
1.21.0 Sep 23, 2022
1.20.0 Sep 17, 2022
1.19.0 Sep 15, 2022
1.18.1 Sep 14, 2022
1.18.0 Sep 10, 2022
1.17.2 Sep 10, 2022
1.17.1 Sep 04, 2022
1.17.0 Sep 03, 2022
1.16.2 Sep 02, 2022
1.16.1 Sep 01, 2022
1.16.0 Aug 31, 2022
1.15.0 Aug 29, 2022
1.14.2 Aug 28, 2022
1.14.1 Aug 26, 2022
1.14.0 Aug 23, 2022
1.13.1 Aug 22, 2022
1.13.0 Aug 21, 2022
1.12.0 Aug 19, 2022
1.11.1 Aug 14, 2022
1.11.0 Aug 13, 2022
1.10.1 Aug 12, 2022
1.10.0 Aug 11, 2022
1.9.1 Aug 09, 2022
1.9.0 Aug 09, 2022
1.8.1 Aug 05, 2022
1.8.0 Aug 04, 2022
1.7.3 Aug 02, 2022
1.7.2 Jul 24, 2022
1.7.1 Jul 23, 2022
1.7.0 Jul 21, 2022
1.6.2 Jul 18, 2022
1.6.1 Jul 15, 2022
1.6.0 Jul 13, 2022
1.5.4 Jul 10, 2022
1.5.3 Jul 07, 2022
1.5.2 Jul 05, 2022
1.5.1 Jul 04, 2022
1.5.0 Jun 30, 2022
1.4.2 Jun 23, 2022
1.4.1 Jun 21, 2022
1.4.0 Jun 14, 2022
1.3.9 Jun 03, 2022
1.3.8 Jun 02, 2022
1.3.7 May 29, 2022
1.3.6 May 29, 2022
1.3.5 May 29, 2022
1.3.4 May 25, 2022
1.3.3 May 13, 2022
1.3.2 May 08, 2022
1.3.1 May 07, 2022
1.3.0 Apr 25, 2022
1.2.5 Apr 15, 2022
1.2.4 Mar 12, 2022
1.2.3 Feb 21, 2022
1.2.2 Feb 20, 2022
1.2.0 Feb 16, 2022
1.1.1 Feb 15, 2022
1.1.0 Feb 07, 2022
1.0.5 Feb 06, 2022
1.0.4 Feb 05, 2022
1.0.3 Feb 04, 2022
1.0.2 Feb 02, 2022
1.0.1 Jan 30, 2022
1.0.0 Jan 29, 2022
0.7.2 Jan 27, 2022
0.7.1 Jan 24, 2022
0.7.0 Jan 23, 2022
0.6.0 Jan 21, 2022
0.5.0 Jan 19, 2022
0.4.3 Jan 18, 2022
0.4.2 Jan 18, 2022
0.4.1 Jan 17, 2022
0.4.0 Jan 16, 2022
0.3.0 Jan 11, 2022
0.2.1 Jan 08, 2022
0.2.0 Jan 08, 2022
0.1.6 Jan 07, 2022
0.1.5 Jan 07, 2022
0.1.4 Jan 07, 2022
0.1.3 Jan 03, 2022
0.1.2 Jan 01, 2022
0.1.1 Dec 31, 2021
0.1.0 Dec 30, 2021
0.1.0b1 Dec 28, 2021
0.0.1a0 Dec 06, 2021

Wheel compatibility matrix

Platform Python 3
any

Files in release