Skip to content

Tag: beautifulsoup

Beautiful Soup findAll() finds half of them

I’m trying to scrape information on the price of offices in France and I successfully developed the code to scrape all the information I needed. Though, I quickly noticed that something was wrong with the number of outputs and more precisely that my algorithm was returning only half of the occurences pr…

Python POST request for web scraping

I am using beautifulsoup and requests to scrape html contents for this webpage. Based on the selection made in the page — a list of stations is populated in the page. Clicking on any one station renders an html page with td values. For e.g. My objective is to get data for each station from the list. I a…