Skip to content

Instantly share code, notes, and snippets.

@fmariluis
Created May 16, 2013 12:24
Show Gist options
  • Save fmariluis/5591351 to your computer and use it in GitHub Desktop.
Save fmariluis/5591351 to your computer and use it in GitHub Desktop.
Custom Django field to save binary data Django < 1.5 http://djangosnippets.org/snippets/1597/
import base64
from django.db import models
class Foo(models.Model):
_data = models.TextField(
db_column='data',
blank=True)
def set_data(self, data):
self._data = base64.encodestring(data)
def get_data(self):
return base64.decodestring(self._data)
data = property(get_data, set_data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment