Answers for "how to save an object in python to disk"

0

how to save an object in python to disk

# Step 1
import pickle
 
config_dictionary = {'remote_hostname': 'google.com', 'remote_port': 80}
 
# Step 2
with open('config.dictionary', 'wb') as config_dictionary_file:
 
  # Step 3
  pickle.dump(config_dictionary, config_dictionary_file)
Posted by: Guest on March-10-2021

Code answers related to "how to save an object in python to disk"

Python Answers by Framework

Browse Popular Code Answers by Language