An abstract class that supports json serialization/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:
>>> from jsonable import JSONable >>> >>> >>> class Fruit(JSONable): ... __slots__ = ('type', 'weight') ... ... def initialize(self, type, weight): ... self.type = str(type) ... self.weight = float(weight) ... >>> class Pie(JSONable): ... __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
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
jsonable-0.0.3.tar.gz
(4.3 kB
view details)
File details
Details for the file jsonable-0.0.3.tar.gz
.
File metadata
- Download URL: jsonable-0.0.3.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04bb2a46e1999ae686e736c22ef477d5801050cd4b71bd177fda043370074faf |
|
MD5 | 429a70a943185e24a1aa3ae4963e2020 |
|
BLAKE2b-256 | 45da24c681fad2bee85b62dad1766676830d40422c69a6d4f4d1a1ffd021eea3 |