Skip to main content

Route postgres connections and hook into cursor execution

Project description

django-pgconnection provides primitives for overriding Postgres connection and cursor objects, making it possible to do the following:

  1. Hook into SQL generation. For example, it is not possible to log every time a SQL statement is executed in Django or annotate SQL with comments so that additional metadata is logged when executing queries. The pgconnection.pre_execute_hook context manager allows one to hook into SQL before it is executed.

  2. Route database traffic to a different database. Although Django provides the ability to construct custom database routers, routing to a different database has to be instrumented throughout code and can be tedious and error prone. The pgconnection.route context manager can route any database operations to a different database, even if it’s an external management command that has not been instrumented to use a different database.

The documentation has examples of how to use django-pgconnection.

Documentation

View the django-pgconnection docs here.

Installation

Install django-pgconnection with:

pip3 install django-pgconnection

After this, add pgconnection to the INSTALLED_APPS setting of your Django project.

In order to use connection routing and hooks, one must configure the DATABASES setting in settings.py like so:

DATABASES = pgconnection.configure({
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': 'mydatabase',
    }
})

Contributing Guide

For information on setting up django-pgconnection for development and contributing changes, view CONTRIBUTING.rst.

Primary Authors

  • @wesleykendall (Wes Kendall)

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-pgconnection-1.0.3.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

django_pgconnection-1.0.3-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file django-pgconnection-1.0.3.tar.gz.

File metadata

  • Download URL: django-pgconnection-1.0.3.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.13.0-1023-aws

File hashes

Hashes for django-pgconnection-1.0.3.tar.gz
Algorithm Hash digest
SHA256 395d82fc6ca612b8575373c317d6f1a47974dadda965e043d2704609ded12c0a
MD5 2d8484983fc02bbaebae2e00c633e8fa
BLAKE2b-256 4ffa507cc09eedca06e0e37dc27f77be1e19ddc2f087d3c05b0b8ded8cebc62f

See more details on using hashes here.

File details

Details for the file django_pgconnection-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_pgconnection-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7d2dadeb8b7bdf8ac94f2a5c553f6d96c446331c1f3e930dd6fc4f194bbec90a
MD5 5b31e2f74e468cec4c18fdf9d6d6ae1d
BLAKE2b-256 c779a767714bd196d48227480f2e5180dfdf57d99a36032fec5fc97a285cee09

See more details on using hashes here.

Supported by

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