Skip to main content

A simple Django app to record data changer.

Project description

=====
datalogger
=====

Datalogger is a simple Django app to record data changes.


Quick start
-----------

1. Add `django-datalogger` to your INSTALLED_APPS setting like this::

INSTALLED_APPS = [
...
'django-datalogger',
]

2. Add `datalogger.middleware.common.DataUpadataDeleteMiddleware` to your MIDDLEWARE_CLASSES setting like this::

MIDDLEWARE_CLASSES = (
...
'datalogger.middleware.common.DataUpadataDeleteMiddleware',
)

3. Run `python manage.py makemigrations` and `python manage.py migrate` to create the `django-datalogger` models.

4. Start your models inherit `LogOnUpdateDeleteModel` abstract model like this:

class TestA(LogOnUpdateDeleteModel):
name = models.CharField( max_length=128, blank=True)
memo = models.TextField()
create_at = models.DateTimeField(blank=True, auto_now_add=True)
update_at = models.DateTimeField(blank=True, auto_now=True)

5. Change the test model data by the model api.

6. You will find the data change log in datalogger models.You can visit http://127.0.0.1:8000/admin/
to see these changer.

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-datalogger-0.1.zip (6.6 kB view hashes)

Uploaded Source

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