Skip to content

Instantly share code, notes, and snippets.

@alvesjnr
Forked from gustavofonseca/proposta isisdm
Created February 28, 2011 14:38
Show Gist options
  • Save alvesjnr/847396 to your computer and use it in GitHub Desktop.
Save alvesjnr/847396 to your computer and use it in GitHub Desktop.
from isisdm.mapper import Document
from isisdm.mapper import TextField, NumberField, DateTimeField
class Livro(Document)
titulo = TextField(required=True, repeatable=True)
data = DateTimeField()
total_paginas = NumberField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment