标签:decode rect html spl lap col cookie ons The
urllib(request,error,parse,robotparse)
request模块
方法:urlopen()
最基本http请求方法,利用它可以模拟浏览器的一个请求发起过程,同时他还带有助力授权验证authentication,重定向redirection,浏览器cookie 以及其他内容。
import urllib.request response = urllib.request.urlopen("https://www.baidu.com") print(response.read().decode("utf-8")) print(type(response)) --->>> <html> <head> <script> location.replace(location.href.replace("https://","http://")); </script> </head> <body> <noscript><meta http-equiv="refresh" content="0;url=http://www.baidu.com/"></noscript> </body> </html> <class ‘http.client.HTTPResponse‘>
标签:decode rect html spl lap col cookie ons The
原文地址:https://www.cnblogs.com/qj696/p/12200653.html