I want to import the data in the tables using python.
The website in question is : https://hydro.eaufrance.fr/sitehydro/F7000001/series
you choose the values and dates you want, you click on "ok" and it directs you to another page with the graph and multiple data table..but the url remains intact.
There are multiple tutos on how to extract html tables and scramp the web, i tried them but i believe this one requires further treatment (url unchanged, multiple pages) with selenium maybe or idk. But hey,just my thoughts and i know about python's treatment of websites.
I tried with requests, pandas and bs4, but the best i got was the source code of the page.
MY EXACT AIM IS THE FOLLOWING : creating a function, in which all you gonna give it is the code of the hydraulic station ( ull get it if u visit the website), and then it gives me the entire graph of "maximum daily flow" of the station" since its creation until the present. Other treatment will be required and put into action after.
Note that, in this case, F700 0001 is the code of the station, located in Paris..
I would like to import the datas directly to python in csv or txt format, that way i could manipulate them and extract the infos i want.
In the end, i believe this one is kinda complex, and i would be grateful is anyone proves the contrary.