Skip to content

Instantly share code, notes, and snippets.

@SubhadityaMukherjee
Created March 16, 2023 18:51
Show Gist options
  • Save SubhadityaMukherjee/8a190516890398194e6f836df6f41be3 to your computer and use it in GitHub Desktop.
Save SubhadityaMukherjee/8a190516890398194e6f836df6f41be3 to your computer and use it in GitHub Desktop.
tbpickle
import pickle
with open("pickled_df.pkl", "wb+") as f:
pickle.dump(combined_df, f)
with open("pickled_df.pkl", "rb+") as f:
combined_df = pickle.load(f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment