Skip to main content

The library for serialize/deserialize into format JSON.

Project description

Package json_serializer

The library for serialize/deserialize into format JSON.

How use it?

For example you have class that needed serialize or deserialize.
class Car(object):
    mark = None
    model = None
    year = None
    color = None
Create object
car = Car()
car.mark = 'Ford'
car.model = 'Mustang'
car.year = 2016
car.color = 'Black'
Import class JsonSerializer and create object of serializer

In the constructor pass list of classes that will be involved in serialization/deserialization.

from json_serializer.Serializer import Serializer
...
serializer = Serializer([
    Car
])
Serialization
string = serializer.serialize(car)      # sting contains next json:
                                        # {
                                        #    "mark": "Ford",
                                        #    "model": "Mustang",
                                        #    "year": 2016,
                                        #    "color": "Black"
                                        # }
Deserialization
car = serializer.deserialize(string)

Variable car type of Car and contains values of all fields.

Enjoy!

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

json_serializer-1.0.0.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

json_serializer-1.0.0-py3-none-any.whl (3.8 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