Last active
September 23, 2022 01:09
-
-
Save EverettBerry/1dd3049d36878c20fb6409a77adb9720 to your computer and use it in GitHub Desktop.
Debug large python dict
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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