python 3.x urllib学习
生活随笔
收集整理的這篇文章主要介紹了
python 3.x urllib学习
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
urllib.request
import urllib.request as ur url='http://ie.icoa.cn' user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)' req=ur.Request(url) req.add_header('User-Agent',user_agent) res=ur.urlopen(req) html=res.read().decode('utf8') print(html)發送一個header,模擬瀏覽器
?
轉載于:https://www.cnblogs.com/fj0716/p/5138391.html
總結
以上是生活随笔為你收集整理的python 3.x urllib学习的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Hive Fetch Task
- 下一篇: 2008R2文件服务器迁移到2012R2