Skip to main content

A simple python object extension which can easily transform to and from json with compression support

Project description

simplejsonobject

made-with-python PyPI version PyPI - Downloads PyPI - Implementation pipeline status pylint status coverage report

A simple python object which can easily transform to and from json with compression support

Install

pip install simplejsonobject

Usage

from simplejsonobject import JsonObject


class Sample(JsonObject):
    def __init__(self):
        self.a = "8"
        self.b = 3
        self.c = None

        
def main():
	smp=Sample()
	smp.to_dict() # {"a": tdata, "b": 3, "c": None}
	smp.to_dict_compressed() # {"a": tdata, "b": 3}
	smp.to_json() # '{\n    "a": 8,\n    "b": 3,\n    "c": null\n}'
	smp.to_json_compressed() # '{"a": 8, "b": 3}'
	
	# or you can import from any compressed/notcompressed json/dict
	# all below results same object
	tsmp.from_dict({"a": tdata, "b": 3, "c": None}
	tsmp.from_dict({"a": tdata, "b": 3})
	tsmp.from_json('{\n    "a": "8",\n    "b": 3,\n    "c": null\n}')
	tsmp.from_json('{"a": "8", "b": 3}')


if __name__ == '__main__':
    main()

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

simplejsonobject-0.1.6.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file simplejsonobject-0.1.6.tar.gz.

File metadata

  • Download URL: simplejsonobject-0.1.6.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.3

File hashes

Hashes for simplejsonobject-0.1.6.tar.gz
Algorithm Hash digest
SHA256 b913c921caeef8f9bcfe27ebaaf3e0374e650cea40d8f4d770747f86a504b087
MD5 e61bc6232dd849d3d79998183cb159b9
BLAKE2b-256 c0ef1baecd427fc529ae333e5d4dd1fa1bcde999fe16faf54129e71c55578b10

See more details on using hashes here.

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