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()

Want to kickstart your project?Use the new AI Studio to create your code