Skip to content

Latest commit

 

History

History
18 lines (8 loc) · 260 Bytes

README.md

File metadata and controls

18 lines (8 loc) · 260 Bytes

JSONpickler

Version 0.1

Python JSON encoder and decoder supporting objects, tuples and complex keys.

from jsonpickler import dumps, loads

s={'a':'demo',(1,2):{3:4},'obj':Test()}

jsonstr=dumps(s)

decodeddata=loads(jsonstr)