()
| 21 | |
| 22 | |
| 23 | def clear_screen(): # Function to clear the screen |
| 24 | if os.name == "posix": # Unix/Linux/MacOS/BSD/etc |
| 25 | os.system("clear") # Clear the Screen |
| 26 | elif os.name in ("nt", "dos", "ce"): # DOS/Windows |
| 27 | os.system("CLS") # Clear the Screen |
| 28 | |
| 29 | |
| 30 | def print_docs(): # Function to print the daily checks automatically |