Metadata-Version: 1.0
Name: lambdaJSON
Version: 0.1.0
Summary: serialize python standard library objects with json
Home-page: https://github.com/pooya-eghbali/lambdaJSON
Author: Pooya Eghbali
Author-email: persian.writer@gmail.com
License: LICENSE.txt
Description: ===========
        lambdaJSON
        ===========
        
        lambdaJSON lets you serialize python standard library objects
        with <json>.
        Typical usage::
        
            #!/usr/bin/env python
        
            import lambdaJSON
        
            mySerialisedObject = lambdaJSON.serialize({(1,2,3):{b'lambda':[b'json',1,3]}, 45: 'test'})
        	
        	myDeserialisedObject = lambdaJSON.deserialize(mySerialisedObject)
        
        Currently Supported Types
        =========================
        
        This types are covered in this version:
        
        1. Bytes
        2. Tuples
        3. Dicts (With Number, Tuple, String and Byte keys)
        4. other json supported types
        
        Github project page: https://github.com/pooya-eghbali/lambdaJSON
Platform: UNKNOWN
