Python Forum
Monitor a section of a webpage for changes - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Monitor a section of a webpage for changes (/thread-6744.html)



Monitor a section of a webpage for changes - yeto - Dec-05-2017

Is it possible to code a script with Python that would be able to monitor a section of a webpage for changes? It would need to be able to refresh the page every 30 seconds, check for changes and then activate an audible alert if changes are found.

Thank you in advance for any help,
yeto


RE: Monitor a section of a webpage for changes - nilamo - Dec-05-2017

(Dec-05-2017, 04:40 PM)yeto Wrote: Is it possible to code a script with Python

Yep :)
Look into requests for getting the page, and beautifulsoup for skipping to the bits you're interested in.