Skip to content

Files

Latest commit

author
Alexander Vyushkov
Jul 17, 2015
f2ec78a · Jul 17, 2015

History

History

djorm-ext-pgbytea

djorm-ext-pgbytea

NOTE: this package is deprecated, because django after version 1.6 has support for binaryfield nativelly.

https://travis-ci.org/niwibe/djorm-ext-pgbytea.png?branch=master https://pypip.in/v/djorm-ext-pgbytea/badge.png https://pypip.in/d/djorm-ext-pgbytea/badge.png

Binary field and other usefull tools for postgresql bytea field type.

Simple example:

from django.db import models
from djorm_pgbytea.fields import ByteaField, LargeObjectField

class ByteaModel(models.Model):
    data = ByteaField()

class LargeObjectModel(models.Model):
    lobj = LargeObjectField(default=None, null=True)

How to install?

Install the stable version using pip by running:

pip install djorm-ext-pgbytea