Hi everyone, i’m trying to get the data from the weather station near my house at this website with the “scrape” function but it does not work.
I tried both with this:
- platform: scrape
name: Temperatura Esterna
resource: "http://www.centrometeolombardo.com/content.asp?contentid=7333&ContentType=Stazioni"
select: "div.value"
and this:
- platform: scrape
name: Temperatura Esterna
resource: "http://www.centrometeolombardo.com/content.asp?contentid=7333&ContentType=Stazioni"
select: "body > div > table > tbody > tr:nth-child(2) > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(2) > div"
scan_interval: 900.
In the first case the sensor is blank, in the second is shows “unknown”, anyway I can’t get to display none of the datas in the website… someone can help me?