My goal is to get unique hash value for a DataFrame. I obtain it out of .csv file. Whole point is to get the same hash each time I call hash() on it.
My idea was t
Joblib provides a hashing function optimized for objects containing numpy arrays (e.g. pandas dataframes).
import joblib joblib.hash(df)