基本库使用(urllib,requests)

urllib(request,error,parse,robotparse)

  request模块

    方法:urlopen() 

       最基本http请求方法,利用它可以模拟浏览器的一个请求发起过程,同时他还带有助力授权验证authentication,重定向redirection,浏览器cookie 以及其他内容。

基本库使用(urllib,requests)
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()

 

  

 

上一篇:今日成果:爬取百度贴吧


下一篇:PySocks 代理服务和urllib urlopen 请求https