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:

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


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.1.3.tar.gz (60.4 kB view details)

Uploaded Source

Built Distribution

schematics-1.1.3-py2.py3-none-any.whl (30.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file schematics-1.1.3.tar.gz.

File metadata

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

File hashes

Hashes for schematics-1.1.3.tar.gz
Algorithm Hash digest
SHA256 38258298cf8ac21fcc0ab178fc7bfdbc263c35d9c293fb63d8fa6ff3230629e6
MD5 3d3291aa8547af2dda0e650afa7e60c3
BLAKE2b-256 ec937babe53bd3ac7d1178e993831d2bddb565104292b732817853db9a030ffe

See more details on using hashes here.

File details

Details for the file schematics-1.1.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for schematics-1.1.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7605944736e921cab314d99245a532ee15295f675aff7a48fb70846af9b2ebf6
MD5 5bb69c63a013df35fc2605a5e705b9b4
BLAKE2b-256 5a8f41db19aa25d4bdd0aa3df7b34c864ef4f09a3338cd17a1776cbc45e9970a

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