基本库使用(urllib,requests)
作者:互联网
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'>urlopen()
标签:基本,urlopen,request,urllib,replace,location,requests,response 来源: https://www.cnblogs.com/qj696/p/12200653.html