I was able to ingest a csv in jupyter notes by doing this :
csvData= pd.read_csv(\"logfile.csv\")
My data looks like this:
You need to select the column correctly then apply unique
unique
csvData['ip'].unique().tolist() Out[677]: ['111.111.111.111', '222.222.222.222']