A simple Django app to conduct vote.
Project description
## Django Vote
``django-vote`` is a simple Django app to conduct vote for django model.
This project is inspired by [django-taggit](https://github.com/alex/django-taggit)
[![Build Status](https://travis-ci.org/shanbay/django-vote.svg?branch=develop)](https://travis-ci.org/shanbay/django-vote)
[![Codecov](https://codecov.io/gh/shanbay/django-vote/coverage.svg?branch=master)](https://codecov.io/gh/shanbay/django-vote?branch=master)
[![PyPI version](https://badge.fury.io/py/django-vote.svg)](https://badge.fury.io/py/django-vote)
### Quick start
#### Install `django-vote` by pip
```shell
pip install django-vote
```
#### Add `'vote'` to your `INSTALLED_APPS` setting like this
```python
INSTALLED_APPS = (
...
'vote',
)
```
#### Add `VoteModel` to the model you want to vote
```python
from vote.models import VoteModel
class ArticleReview(VoteModel, models.Model):
...
```
#### Run migrate
```shell
manage.py makemigrations
manage.py migrate
```
#### Use vote API
```python
review = ArticleReview.objects.get(pk=1)
# Up vote to the object
review.votes.up(user_id)
# Down vote to the object
review.votes.down(user_id)
# Removes a vote from the object
review.votes.delete(user_id)
# Check if the user already voted the object
review.votes.exists(user_id)
# Returns the number of votes for the object
review.votes.count()
# Returns a list of users who voted and their voting date
review.votes.user_ids()
# Returns all instances voted by user
Review.votes.all(user_id)
```
``django-vote`` now requires Django 1.7 or greater. (for Django < 1.7, please install previous release `django-vote==1.1.3`)
``django-vote`` is a simple Django app to conduct vote for django model.
This project is inspired by [django-taggit](https://github.com/alex/django-taggit)
[![Build Status](https://travis-ci.org/shanbay/django-vote.svg?branch=develop)](https://travis-ci.org/shanbay/django-vote)
[![Codecov](https://codecov.io/gh/shanbay/django-vote/coverage.svg?branch=master)](https://codecov.io/gh/shanbay/django-vote?branch=master)
[![PyPI version](https://badge.fury.io/py/django-vote.svg)](https://badge.fury.io/py/django-vote)
### Quick start
#### Install `django-vote` by pip
```shell
pip install django-vote
```
#### Add `'vote'` to your `INSTALLED_APPS` setting like this
```python
INSTALLED_APPS = (
...
'vote',
)
```
#### Add `VoteModel` to the model you want to vote
```python
from vote.models import VoteModel
class ArticleReview(VoteModel, models.Model):
...
```
#### Run migrate
```shell
manage.py makemigrations
manage.py migrate
```
#### Use vote API
```python
review = ArticleReview.objects.get(pk=1)
# Up vote to the object
review.votes.up(user_id)
# Down vote to the object
review.votes.down(user_id)
# Removes a vote from the object
review.votes.delete(user_id)
# Check if the user already voted the object
review.votes.exists(user_id)
# Returns the number of votes for the object
review.votes.count()
# Returns a list of users who voted and their voting date
review.votes.user_ids()
# Returns all instances voted by user
Review.votes.all(user_id)
```
``django-vote`` now requires Django 1.7 or greater. (for Django < 1.7, please install previous release `django-vote==1.1.3`)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-vote-2.1.5.tar.gz
(189.5 kB
view details)
File details
Details for the file django-vote-2.1.5.tar.gz
.
File metadata
- Download URL: django-vote-2.1.5.tar.gz
- Upload date:
- Size: 189.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8e9841c4a2b68692ae78a786131915d1c9ababd33f1fa51c148c045f9db51c8 |
|
MD5 | 1b70b30d7d5a1802aed58f028a875445 |
|
BLAKE2b-256 | 2743df1d5ecbe2a9520282d7138870db469026419cfaa73988adc9bb783d018e |