Metadata-Version: 2.1
Name: pyser
Version: 0.0.4
Summary: Python Serializer and Deserializer
Home-page: https://github.com/jonnekaunisto/pyser
Author: Jonne Kaunisto
Author-email: jonneka@gmail.com
License: MIT License
Keywords: serialize,deserialize
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent

Pyser
======

Plan
----

JSON map will be a module that will allow mapping keys in JSON to a value in a python object and vice versa. This will help with serializing and deserializing complex Python objects.

The implementation will look somewhat similar to Golang's implementation, which uses built in tags for fields to define what key the struct value maps to.

Example:

.. code:: Go

    type FruitBasket struct {
        Name    string
        Fruit   []string
        Id      int64  json:"ref"
        private string // An unexported field is not encoded.
        Created time.Time
        IntString int64 `json:",string"`
    }

.. code:: python

   from pyser import PySer, Field
   class FruitBasket(PySer):
       def __init__(self):
        self.name = pyser.Field()
        self.fruit = pyser.Field()
        self.iD = pyser.Field(name="ref", type=int)
        self.private = "" # alternatively self.private = pyser.Field(private=True)
        self.created = pyser.Field(type=Time)
        self.intString = pyser.Field(type=int, jsonType=string)
        super().__init__()

In Python this could be represented by:

.. code:: Python

    basket = FruitBasket()
    basket.serialize('basket.json')


The init function from super class will read all the fields from the object and make store them.




