Skip to content

Instantly share code, notes, and snippets.

View pstjean's full-sized avatar

Peter St.Jean pstjean

View GitHub Profile
import simplejson
import sqlalchemy
from sqlalchemy import String
from sqlalchemy.ext.mutable import Mutable
class JSONEncodedObj(sqlalchemy.types.TypeDecorator):
"""Represents an immutable structure as a json-encoded string."""
impl = String