10 lines
208 B
Python
10 lines
208 B
Python
|
|
def make_key(df):
|
|
"""
|
|
encode the column names into the key,
|
|
this triggers a hard reload (like F5) when the columns change
|
|
"""
|
|
return "stand:" + "+".join(str(col) for col in df.columns)
|
|
|
|
|