Open In App

Python script to monitor website changes

Last Updated : 03 Apr, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we are going to discuss how to create a python script to monitor website changes. You can code a program to monitor a website and it will notify you if there are any changes. This program has many useful scenarios for example if your school website has updated something you will come to know about it. 

Approach:

We will follow the following steps to write this program:

  1. Read the URL you want to monitor.
  2. Hash the entire website.
  3. Wait for a specified amount of seconds.
  4. If there are any changes as compared to the previous hash notify me else wait and again and then again take the hash.

Libraries required:

Libraries we will be using are:

  • time: To wait for a specified amount of time.
  • hashlib: To hash the content of the entire website.
  • urllib: To perform the get request and load the content of the website.

Implementation:

Python3




# Importing libraries
import time
import hashlib
from urllib.request import urlopen, Request
  
# setting the URL you want to monitor
url = Request('www.geeksforgeeks.org',
              headers={'User-Agent': 'Mozilla/5.0'})
  
# to perform a GET request and load the
# content of the website and store it in a var
response = urlopen(url).read()
  
# to create the initial hash
currentHash = hashlib.sha224(response).hexdigest()
print("running")
time.sleep(10)
while True:
    try:
        # perform the get request and store it in a var
        response = urlopen(url).read()
  
        # create a hash
        currentHash = hashlib.sha224(response).hexdigest()
  
        # wait for 30 seconds
        time.sleep(30)
  
        # perform the get request
        response = urlopen(url).read()
  
        # create a new hash
        newHash = hashlib.sha224(response).hexdigest()
  
        # check if new hash is same as the previous hash
        if newHash == currentHash:
            continue
  
        # if something changed in the hashes
        else:
            # notify
            print("something changed")
  
            # again read the website
            response = urlopen(url).read()
  
            # create a hash
            currentHash = hashlib.sha224(response).hexdigest()
  
            # wait for 30 seconds
            time.sleep(30)
            continue
  
    # To handle exceptions
    except Exception as e:
        print("error")


Output:

output

Note: time.sleep() takes seconds as a parameter. You can make changes to notifications instead of printing the status on the terminal you can write a program to get an email.

Code Explanation:

  1. The code starts by importing the libraries.
  2. Then it sets up a URL to monitor and performs a GET request on that website.
  3. The response is then stored in a variable called response.
  4. Next, the hash of the response is created with the help of hashlib and stored in currentHash.
  5. Next, time is set to sleep for 10 seconds before continuing while looping through an infinite loop which will continue until something changes or there’s an exception.
  6. If anything changes, it will be printed out as well as another GET request performed on the website again after 30 seconds has passed without any change happening to either hashes (the first one or second one).
  7. The code is a Python script that monitors an URL for changes and notifies the user if there is one.
  8. The code first imports libraries needed to perform the desired task.
  9. It then sets up the URL to monitor, which will be www.geeksforgeeks.org Next, it performs a GET request on the website and stores it in a variable called response.
  10. The code then creates an initial hash using sha224(response).hexdigest().
  11. Next, it sleeps for 10 seconds before iterating through the loop again with urlopen(url).read() being performed every 30 seconds.
  12. If something changed in the hashes of currentHash and newHash, then print(“something changed”) is done to notify that something has changed.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads