# -*- coding: utf-8 -*- """ @author: Maxime Boucher """ !pip install pandas-dedupe import pandas as pd import pandas_dedupe df = pd.read_excel(r'Enter input directory.xlsx') #Build dataframe with output of dedupe (specify column in dataframe) df = pandas_dedupe.dedupe_dataframe(df,['Colum in dataframe']) #Save dataframe in excel file df.to_excel(r'Enter output directory.xlsx')