In [1]:
# DAGpy input filter
import dill

In [2]:
var_a = 5

In [3]:
print('var_a = {}'.format(var_a))


var_a = 5

In [4]:
# DAGpy output filter
# To change the filter, edit the block properties, not this cell.
import dill
import os
os.makedirs(os.path.dirname('cache/A_var_a.dill'), exist_ok=True)
dill.dump(var_a, open('cache/A_var_a.dill', 'wb+'))