Skip to main content

Django reusable app with generic and essencial resources.

Project description

Simple project with base common resources for almost any Django project.

Installation

The installation is performed by using pip:

pip install django-essence

To enable django-essence in a Django project it’s needed to add it to INSTALLED_APPS in the project settings file:

INSTALLED_APPS = [
    ...
    'django_essence',
    ...
]

Resources

The current implementation of django-essence offers only common base abstract models listed below:

  • TimestampedModel: model with attributes (fields) useful for audit purposes. Fields:

    • created_at

    • updated_at

  • EssenceModel: model inherited from TimestampedModel with an UUIDField. Fields:

    • id

    • created_at

    • updated_at

  • EssencePersistentModel: model inherited from EssenceModel with “soft delete” feature. Fields:

    • id

    • created_at

    • updated_at

    • deleted

  • EssenceSlugModel: model inherited from EssenceModel with a enhanced slug field. Fields:

    • id

    • created_at

    • updated_at

    • slug

All models are available importing from:

from django_essence.models import *

Running tests (development)

First install development dependencies with:

make install

Than run tests with:

pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_essence-0.1.0-py2.py3-none-any.whl (3.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page