#save
import pickle

html = "asdasda"
file = open('data','wb')
pickle.dump(html,file)
file.close()

#load
import pickle
file = open('data','rb')
html = pickle.load(file)
file.close()

print (html)