Skip to main content

This is the simplest module for serializing and deserializing json.

Project description

JSONLibGem

What is this?

This module allow you to serialize and deserialize json files.


Using

Using the library is as simple and convenient as possible:

Let's import it first: First, import everything from the library (use the from JSONLibGem import * construct).

Examples:

Serialize a JSON-formatted string into a new JSON file

json_data = '{"name": "Ivan", "surname": "Ivanov", "age": 11, "can_eat_potato": false, "parts_of_body": ["Head","Potato"]}'
output_name = "output_data.json"
JSONLibGem.serialize_json(json_data, output=output_name)

Deserialize a JSON-formatted string into a new Python object

json_data = '{"name": "Ivan", "surname": "Ivanov", "age": 11, "can_eat_potato": false, "parts_of_body": ["Head","Potato"]}'
output_name = "output_data.json"
JSONLibGem.deserialize_json(json_data, output=output_name)

Some functions of this module

You can print Serialized and Deserialized strings. To do this, you do not have to specify the argument "output".


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

JSONLibGem-0.0.4.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

JSONLibGem-0.0.4-py3-none-any.whl (2.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