I help some help in web scrapping. Im not sure if this is possible
Some details:
Im using Open hardware Monitor which by itself have a remote web server.
On my Rpi, going into the webpage url of 192.168.1.1:8085 can show the data of the cpu temps, volts etc.
My rpi is locally connected only.
Currenly my code is as follows:
It manages to print something. But i am unable to see the whole table form.
Any help on how to print the value that i want?
For example, how do i script it to store cpu Vcore temperature as array =[min,value,max] and print it out?
Any help will be appreciated!
Some details:
Im using Open hardware Monitor which by itself have a remote web server.
On my Rpi, going into the webpage url of 192.168.1.1:8085 can show the data of the cpu temps, volts etc.
My rpi is locally connected only.
Currenly my code is as follows:
Code:
import pandas as pd
import requests as rq
URL = '192.168.1.1:8085'
table = pd.read_html(URL)
print(len(table))
print(table))
It manages to print something. But i am unable to see the whole table form.
Any help on how to print the value that i want?
For example, how do i script it to store cpu Vcore temperature as array =[min,value,max] and print it out?
Any help will be appreciated!
Last edited: