Skip to main content

Set of most common utils for django/drf projects

Project description

Django-batteries

This package contains useful utilities for django/drf project

Models

Contains set of abstract models to enforce DRY principle for most common use cases

TimeStampedModel

  • created
  • modified

TimeFramedModel

  • start

  • end

    For time bound entities

DescriptionModel

  • description

TitleModel

  • title

TitleDescriptionModel

  • title
  • description

Fields

Monitor field

A DateTimeField that monitors another field on the same model and sets itself to the current date/time whenever the monitored field changes. use it like this in your models: class MyMode(models.Model):

title = models.Charfield(max_length=50)
title_changed = MonitorField(_('title changed'), monitor='title')

Tests

Project details


Download files

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

Source Distribution

django_batteries-0.0.1.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

django_batteries-0.0.1-py3-none-any.whl (3.7 kB view hashes)

Uploaded 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