Skip to main content

This is a package for encode/decode python objects with json.

Project description

Desc

It's a library for python users to encode python objects to json.Use it just like use default json library.

Install

pip3 install oson

Unusual Usage

from datetime import datetime
import oson

class Student(object):
    name = 'Tom'
    age = 23
    update_at = datetime.now()
    __private = "don't see it"

s = Student()
print(oson.dumps(s))

More

from datetime import datetime
import oson

class Student(object):
    name = 'Tom'
    age = 23
    update_at = datetime.now()
    __private = "don't see it"

oson.set_config(time_format='%Y-%m-%d %H:%M:%S', date_format='%Y-%m-%d %H:%M:%S', private=False)

s = Student()
print(oson.dumps(s))

Config

  • private

    if you need to encode private column, set it True.

  • time_format

    use it to transfer time from datetime to time string

  • date_format

    just like 『time_format』

GOOD LUCK!

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

oson-0.0.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

oson-0.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