I start in the web scraping and I am looking for a way to find the postal codes of a company list, using Python and web scraping.
For this I want to use the pandas library since my file is in excel format with the selenium library to search the internet for postal codes corresponding to companies.
For example, in the A column there is company_1. So the algorithm must search for "company_1" on the internet and return the corresponding postal code in the B column of Excel. The difficulty is that I don't have a website to associate for each company.
Is that possible ?
Thanks in advance