Metadata-Version: 2.3
Name: litestar-ormar
Version: 0.0.6
Summary: Ormar integration for Litestar.
License: Apache-2.0
Author: Dominik Kozaczko
Author-email: dominik@kozaczko.info
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Dist: litestar (>=2.15.1,<3.0.0)
Requires-Dist: ormar (>=0.20.2,<0.21.0)
Description-Content-Type: text/markdown

# Litestar-Ormar

[![image](https://img.shields.io/pypi/v/litestar_ormar.svg)](https://pypi.python.org/pypi/litestar_ormar)

[![image](https://img.shields.io/travis/dekoza/litestar_ormar.svg)](https://travis-ci.com/dekoza/litestar_ormar)

[![Documentation Status](https://readthedocs.org/projects/litestar-ormar/badge/?version=latest)](https://litestar-ormar.readthedocs.io/en/latest/?version=latest)

Ormar integration for Litestar.

-   Free software: Apache Software License 2.0
-   Documentation: <https://litestar-ormar.readthedocs.io>.

## Features

-   Provides convenient Repository for Ormar adhering to Litestar\'s
    AbstractRepository.

```python
from litestar_ormar import OrmarRepository

class MyObjectRepository(OrmarRepository):
    model_type = MyObject

```

...and you're done.

## Credits

Created by Dominik Kozaczko

