import httplib h = httplib.HTTPConnection('www.example.com') h.request('HEAD', '/') response = h.getresponse() // Check for 30x status code if 300 ...
確定! 回上一頁