GithubHelp home page GithubHelp logo

imclab / schematics Goto Github PK

View Code? Open in Web Editor NEW

This project forked from schematics/schematics

0.0 2.0 0.0 1.81 MB

Python Data Structures for Humans™.

Home Page: http://schematics.readthedocs.org/

License: BSD 3-Clause "New" or "Revised" License

schematics's Introduction

Schematics

Python Data Structures for Humans™.

Build Status

For more information, please see our documentation.

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, Schematics believes the task of 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 for code
  • Convert structures to and from different formats, like 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.

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

schematics's People

Contributors

alexanderdean avatar bdickason avatar brianknox avatar d1on avatar dfm avatar gilles avatar gone avatar hrldcpr avatar jbeluch avatar jhalcrow avatar jmsdnns avatar johannth avatar jokull avatar justinabrahms avatar lkraider avatar nicolaiarocci avatar robspectre avatar robspychala avatar rozza avatar ryanolson avatar seanoc avatar st0w avatar st4lk avatar talos avatar titusz avatar tomashanacek avatar tomwaits avatar wsantos avatar yalon avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.