Fork me on GitHub

Twistar: Twisted Active Record

Twistar is a Python implementation of the active record pattern (also known as an object-relational mapper or ORM) that uses the Twisted framework’s RDBMS support to provide a non-blocking interface to relational databases.

Twistar currently features:

Quick Example For Those In A Rush

For this example, assume that there is a table named “users” with varchar columns for first_name and last_name and an int age column.

#!/usr/bin/env python
from twisted.enterprise import adbapi
from twistar.registry import Registry
from twistar.dbobject import DBObject

class User(DBObject):
     pass

def done(user):
     print "A user was just created with the name %s" % user.first_name

# Connect to the DB
Registry.DBPOOL = adbapi.ConnectionPool('MySQLdb', user="twistar", passwd="apass", db="twistar")

# make and save a user
u = User()
u.first_name = "John"
u.last_name = "Smith"
u.age = 25
u.save().addCallback(done)

# The following is equivalent
u = User(first_name="John", last_name="Smith", age=25)
u.save().addCallback(done)

This is a very simple example - see the Examples and User Documentation for more complicated examples and additional uses.

Installation

Prerequisites

One or more of the following Python database interfaces that implement the DBAPI PEP must first be installed:

Get The Source

You can look on the releases page or use git to get a development release:

git clone git://github.com/bmuller/twistar.git

Install

In the twistar directory, simply run:

python setup.py install

Unit Tests

In the twistar directory, simply run:

trial twistar

Debugging

To get debugging information (all queries executed) using twisted.python.log, just use:

from twistar.dbconfig.base import InteractionBase
InteractionBase.LOG = True

Docs

Questions and complaints Send questions to bmuller@butterfat.net.