MCPcopy Create free account
hub / github.com/easy-graph/Easy-Graph / write_pickle

Function write_pickle

easygraph/readwrite/pickle.py:11–15  ·  view source on GitHub ↗
(file_name, obj)

Source from the content-addressed store, hash-verified

9
10
11def write_pickle(file_name, obj):
12 import pickle
13
14 with open(file_name, "wb") as f:
15 pickle.dump(obj, f)

Callers

nothing calls this directly

Calls 1

dumpMethod · 0.45

Tested by

no test coverage detected