
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
django-database-view
Advanced tools
#################### django-database-view ####################
A simple pluggable application that allows to work with database views.
Install the package::
pip install django-database-view
In your models.py
create classes which extend dbview.models.DbView
like this:
.. code-block:: python
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:
.. code-block:: python
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.
FAQs
A simple Django app to handle database views.
We found that django-database-view demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.