Structured Data for Humans
Project description
Python Data Structures for Humans™.
For more information, please see our documentation: http://schematics.readthedocs.org/en/latest/
About
Schematics is a Python library to combine types into structures, validate them, and transform the shapes of your data based on simple descriptions.
The internals are similar to ORM type systems, but there is no database layer in Schematics. Instead, we believe that building a database layer is made significantly easier when Schematics handles everything but writing the query.
Further, it can be used for a range of tasks where having a database involved may not make sense.
Some common use cases:
Design and document specific data structures
Convert structures to and from different formats such as JSON or MsgPack
Validate API inputs
Remove fields based on access rights of some data’s recipient
Define message formats for communications protocols, like an RPC
Custom persistence layers
Example
This is a simple Model.
>>> from schematics.models import Model >>> from schematics.types import StringType, URLType >>> class Person(Model): ... name = StringType(required=True) ... website = URLType() ... >>> person = Person({'name': u'Joe Strummer', ... 'website': 'http://soundcloud.com/joestrummer'}) >>> person.name u'Joe Strummer'
Serializing the data to JSON.
>>> import json >>> json.dumps(person.to_primitive()) {"name": "Joe Strummer", "website": "http://soundcloud.com/joestrummer"}
Let’s try validating without a name value, since it’s required.
>>> person = Person() >>> person.website = 'http://www.amontobin.com/' >>> person.validate() Traceback (most recent call last): File "<stdin>", line 1, in <module> File "schematics/models.py", line 231, in validate raise ModelValidationError(e.messages) schematics.exceptions.ModelValidationError: {'name': [u'This field is required.']}
Add the field and validation passes:
>>> person = Person() >>> person.name = 'Amon Tobin' >>> person.website = 'http://www.amontobin.com/' >>> person.validate() >>>
Testing & Coverage support
Run coverage and check the missing statements.
$ `coverage run --source schematics -m py.test && coverage report`
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
File details
Details for the file schematics-1.1.1.tar.gz
.
File metadata
- Download URL: schematics-1.1.1.tar.gz
- Upload date:
- Size: 59.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83758afa444a53a2a8ef23852c07696edc1699c7df403e65e6b15ff96d4204b5 |
|
MD5 | 2b9a10bac17c3879e27a67e1520de489 |
|
BLAKE2b-256 | 7798c602d8439b954f8fd8184979b6f9c72304f70ec155fa15a8d9c3d54837c6 |