Python学习2

主宰稳场 提交于 2020-02-05 02:38:52

1、爬虫知识(0204隐藏)
import urllib.request
import random

url=‘http://www.whatismyip.com.tw’
iplist=[‘115.239.24.140:9999’,‘119.6.144.73:81’,‘183.203.208.166:8118’]

proxy_support=urllib.request.ProxyHandler({‘http’:random.choice(iplist)})
opener=urllib.request.build_opener(proxy_support)
opener.addheaders=[{‘User-Agent’,‘Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36’}]

urllib.request.install_opener(opener)
response=urllib.request.urlopen(url)
html=response.read().decode(‘utf.8’)
print(html)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!