Skip to main content

Python Serializer and Deserializer

Project description

PySer page on the Python Package Index https://github.com/jonnekaunisto/pyser/workflows/Python%20package/badge.svg https://codecov.io/gh/jonnekaunisto/pyser/branch/master/graph/badge.svg

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 JSONBase, SerializeField, DeserializeField
class FruitBasket(JSONBase):
     def __init__(self):
         super().__init__()
         self.name =           DeserializeField()
         self.fruit =          DeserializeField()
         self.iD =             DeserializeField(name='ref', kind=int)
         self.intString =      DeserializeField(kind=int)
         self.optionalString = DeserializeField(kind=str, optional=True)
         self.items =          DeserializeField(repeated=True)
         self.init_deserialize_json()

         self.name =           SerializeField()
         self.fruit =          SerializeField()
         self.iD =             SerializeField(name='ref', kind=int)
         self.intString =      SerializeField(kind=int)
         self.optionalString = SerializeField(optional=True)
         self.items =          SerializeField(repeated=True)
         self.register =       SerializeField(parent_keys=['checkout'], kind=int)
         self.amount =         SerializeField(parent_keys=['checkout'], kind=int)
         self.init_serialize_json()

         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()
basket.to_json(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()
basket.from_json(raw_json=raw_json)

Installation

Installation by hand: you can download the source files from PyPi or Github:

$ (sudo) python setup.py install

Installation with pip: make sure that you have pip installed, type this in a terminal:

$ (sudo) pip install pyser

Documentation

Running build_docs has additional dependencies that require installation.

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

  1. Fork the repository from Github

  2. Clone your fork

git clone https://github.com/yourname/pyser.git
  1. Add the main repository as a remote

git remote add upstream https://github.com/jonnekaunisto/pyser.git
  1. Create a pull request and follow the guidelines

Maintainers

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyser-0.1.2.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

pyser-0.1.2-py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page