ethpwn.ethlib.serialization_utils
Serializable Objects
A class that can be serialized to JSON and deserialized from JSON.
register_serializable
Register a class as serializable. This is done automatically when a class inherits from Serializable.
decoder_object_hook
A custom JSON decoder object_hook that can handle AttributeDict, HexBytes and Serializable objects.
deserialize_from_file
Deserialize a file to a Python object using the custom decoder.
deserialize_from_bytes
Deserialize bytes to a Python object using the custom decoder.
serialize_to_file
Serialize a Python object to a file using the custom encoder and a given encoding scheme.
Arguments:
obj
: the object to serializepath
: the path to the file to write to (not including the suffix)encoding
: the encoding scheme to use (e.g. 'json', 'msgpack')
serialize_to_bytes
Serialize a Python object to a JSON string using the custom encoder.