Python Serializer and Deserializer
Project description
PySer(full documentation) is a library for serializing and deserializing data in different data formats through intuitive mappings in defined inside a Python class.
Current formats supported are JSON and config files, with more coming later on.
Examples
Class mappings for serializing and deserializing in JSON
from pyser import SchemaJSON, SerField, DeserField
class FruitBasketSchema(SchemaJSON):
def __init__(self):
self.name = DeserField()
self.fruit = DeserField()
self.iD = DeserField(name='ref', kind=int)
self.intString = DeserField(kind=int)
self.optionalString = DeserField(kind=str, optional=True)
self.items = DeserField(repeated=True)
self.name = SerField()
self.fruit = SerField()
self.iD = SerField(name='ref', kind=int)
self.intString = SerField(kind=int)
self.optionalString = SerField(optional=True)
self.items = SerField(repeated=True)
self.register = SerField(parent_keys=['checkout'], kind=int)
self.amount = SerField(parent_keys=['checkout'], kind=int)
fruit_basket_schema = FruitBasketSchema()
class FruitBasket():
def __init__(self):
self.name = 'basket'
self.fruit = 'banana'
self.iD = '123'
self.intString = '12345'
self.optionalString = None
self.items = ['paper', 'rock']
self.register = '1'
self.amount = '10'
Serializing to a JSON file
basket = FruitBasket()
fruit_basket_schema.to_json(basket, filename="basket.json")
File contents of basket.json after serializing:
{
"name": "basket",
"fruit": "banana",
"ref": 123,
"intString": 12345,
"items": [
"paper",
"rock"
],
"checkout": {
"register": 1,
"amount": 10
}
}
Similarly deserialization from a json file:
basket = FruitBasket()
fruit_basket_schema.from_json(basket, raw_json=raw_json)
Installation
Installation by hand: you can download the source files from PyPi or Github:
python setup.py install
Installation with pip: make sure that you have pip installed, type this in a terminal:
pip install pyser
Documentation
Running build_docs has additional dependencies that require installation.
pip install pyser[docs]
The documentation can be generated and viewed via:
$ python setup.py build_docs
You can pass additional arguments to the documentation build, such as clean build:
$ python setup.py build_docs -E
More information is available from the Sphinx documentation.
Running Tests
Run the python command
python setup.py test
Contribute
Fork the repository from Github
Clone your fork
git clone https://github.com/yourname/pyser.git
Add the main repository as a remote
git remote add upstream https://github.com/jonnekaunisto/pyser.git
Create a pull request and follow the guidelines
Maintainers
jonnekaunisto (owner)
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
Built Distribution
File details
Details for the file pyser-0.1.5.tar.gz
.
File metadata
- Download URL: pyser-0.1.5.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57e7adba7664d43b14e71519070b1e47925d71e027f50fc61441c051db7e5cc0 |
|
MD5 | 71b4bbeb1ba1919afcf43379be5ca75f |
|
BLAKE2b-256 | 7dd9974eef8b8c81f041a958479843bb2b5d4cf4c356777d0e9344d6b3e59bfd |
File details
Details for the file pyser-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: pyser-0.1.5-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fce24292257e7da175bafa2a8cff05a58bfef4045a11aa70d18a9d139adb5ef0 |
|
MD5 | 7478840be8d715236228016ba1c23820 |
|
BLAKE2b-256 | 7856abcb86f855ac3b57823f2da2beaea21336af604aefe66193b34e08321301 |