a simple, extensible rating system.
Project description
a simple, extensible rating system.
With a little bit more
also, a playground for different stuff i’ve been reading about in programming collective intelligence, by toby segaran.
this stuff lives in utils.py and is there if you want to experiment (or contribute!).
Getting started
you’d like to add ratings to some model:
from django.db import models from rating.models import Ratings class Food(models.Model): name = models.CharField(max_length=50) ratings = Ratings()
now, you can:
# add ratings to things >>> apple.ratings.rate(user=john, score=1) <RatedItem: apple rated 1 by john> >>> apple.ratings.rate(user=jane, score=5) <RatedItem: apple rated 5 by jane> # get interesting aggregate data >>> apple.ratings.all() [<RatedItem: apple rated 1 by john>, <RatedItem: apple rated 5 by jane>] >>> apple.ratings.cumulative_score() 6 >>> apple.ratings.average_score() 3.0 # order things by their rating >>> Food.ratings.order_by_rating() [<Food: apple>, <Food: orange>]
Use GFKs, FKs, whatever
By default, whenever you add Ratings() to your model it uses the RatedItem model which has a GFK on it. Suppose you are only rating one thing, or would like to have an explicit database constraint – that’s no problem. You can provide a custom RatedItem model with a ForeignKey instead of a GFK. Here’s the example from the tests:
class BeverageRating(RatedItemBase): content_object = models.ForeignKey('Beverage') class Beverage(models.Model): name = models.CharField(max_length=50) ratings = Ratings(BeverageRating) def __unicode__(self): return self.name
The API is exactly the same.
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
Hashes for django-simple-ratings-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90b2fdbdc35b91f9d213e4dfe958cbb4bde95ea793ece82a115e145a2fa125f4 |
|
MD5 | 86b1fac3cc4a78a24794cf5b3d3d0183 |
|
BLAKE2b-256 | d88d06a578b2dfecc15c915003dea5661369fc9d58bb23c91d9603637cefafa3 |