File size: 217 Bytes
0c0db8b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import pickle

def save_pkl(tgt_list, svg_path):
    with open(svg_path, "wb") as f:
        pickle.dump(tgt_list, f)

def load_pkl(path) :
    with open(path, "rb") as f:
        data = pickle.load(f)
    return data