dill scripts documentation¶
get_objgraph script¶
display the reference paths for objects in dill.types
or a .pkl file
Notes
the generated image is useful in showing the pointer references in
objects that are or can be pickled. Any object in dill.objects
listed in dill.load_types(picklable=True, unpicklable=True)
works.
Examples:
$ get_objgraph FrameType
Image generated as FrameType.png
undill script¶
unpickle the contents of a pickled object file
Examples:
$ undill hello.pkl
['hello', 'world']