Using Python you can check a status of the website with a very simple trick. Just check the response of it.
Website response
You can use a following code:
import urllib.request response = urllib.request.urlopen('https://pythoneo.com') print(response.getcode())
200 means that the website is up and working.