Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/litestar-org/litestar-piccolo

Litestar plugin for the Piccolo ORM
https://github.com/litestar-org/litestar-piccolo

Last synced: about 1 month ago
JSON representation

Litestar plugin for the Piccolo ORM

Awesome Lists containing this project

README

        

# Litestar Piccolo

## Installation

```shell
pip install litestar-piccolo
```

or

```shell
pip install litestar[piccolo]
```

## Usage

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

```python
from __future__ import annotations

from litestar import Litestar

from litestar_piccolo import PiccoloPlugin

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

```