Metadata-Version: 1.0
Name: django-analog
Version: 2.0.0
Summary: Simple per-model log models for Django apps
Home-page: https://github.com/andersinno/django-analog
Author: Anders Innovations
Author-email: support@anders.fi
License: MIT
Description: Django-Analog
        =============
        
        Simple per-model log models for Django apps.
        
        |Build Status| |Coverage Status| |Documentation Status|
        
        Compatibility
        -------------
        
        * Django 2.2+, 3.0+
        * Python 3.6+
        
        Basic Usage
        -----------
        
        .. code:: python
        
            from django.db import models
            from analog import define_log_model
        
            class MyModel(models.Model):
                value = models.IntegerField(default=0)
        
            MyModelLogEntry = define_log_model(MyModel)
        
            m = MyModel.objects.create(value=42)
            m.add_log_entry('Something occurred')
            assert m.log_entries.last().message == 'Something occurred'
        
        Development
        -----------
        
        ::
        
            pip install -e .
            pip install -r requirements-dev.txt
        
        Tests
        ~~~~~
        
        ::
        
            py.test
        
        Documentation
        ~~~~~~~~~~~~~
        
        ::
        
            sphinx-build -b html docs docs/_build
        
        .. |Build Status|
           image:: https://github.com/andersinno/django-analog/workflows/Test/badge.svg
           :target: https://github.com/andersinno/django-analog/actions
        .. |Coverage Status|
           image:: https://codecov.io/gh/andersinno/django-analog/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/andersinno/django-analog
        .. |Documentation Status|
           image:: https://readthedocs.org/projects/django-analog/badge/?version=latest
           :target: http://django-analog.readthedocs.org/en/latest/?badge=latest
        
Keywords: django,logging
Platform: any
