Metadata-Version: 2.1
Name: aioworkers-orm
Version: 0.1.0
Summary: Module to work with orm
Home-page: https://github.com/aioworkers/aioworkers-orm
License: Apache Software License 2.0
Author: Alexander Bogushov
Author-email: abogushov@gmail.com
Requires-Python: >=3.6.1,<4.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: aioworkers-databases (>=0.1.1,<0.2.0)
Requires-Dist: orm (>=0.1.5,<0.2.0)
Project-URL: Repository, https://github.com/aioworkers/aioworkers-orm
Description-Content-Type: text/markdown

# aioworkers-orm

[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/aioworkers/aioworkers-orm/CI)](https://github.com/aioworkers/aioworkers-orm/actions?query=workflow%3ACI)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/aioworkers-orm)](https://pypi.org/project/aioworkers-orm)
[![PyPI](https://img.shields.io/pypi/v/aioworkers-orm)](https://pypi.org/project/aioworkers-orm)

An aioworkers plugin for [orm](https://github.com/encode/orm)
to add `orm.Model` available via `aioworkers.core.context.Context`.

Features:
- Attach model by class reference.
- Create model by specification.

## Development

Install dev requirements:

```shell
poetry install
```

Run tests:

```shell
pytest
```

