Skip to content

Instantly share code, notes, and snippets.

@Galina-Blokh
Created January 10, 2021 09:51
Show Gist options
  • Save Galina-Blokh/118705d88d22d9a140a88f35974c8541 to your computer and use it in GitHub Desktop.
Save Galina-Blokh/118705d88d22d9a140a88f35974c8541 to your computer and use it in GitHub Desktop.
Save data into pickle file
import pickle
file = open('new_recipe.pkl', 'wb')
pickle.dump(json_file, file, pickle.HIGHEST_PROTOCOL)
file.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment