mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
14 lines
354 B
Python
14 lines
354 B
Python
local_data = {
|
|
"plan_input": plan_input,
|
|
"uprn_filenames": uprn_filenames,
|
|
"local_property_data": local_property_data,
|
|
"materials": materials,
|
|
"materials_by_type": materials_by_type,
|
|
"cleaned": cleaned,
|
|
"cleaning_data": cleaning_data
|
|
}
|
|
|
|
import pickle
|
|
|
|
with open('local_data.pickle', 'wb') as f:
|
|
pickle.dump(local_data, f)
|