Metadata-Version: 2.1
Name: django-rehive-extras
Version: 1.1.2
Summary: Extras for Django
Home-page: https://github.com/rehive/django-rehive-extras
Author: Rehive
Author-email: info@rehive.com
License: MIT
Download-URL: https://github.com/rehive/django-rehive-extras/archive/1.1.2.zip
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
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
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

<p align="center">
  <img width="64" src="https://avatars2.githubusercontent.com/u/22204821?s=200&v=4" alt="Rehive Logo">
  <h1 align="center">Django Rehive Extras</h1>
  <p align="center">Extra utilities for using Django.</p>
</p>

## Features

- Python >= 3.6
-  Django >= 3.0
- Money model field using decimals.
- Date model with created/updated field.
- State model that stores the previous state of a model instance in memory.
- Cascading archive model class.
- Integrated model class that supports date, state and cascading archives.


## Getting started

1. Install the package:

```sh
pip install django-rehive-extras
```

2. Add "django_rehive_extras" to your INSTALLED_APPS settings like this:

```python
INSTALLED_APPS = [
    ...
    'django_rehive_extras',
]
```


