Lightweight module to define serializable, schema-validated classes
Project description
===================================================
Lightweight Annotated Schema Serializable Objects
===================================================
.. image:: https://readthedocs.org/projects/gnarl/badge/?version=latest
:target: https://gnarl.readthedocs.io/en/latest
:alt: Documentation Status
.. image:: https://img.shields.io/travis/aperezdc/gnarl.svg?style=flat
:target: https://travis-ci.org/aperezdc/gnarl
:alt: Build Status
.. image:: https://img.shields.io/coveralls/aperezdc/gnarl/master.svg?style=flat
:target: https://coveralls.io/r/aperezdc/gnarl?branch=master
:alt: Code Coverage
.. |knot-icon| image:: https://github.com/aperezdc/gnarl/raw/master/doc/knot.png
Gnarl |knot-icon| is a small module for `Python <http://python.org>`_ which
allows defining classes with type-checked attributes, conforming to a
predetermined schema.
Classes with Gnarl |knot-icon| schemas can be used to:
* **Type-check** object attributes.
* **Validate** input data.
* **Deserialize** input data to application objects, with direct support for
deserializing `JSON <http://json.org>`_.
* **Serialize** application objects to JSON_.
Usage
=====
Define a class, with a schema attached to it used to type-check the
attributes:
>>> from gnarl import Schemed
>>> class Point(Schemed):
... __schema__ = { "x": int, "y": int }
...
>>>
Now values can be created, using keyword arguments to set the values of the
attributes. Note how the attributes can be accessed normally:
>>> location = Point(x=-3, y=5)
>>> location.x, location.y
(-3, 5)
>>>
Attributes are type-checked:
>>> location.x = 6 # Succeds
>>> location.x = "invalid value" # Fails
Traceback (most recent call last):
...
gnarl.SchemaError: 'invalid value' should be instance of <class 'int'>
>>> location.x, location.y # Values remain unchanged
(6, 5)
>>>
Last, but not least, conversion to and from JSON is automatically supported:
>>> json_text = location.to_json(sort_keys=True)
>>> json_text
'{"x": 6, "y": 5}'
>>> value = Point.from_json(json_text)
>>> value.__class__.__name__
'Point'
>>>
Installation
============
The stable releases are uploaded to `PyPI <https://pypi.python.org>`_, so you
can install them and upgrade using ``pip``::
pip install gnarl
Alternatively, you can install development versions —at your own risk—
directly from the Git repository::
pip install -e git://github.com/aperezdc/gnarl
Documentation
=============
The documentation for Gnarl |knot-icon| is available at:
http://gnarl.readthedocs.io/en/latest
Note that the documentation is work in progress. In the meanwhile, you may
want to read the source code of the module itself for additional insight,
or even better, the code of `projects using the module`__.
__ users_
Development
===========
If you want to contribute, please use the usual GitHub workflow:
1. Clone the repository.
2. Hack on your clone.
3. Send a pull request for review.
If you do not have programming skills, you can still contribute by `reporting
issues <https://github.com/aperezdc/gnarl/issues>`_ that you may
encounter.
Users
=====
The following projects make use of Gnarl |gnarl-icon|:
* `intheam-python <https://github.com/aperezdc/intheam-python>`__
* `pebbletime-python <https://github.com/aperezdc/pebbletime-python>`__
(If you use it, please do not hesitate in editing this file and add a line to
this list.)
Lightweight Annotated Schema Serializable Objects
===================================================
.. image:: https://readthedocs.org/projects/gnarl/badge/?version=latest
:target: https://gnarl.readthedocs.io/en/latest
:alt: Documentation Status
.. image:: https://img.shields.io/travis/aperezdc/gnarl.svg?style=flat
:target: https://travis-ci.org/aperezdc/gnarl
:alt: Build Status
.. image:: https://img.shields.io/coveralls/aperezdc/gnarl/master.svg?style=flat
:target: https://coveralls.io/r/aperezdc/gnarl?branch=master
:alt: Code Coverage
.. |knot-icon| image:: https://github.com/aperezdc/gnarl/raw/master/doc/knot.png
Gnarl |knot-icon| is a small module for `Python <http://python.org>`_ which
allows defining classes with type-checked attributes, conforming to a
predetermined schema.
Classes with Gnarl |knot-icon| schemas can be used to:
* **Type-check** object attributes.
* **Validate** input data.
* **Deserialize** input data to application objects, with direct support for
deserializing `JSON <http://json.org>`_.
* **Serialize** application objects to JSON_.
Usage
=====
Define a class, with a schema attached to it used to type-check the
attributes:
>>> from gnarl import Schemed
>>> class Point(Schemed):
... __schema__ = { "x": int, "y": int }
...
>>>
Now values can be created, using keyword arguments to set the values of the
attributes. Note how the attributes can be accessed normally:
>>> location = Point(x=-3, y=5)
>>> location.x, location.y
(-3, 5)
>>>
Attributes are type-checked:
>>> location.x = 6 # Succeds
>>> location.x = "invalid value" # Fails
Traceback (most recent call last):
...
gnarl.SchemaError: 'invalid value' should be instance of <class 'int'>
>>> location.x, location.y # Values remain unchanged
(6, 5)
>>>
Last, but not least, conversion to and from JSON is automatically supported:
>>> json_text = location.to_json(sort_keys=True)
>>> json_text
'{"x": 6, "y": 5}'
>>> value = Point.from_json(json_text)
>>> value.__class__.__name__
'Point'
>>>
Installation
============
The stable releases are uploaded to `PyPI <https://pypi.python.org>`_, so you
can install them and upgrade using ``pip``::
pip install gnarl
Alternatively, you can install development versions —at your own risk—
directly from the Git repository::
pip install -e git://github.com/aperezdc/gnarl
Documentation
=============
The documentation for Gnarl |knot-icon| is available at:
http://gnarl.readthedocs.io/en/latest
Note that the documentation is work in progress. In the meanwhile, you may
want to read the source code of the module itself for additional insight,
or even better, the code of `projects using the module`__.
__ users_
Development
===========
If you want to contribute, please use the usual GitHub workflow:
1. Clone the repository.
2. Hack on your clone.
3. Send a pull request for review.
If you do not have programming skills, you can still contribute by `reporting
issues <https://github.com/aperezdc/gnarl/issues>`_ that you may
encounter.
Users
=====
The following projects make use of Gnarl |gnarl-icon|:
* `intheam-python <https://github.com/aperezdc/intheam-python>`__
* `pebbletime-python <https://github.com/aperezdc/pebbletime-python>`__
(If you use it, please do not hesitate in editing this file and add a line to
this list.)
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
gnarl-0.1.0a4.tar.gz
(22.7 kB
view details)
File details
Details for the file gnarl-0.1.0a4.tar.gz
.
File metadata
- Download URL: gnarl-0.1.0a4.tar.gz
- Upload date:
- Size: 22.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7652c1ad9bbdab3918ff596b6634470499f64e2cd22b37d7ccf42adeac29288 |
|
MD5 | 4f9394e566fcef395e156b081a091761 |
|
BLAKE2b-256 | c8ae1a7edcb3aa6929f4771c297fb2bf336d6caca96e422986b20ba122638d7b |