I have a function in one python file file1.py
where I have dumped a function using dill. When I tried loading it a second file file2.py
I get the error below:
TypeError: 'bytes' object is not callable
file1.py
def handle_nulls(df):
df = df[df['account_status'].notna()]
df = df[df['probability'].notna()]
max = df['am_daysincelast_txn'].max()
df['am_daysincelast_txn'].fillna(max, inplace=True)
return df
with open("handle_nulls.dill", "wb") as f:
dill.dump(handle_nulls, f, protocol=pickle.HIGHEST_PROTOCOL)
file2.py
with open("handle_nulls.dill", "rb") as f:
handle_nulls = dill.load(f)
df = handle_nulls(df)
My way seem not to work.
It's hard to give you a fill diagnosis, without the full code (i.e. no data frame), or version information -- especially if you are, say, going from one computer to another --- but it seems that your code above works, as is, at least in python 3.6, where I tested it.
then in a new session: