1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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)
|
More like this
- Base64Field: base64 encoding field for storing binary data in Django TextFields by mp 2 years, 6 months ago
- CategoriesField by fongandrew 2 years, 6 months ago
- CompressedTextField by Digitalxero 1 year, 9 months ago
- Transparently encrypt ORM fields using OpenSSL (via M2Crypto) by ncoghlan 6 months, 4 weeks ago
- Custom model field to store dict object in database by rudyryk 1 year, 10 months ago
Comments