0
votes

I have created an object which is compounded by a lot of methods. This object takes a long time to build. My question is if exists a way to save the object in my drive in order to load it in another notebook?

I'm working in google colab (python)

Thanks a lot!

try joblib.pickle - Till
The built-in pickle module allows you to save any Python object to a file - Filip Müller