def build_file_move_graph(file_frame):
move_frame = file_frame[file_frame.move]
move_graph = nx.from_pandas_dataframe(
move_frame,
source='file_path1', target='file_path2',
edge_attr='hexsha', create_using=nx.DiGraph())
return move_graph
评论列表
文章目录