I have an excel file containing some columns and, in each column some values to be searched into a database.
I want to read this file (I am using pandas because its a very simple way to read excel files) and extract info into variables:
Desired extract information of each row
Company : Ebay (STR format)
company_name_for_search : [EBAY, eBay, Ebay] (list of strings)
company_register: [4722,4721] (list os ints)
Getting this info, I will run a search script. Some info must be lists because the script will do e search for every item inside the list (for loop).
When I read the excel file, each column is read as a object type in a dataframe, so I couldn't access each value inside such object.
How to split values, change formats and deal with that?