Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 394 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 394 Bytes

Litestar Piccolo

Installation

pip install litestar-piccolo

or

pip install litestar[piccolo]

Usage

Here is a basic application that demonstrates how to use the plugin.

from __future__ import annotations

from litestar import Litestar

from litestar_piccolo import PiccoloPlugin

piccolo = PiccoloPlugin()
app = Litestar(plugins=[piccolo])