JsonWeb 0.8.2

Creator: bradpython12

Last updated:

Add to Cart

Description:

JsonWeb 0.8.2

Add JSON (de)serialization to your python objects
>>> from jsonweb import decode, encode

>>> @encode.to_object()
... @decode.from_object()
... class User(object):
... def __init__(self, nick, email):
... self.nick = nick
... self.email = email

>>> json_str = encode.dumper(User("cool_user123", "cool_user123@example.com"))
>>> print json_str
{"nick": "cool_user123", "__type__": "User", "email": "cool_user123@example.com"}

>>> user = decode.loader(json_str)
>>> print user.nick
cool_user123
>>> print user
<User object at 0x10145e390>

Note
JsonWeb is still very much under development. Things will change.

See documentation

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.