Skip to content

ClatChecker(1.00)

Latest
Compare
Choose a tag to compare
@Clats97 Clats97 released this 26 Jan 19:07
· 1 commit to main since this release
6e5d0c6

This Python script continuously checks the status of one or more websites at one-second intervals. It reports whether each domain is online (HTTP 200) or down (any other code or error) in the console, and also logs these status checks to a file (website_monitor.log). The monitoring stops immediately when the user presses ENTER, thanks to a background thread watching for input. It relies on HTTP requests, pystyle for stylistic console output, and the standard Python libraries threading, time, and logging.