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