skip to navigation
skip to content

django-cerial 0.0.4

Downloads ↓

Fields for storing serializable data.

What makes this different from other implementations available?

  • This implementation deserializes only when necessary. Deserializing is done on field access rather than on model instance creation. Serializing is done right before saving the model instance.
  • There is a test suite

Requirements

  • 2.5 <= Python < 3
  • Django

Installation

pip install django-cerial

JSONField

Serializes data as JSON. Example:

from django.db import models
from cerial import JSONField

class Entry(models.Model):
    data = JSONField()

PickleField

Serializes data using cPickle. Example:

from django.db import models
from cerial import PickleField

class Entry(models.Model):
    data = PickleField()
 
File Type Py Version Uploaded on Size # downloads
django-cerial-0.0.4.tar.gz (md5) Source 2011-10-10 6KB 312