Python script to check if a list of URLs has changed since the last time it was ran. Sends SMS via Twilio if page contents have changed.
If you want to check them on an interval, use Windows Task Scheduler, or for MacOS/Linux check out Cron
Add URLs to check via the urls.json file to begin tracking them
{
"google.com",
"github.com"
}Go to Twilio and create an account (Promocode: TWILIOQUEST may give some free credits, not an affiliate link). Then fill in the SID and API Key, and To/From config options in a .env file. "To" will be the destination phone number, and "From" will be the number registered on Twilio.
From = "+11234567890"
SID = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
To = "+11234567890"