如何使用 urllib2.urlopen 設定自訂用戶代理程式?

Linda Hamilton
發布: 2024-10-30 13:07:26
原創
803 人瀏覽過

How to Set a Custom User Agent with urllib2.urlopen?

使用 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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板