Skip to main content

Structured Data for Humans

Project description

Python Data Structures for Humans™.

Build Status Coverage

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:

Examples

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()
>>>

What’s with the fork?

At the top of this projects Github page is says “forked from exfm/dictshield”. James (@j2labs) started dictshield while working for exfm. It was open sourced, so he forked it and continued work on it.

Alas, the name, which was originally a 3am decision to make me James laugh turned into something that was awkward and a little crude, so it was renamed Schematics.

DictShield still exists, but consider anything with that label to be a ghost from this project’s early years.

Testing & Coverage support

Run coverage and check the missing statements.

$ `coverage run --source schematics -m py.test && coverage report`

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

schematics-1.0-0.tar.gz (59.7 kB view details)

Uploaded Source

File details

Details for the file schematics-1.0-0.tar.gz.

File metadata

  • Download URL: schematics-1.0-0.tar.gz
  • Upload date:
  • Size: 59.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for schematics-1.0-0.tar.gz
Algorithm Hash digest
SHA256 5d4e4a48e8d9487858af04b4ac62a19c23f9e9355f196bb9f75cce04096cec19
MD5 394474b03df1923fd19b9c3a7ffcaf6f
BLAKE2b-256 ed8198bea91c87fc0ca2e203cb9603eb33d77bd5a724deb70aa06f51ad72a524

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page