Skip to main content

Patch for Django-1.6.1 that allows you to use Postgres's array_accum function. It adds function ArrayAccum in django.db.models. Using ArrayAccum will only work on Postgresql. First install Django-1.6.1 then install this package.

Project description

Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. This patch (pkg name Django-ArrayAccum on pypi) allows you to use the array_accum function available in Postgresql. This function will NOT work in other databases. If you are happy with Postgresql and want to be able to use the array_accum within Django (and not write custom sql) this fork is for you to try.

This patch was created for Django-1.6.1. Install Django-1.6.1 before you install this patch.

This patch modifies two files.

  1. django/db/models/aggregates.py

  2. django/db/models/sql/aggregates.py

This adds a function called ArrayAccum which you can then use in any query involving aggregations (similar to Sum, Avg etc which are built-in).

Example Usage: Suppose you have a model defined as such:

class People(models.Model):
    first_name = models.CharField(max_length=100)
    last_name = models.CharField(max_length=100)

And lets say you want to show the most common last names, count, associated first names — then here is how you can do it:

from django.db.models import Count, ArrayAccum
results = People.objects.values("last_name").annotate(count=Count('id'),
                        unique_first_names=ArrayAccum("first_name", distinct=True)).order_by('-count')

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

Django-ArrayAccum-1.6.1.tar.gz (6.0 kB view details)

Uploaded Source

File details

Details for the file Django-ArrayAccum-1.6.1.tar.gz.

File metadata

File hashes

Hashes for Django-ArrayAccum-1.6.1.tar.gz
Algorithm Hash digest
SHA256 619fcdba7f374b94584d55ea6327de942dba5c9d4a49cb47b668e0925d9ef1f2
MD5 f000d437fdd72517e99b340332fe2454
BLAKE2b-256 fe711e4cedd6e401fb677e55cdac487bb2e3ec556b592fc3a239aac91c06cd92

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page