Skip to content

ethpwn.ethlib.serialization_utils

Serializable Objects

class Serializable(abc.ABC)

A class that can be serialized to JSON and deserialized from JSON.

register_serializable

def register_serializable(cls)

Register a class as serializable. This is done automatically when a class inherits from Serializable.

decoder_object_hook

def decoder_object_hook(obj)

A custom JSON decoder object_hook that can handle AttributeDict, HexBytes and Serializable objects.

deserialize_from_file

def deserialize_from_file(path=None, encoding=None)

Deserialize a file to a Python object using the custom decoder.

deserialize_from_bytes

def deserialize_from_bytes(s, encoding=None)

Deserialize bytes to a Python object using the custom decoder.

serialize_to_file

def serialize_to_file(obj, path, encoding=None)

Serialize a Python object to a file using the custom encoder and a given encoding scheme.

Arguments:

  • obj: the object to serialize
  • path: 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

def serialize_to_bytes(obj, encoding=None)

Serialize a Python object to a JSON string using the custom encoder.