I wish to search a database that I have in a .pkl file.
I have loaded the .pkl file and stored it in a variable named load_data.
Now, I need to accept a string input using raw input and search for the string in one specific column 'SMILES
' of my dataset.
If the string matches, I need to display the whole row i.e all column values corresponding to that row.
Is that possible and if so, how should I go about it?