django-hidden-models 0.1.0

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangohiddenmodels 0.1.0

Simply hiding a useless data from query results.
Status: developing

Example
# imports
from hidden_models.models import VisibleModel
from django.db import models

# Models
class Article(VisibleModel):
name = models.CharField(max_length=100)


# Example of use

>>> Article.objects.create(name='article1')
>>> Article.objects.create(name='article2')

>>> Article.objects.all() # Queryset [<Article: (1)>, <Article: (2)>]

# This article will be hided, but not deleted from the database
>>> Article.objects.filter(name='article1').hide()

>>> Article.objects.all() # Queryset [<Article: (2)>]


Installation
Installing from pypi (using pip).
pip install django-hidden-models
Add hidden_models in your INSTALLED_APPS:
INSTALLED_APPS = [
'hidden_models',
[...]
]

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.