How to check if the value on a website has changed
Basically I'm trying to run some code (Python 3.2) if a value on a website changes, otherwise wait for a bit and check it later. First I thought I could just save the value in a variable and compare it to the new value that was fetched the next time the script would run. But that quickly ran into problems as the value was overwritten when the script would run again and initialize that variable. So then I tried just saving the html of the webpage as a file and then comparing it to the html that would be called on the next time the script ran. No luck there either as it kept coming up False even