Skip to main content

Simple json serializable object

Project description

simpleobject

Simple json serializable object

Can be used as a types.SimpleNamespace, but it is json serializable like a python dictionary.

Install

python -m pip install simpleobject

Usage

from simpleobject import simpleobject
from json import dumps

o = simpleobject()
o.foo = 1
o.bar = 2
print(o) #simpleobject(foo=1, bar=2)
print(dumps(o)) #{"foo": 1, "bar": 2}

You can also set the name

o.name = 'FooBarObject'
print(o) #FooBarObject(foo=1, bar=2)

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

simpleobject-1.0.5.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

simpleobject-1.0.5-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