Name : python3-JsonWeb
| |
Version : 0.8.2
| Vendor : openSUSE
|
Release : 3.1
| Date : 2017-03-18 01:30:14
|
Group : Development/Languages/Python
| Source RPM : python3-JsonWeb-0.8.2-3.1.src.rpm
|
Size : 0.23 MB
| |
Packager : http://bugs_opensuse_org
| |
Summary : Quickly add json serialization and deserialization to your python classes
|
Description :
JsonWeb ========
.. image:: https://travis-ci.org/boris317/JsonWeb.png?branch=master :target: https://travis-ci.org/boris317/JsonWeb
Add JSON (de)serialization to your python objects ::
>>> from jsonweb import decode, encode
>>> AATTencode.to_object() ... AATTdecode.from_object() ... class User(object): ... def __init__(self, nick, email): ... self.nick = nick ... self.email = email
>>> json_str = encode.dumper(User(\"cool_user123\", \"cool_user123AATTexample.com\")) >>> print json_str {\"nick\": \"cool_user123\", \"__type__\": \"User\", \"email\": \"cool_user123AATTexample.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 < http://www.jsonweb.info/>`_
|
RPM found in directory: /vol/rzm3/linux-opensuse/distribution/leap/42.3/repo/oss/suse/noarch |