特定のURLが存在するかどうかを確認したい。
私は2つの方法に出くわしました。
url = " http://www.google.com "
1.1。
import urllib2
response = urllib2.urlopen(url)
response.code # check what is the response code
2.2。
import httplib
conn = httplib.HTTPConnection(url)
conn.request('HEAD', '/')
response = conn.getresponse()
if response.status == 200: # check the status code
# do something
どちらも私の目的を解決しますが、どちらがこの目的を達成するためのより良い方法です。
助けてくれてありがとう。