form_test.py 248 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import colander from deform import Form class Schema(colander.Schema): a = colander.SchemaNode(colander.String()) schema = Schema() form = Form(schema) # print (dir(form.oid)) print (form.oid) print (form.schema.a.id) # print(form.render())