Model/backend/app/plan/temp_script_for_flight.py
2023-10-06 14:46:22 +01:00

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)