generate functionSun, 13 Nov 2022

Restart the PC if no internet connection is detected.

import requests def ping_internet(): try: requests.get('https://google.com', timeout=1) return True except requests.ConnectionError: return False ping_internet()

Questions about programming?Chat with your personal AI assistant