kgaughan / dbkit

Taking some of the pain out of Python's DB-API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow wrapping of individual connections in a dbkit context.

kgaughan opened this issue · comments

This would be useful to allow something like this:

from django import db

# ...

with dbkit.context(db.connection):
    # ...