NOTE: This is not stable yet and will likely change! Please don't use in production until the 1.0 release.
django-shares is a python sharing module written for django that handles object sharing. Don't clone. Not stable.
Install from pypi via pip:
pip install django-shares
Basic example:
from django.contrib.contenttypes import generic
from django.db import models
from django_shares.models import Share
class Car(models.Model):
"""A model that will be shared."""
# Add the reverse relation since the shared object is a generic object.
shares = generic.GenericRelation(Share)
Extending the sharing model:
from django.contrib.contenttypes import generic
from django.db import models
from django_shares.models import AbstractShare
class CarShare(AbstractShare):
"""Extending the share model to add additional attributes."""
day = models.CharField(max_length=50)
class Car(models.Model):
"""A model that will be shared."""
# Add the reverse relation since the shared object is a generic object.
shares = generic.GenericRelation(CarShare)
From the tests directory where the manage.py file is, run the following command:
python manage.py test



