Skip to content

Instantly share code, notes, and snippets.

@sdyroff
sdyroff / test.py
Created November 2, 2013 18:12
Deform ColanderAlchemy test
#!/usr/bin/env python
from sqlalchemy import Column, Enum, ForeignKey, Integer, Unicode
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
from colanderalchemy import SQLAlchemySchemaNode
from deform import Form
Base = declarative_base()