Python - simplePing
import pycurl def nullFunc(args): pass try: curl = pycurl.Curl() curl.setopt(pycurl.WRITEFUNCTION, nullFunc) curl.setopt(pycurl.URL, 'http://www.google.it') curl.perform() print "Server SU" except Exception, error: print "Server GIU'"