mongoengine/mongomap/__init__.py
Harry Marr 00d897d29a Added dictionary-style access to documents
Added __init__.py info to package, moved TopLevelDocumentMetaclass
to base.py, added tests for dictionary-style access.
2009-11-16 22:49:37 +00:00

9 lines
154 B
Python

from document import Document
import fields
from fields import *
__all__ = fields.__all__ + ['Document']
__author__ = 'Harry Marr'
__version__ = '0.1'