Home > Blockchain >  Webscraping with python - with interactive website
Webscraping with python - with interactive website

Time:10-01

Can anybody recommend a python package to extract data from the Dutch met office website:

https://www.knmi.nl/nederland-nu/weer/waarschuwingen-en-verwachtingen/weer-en-klimaatpluim

The site shows graphs with forecasts of temperature, rainfall, etc. You can click on the graph and select that the underlying data is shown in a table.

Which python package can I use to go to the site, extract the table data for different forecasts in a dataframe.

thanks

CodePudding user response:

Simply you can use BeautifulSoup

CodePudding user response:

Use BeautifulSoup. Beautiful Soup is a Python library for pulling data out of HTML and XML files. Check out the documentation : https://beautiful-soup-4.readthedocs.io/en/latest/

  • Related