Skip to content

Instantly share code, notes, and snippets.

@EverettBerry
Last active September 23, 2022 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EverettBerry/1dd3049d36878c20fb6409a77adb9720 to your computer and use it in GitHub Desktop.
Save EverettBerry/1dd3049d36878c20fb6409a77adb9720 to your computer and use it in GitHub Desktop.
Debug large python dict
import pickle
with open('www/instances', 'wb') as f:
pickle.dump(all_instances, f)
with open('www/instances', 'rb') as f:
all_instances = pickle.load(f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment