- [ ] This is unchecked box
- [x] This is checked box
- This is unchecked box.
- This is checked box.
- [ ] This is unchecked box
- [x] This is checked box
import requests | |
import os | |
from time import sleep | |
url = input('Enter the url you want to track: ') | |
gap = int(input('Amount of time after which it should check for update(in seconds) : ')) | |
print( | |
""" | |
To terminate the program press Cmd/Ctrl + C | |
""" |