MOHAN KRISHNA

0 %
Mohan Krishna
Multimedia Professional
Ai & ML Researcher & Enthusiast
  • Residence:
    India
  • City:
    Vijayawada
  • Age:
    46
AI/ML Enthusiast. New Media Trainer, VFX Artist, Non Linear Video Editor, Graphic Designer, Sound Editor and iOS App Designer.
Telugu
English
Hindi
Tamil
Proficiency:
Graphic Design
Web Design
Video & VFX
Machine Learning
Artificial Intelligence
Digital Marketing
Areas of Interest:
Take a look at some of the things I love working on.
  • Non Linear Video Editing
  • Graphic Design
  • Web Design
  • Audio Editing
  • Content Management Systems
  • Python
  • Deep Learning
  • OpenCV
  • Image Classification

Internet Connection Checker

October 4, 2022
import requests
# http://www.pillalamarri.in/python/internet-connection-checker/
def internet_connection_test():
	url = 'https://www.google.com/'
	print(f'Attempting to connect to {url} to determine internet connection status.')
	
	try:
		requests.get(url, timeout = 10)
		print(f'Connection to {url} was successful.')
		return True
	except:
		requests.ConnectionError
		print(f'Failed to connect to {url}.')
		return False
	
internet_connection_test()
# http://www.pillalamarri.in/python/internet-connection-checker/
Posted in PythonTags: