An abstract class that supports jsonserialization/deserialization.
Project Description
This library provides and abstract base class JSONable which enables easy definition of trivially JSON-able python objects.
- Installation: pip install jsonable
Example: | >>> import jsonable >>> >>> >>> class Fruit(jsonable.Type): ... __slots__ = ('type', 'weight') ... ... def initialize(self, type, weight): ... self.type = str(type) ... self.weight = float(weight) ... >>> class Pie(jsonable.Type): ... __slots__ = ('fruit',) ... ... def initialize(self, fruit): ... self.fruit = [Fruit(f) for f in fruit] ... ... >>> pie = Pie([Fruit('apple', 10.3), Fruit('cherry', 2)]) >>> >>> doc = pie.to_json() >>> doc {'fruit': [{'weight': 10.3, 'type': 'apple'}, {'weight': 2.0, 'type': 'cherry'}]} >>> >>> pie == Pie(doc) True |
---|
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
---|---|---|---|
jsonable-0.3.1-py2.py3-none-any.whl (11.1 kB) Copy SHA256 hash SHA256 | Wheel | 3.4 | Oct 1, 2015 |
jsonable-0.3.1.tar.gz (5.5 kB) Copy SHA256 hash SHA256 | Source | None | Oct 1, 2015 |