Metadata-Version: 2.1
Name: django-postgres-product
Version: 1.0.2
Summary: A product aggregation function to a postgres database and makes it available with django
Home-page: https://github.com/awmath/django-postgres-product
Author: Axel Wegener
Author-email: development@sparse-space.de
License: MIT
Download-URL: https://github.com/awmath/django-postgres-product
Keywords: django
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE

![CI/CD Workflow](https://github.com/awmath/django-postgres-product/workflows/test%20and%20packaging/badge.svg)
[![CodeFactor](https://www.codefactor.io/repository/github/awmath/django-postgres-product/badge)](https://www.codefactor.io/repository/github/awmath/django-postgres-product)
[![codecov](https://codecov.io/gh/awmath/django-postgres-product/branch/master/graph/badge.svg)](https://codecov.io/gh/awmath/django-postgres-product)

# django-postgres-product

Adds a product aggregation function to a postgres database and makes it available with django

## Usage

Add the app to your list of installed apps

```
INSTALLED_APPS = [
    ...,
    'postgres_product',
    ...
]
```

Import the product aggregation function

```
from postgres_product import Product
```

Use the aggregation as described in the [Django Documentation](https://github.com/awmath/django-postgres-product/workflows/Python%20package/badge.svg)

## Roadmap

- create python packaging


