A simple Django app to handle database views.
Project description
A simple pluggable application that allows to work with database views.
Quick start
Install the package:
pip install django-database-view
In your models.py create classes which extend dbview.models.DbView like this:
from django.db import models from dbview.models import DbView class ModelA(models.Model): fielda = models.CharField() fieldc = models.IntegerField() class MyView(DbView): fieldA = models.OneToOneField(ModelA, primary_key=True, db_column='fielda__id') fieldB = models.IntegerField(blank=True, null=True, db_column='fieldb') @classmethod def view(cls): """ This method returns the SQL string that creates the view, in this example fieldB is the result of annotating another column """ qs = modelA.objects.all( ).annotate( fieldb=models.Sum('fieldc'), ).annotate( fielda__id=models.F('pk'), ).order_by( 'fielda__id', ).values( 'fielda__id', 'fieldb', ) return str(qs.query)Alternatively get_view_str method could be used to write a custom SQL:
class MyView(DbView): # ... @classmethod def get_view_str(cls): return """ CREATE VIEW my_view AS ( SELECT ... )"""Then create a migration point for your view generation, edit that migration and modify it, add: from dbview.helpers import CreateView and replace the line the call to migrations.CreateModel with CreateView.
Migrate your database and start using your database views.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-database-view-0.3.0.tar.gz.
File metadata
- Download URL: django-database-view-0.3.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2572dff87ba918f0d3c0dfd5a3b5eadd79d378f8f795707ca31d014a5ddcf8e1
|
|
| MD5 |
52c83309247d04b86631feab5b2b2821
|
|
| BLAKE2b-256 |
90108d5f427692f766150bf77e236501cec1a1d35097f608d0480eb0e897533e
|
File details
Details for the file django_database_view-0.3.0-py3-none-any.whl.
File metadata
- Download URL: django_database_view-0.3.0-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc0982c64c31e7b4e7f249ebf04241c48766cc21d7d489f329c8b17399d98f76
|
|
| MD5 |
4475caf8be04353397b1af1a67281734
|
|
| BLAKE2b-256 |
a5e432d2b1542d3c6c28e27970c90e1ea7eecf5b7971aa33002d8863295b319c
|