Data modeling and validation Python library
Project description
Booby is a standalone data modeling and validation library written in Python. Booby is under active development and licensed under the Apache2 license, so feel free to contribute and report errors and suggestions.
See the sample code below to get an idea of the main features.
from booby import *
class Token(Model):
key = StringField()
secret = StringField()
class User(Model):
login = StringField(required=True)
name = StringField()
email = EmailField()
token = EmbeddedField(Token, required=True)
addresses = Field(default=list)
class Address(Model):
line_1 = StringField(required=True)
line_2 = StringField()
jack = User(
login=u'jack',
name=u'Jack',
email=u'jack@example.com',
token={
'key': u'vs7dfxxx',
'secret': u'ds5ds4xxx'
},
addresses=[
Address(line_1='Main Street'),
Address(line_1='Main St')
]
)
try:
jack.validate()
except ValidationError:
for field, error in jack.validation_errors().items():
print field, error
else:
print jack.to_json(indent=2)
{
"email": "jack@example.com",
"login": "jack",
"token": {
"secret": "ds5ds4xxx",
"key": "vs7dfxxx"
},
"name": "Jack",
"addresses": [
{
"line_1": "Main St",
"line_2": null
},
{
"line_1": "Main Street",
"line_2": null
}
]
}
Installation
You can install the last stable release of Booby from PyPI using pip or easy_install.
$ pip install booby
Also you can install the latest sources from Github.
$ pip install -e git+git://github.com/jaimegildesagredo/booby.git#egg=booby
Tests
To run the Booby test suite you should install the development requirements and then run nosetests.
$ pip install -r requirements-devel.txt
$ nosetests tests/unit
$ nosetests tests/integration
Documentation
Booby docs are hosted on Read The Docs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
booby-0.3.0.tar.gz
(6.7 kB
view hashes)