django-view-table
Plugin to create view table in Django.
This plugin enable you to create view table in Django model.
Support Database
- SQLite3
- PostgreSQL
- MySQL
- (TBC)Oracle Database
Installation & Setup
pip install django-view-table
After install, you can set your INSTALLED_APPS
INSTALLED_APPS = [
'viewtable',
]
Usage
Create model
You need the three step.
- Import
view_table
module - Inherit
ViewTable
- Impliment
get_query
method
The method get_query
should return select sql statement.
You can write sql statement as raw sql or django model object.
This is a simple example.
from django.db import models
from view_table.models import ViewTable
class Book(models.Model):
name = models.CharField(max_length=100)
category = models.CharField(max_length=100)
class Books(ViewTable):
category = models.CharField(max_length=100)
count = models.IntegerField()
@classmethod
def get_query(self):
return Book.objects.values('category').annotate(count=models.Count('category')).query
Run command
After Django migration, you can create view tables the below command.
python manage.py createviewtable
Development
I prepare application for this plugin application.
License
MIT