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 when there were no changes.
Next up was pickling the webpage and then trying to compare it with the html. Interestingly that didn’t work either within the script. BUT, if I type file = pickle.load( open( ‘D:\Download\htmlString.p’, ‘rb’)) after the script has run and then file == html, it shows True when there hasn’t been any changes.
I’m a bit confused as to why it won’t work when the script runs but if I do the above it shows the correct answer.
Edit: Thanks for the responses so far guys. The question I have wasn’t really about other ways to go about this (although it’s always good to learn more ways to accomplish a task!) but rather why the code below doesn’t work when it’s run as a script, but if I reload the pickle object at the prompt after the script has run and then test it against the html, it will return True if there hasn’t been any changes.
try:
file = pickle.load( open( 'D:\\Download\\htmlString.p', 'rb'))
if pickle.load( open( 'D:\\Download\\htmlString.p', 'rb')) == htmlString:
print("Values haven't changed!")
sys.exit(0)
else:
pickle.dump( htmlString, open( 'D:\\Download\\htmlString.p', "wb" ) )
print('Saving')
except:
pickle.dump( htmlString, open( 'D:\\Download\\htmlString.p', "wb" ) )
print('ERROR')
Edit: I hadn’t realized you were just looking for the problem with your script. Here’s what I think is the problem, followed by my original answer which addresses another approach to the bigger problem you’re trying to solve.
Your script is a great example of the dangers of using a blanket
exceptstatement: you catch everything. Including, in this case, yoursys.exit(0).I’m assuming you’re
tryblock is there to catch the case whereD:\Download\htmlString.pdoesn’t exist yet. That error is calledIOError, and you can catch it specifically withexcept IOError:Here is your script plus a bit of code before to make it go, fixed for your
exceptissue:As a side note, you might consider using
os.pathfor your file paths — it will help anyone later who wants to use your script on another platform, and it saves you the ugly double back-slashes.Edit 2: Adapted for your specific URL.
There is a dynamically-generated number for the ads on that page which changes with each page load. It’s right near the end after all the content, so we can just split the HTML string at that point and take the first half, discarding the part with the dynamic number.
Your string is not a valid HTML document anymore if that was important. If it was, you might just remove that line or something. There is probably a more elegant way of doing this, — perhaps deleting the number with a regex — but this at least satisfies your question.
Original Answer — an alternate approach to your problem.
What do the response headers look like from the web server? HTTP specifies a
Last-Modifiedproperty that you could use to check if the content has changed (assuming the server tells the truth). Use this one with aHEADrequest as Uku showed in his answer. If you’d like to conserve bandwidth and be nice to the server you’re polling.And there is also an
If-Modified-Sinceheader which sounds like what you might be looking for.If we combine them, you might come up with something like this:
Also check out this blog post by Stii which may provide some inspiration. I don’t know enough about
ETagsto have put them in my example, but his code checks for them as well.