- We release all living trees as
pkl
files. - Restore it using the Python pickle module.
- Just use the following command directly
import pickle
with open('your-pickle-file.pkl', 'rb') as f: tree = pickle.load(f)
pkl
files.import pickle
with open('your-pickle-file.pkl', 'rb') as f: tree = pickle.load(f)