使用 urllib2.urlopen 設定自訂使用者代理
urllib2.urlopen 在 3.x 之前的 Python 版本中使用預設使用者代理程式。這可能會導致某些網站限制存取或顯示不同的內容。您可能需要設定自訂使用者代理程式來繞過這些限製或存取特定內容。
解決方案
如先前的回覆所述,您可以修改 HTTP 標頭使用 urllib2.build_opener 設定自訂使用者代理程式。以下是範例:
<code class="python">import urllib2 # Create an opener with a custom User-Agent header. opener = urllib2.build_opener() opener.addheaders = [('User-Agent', 'Mozilla/5.0')] # Open the URL with the opener. response = opener.open('http://www.stackoverflow.com')</code>
注意: urllib2.urlopen 在 Python 3.x 中已棄用。對於 Python 3,您可以使用 urllib.request.urlopen 來代替。設定自訂用戶代理的過程保持不變:
<code class="python">import urllib.request # Create an opener with a custom User-Agent header. opener = urllib.request.build_opener() opener.addheaders = [('User-Agent', 'Mozilla/5.0')] # Open the URL with the opener. response = opener.open('http://www.stackoverflow.com')</code>
以上是如何使用 urllib2.urlopen 設定自訂用戶代理程式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!