基本库使用(urllib,requests)

Posted qj696

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基本库使用(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()

 

  

 

以上是关于基本库使用(urllib,requests)的主要内容,如果未能解决你的问题,请参考以下文章

Urllib库基本使用

urllib库基本使用

python爬虫 urllib库基本使用

Requests库基本使用

Requests库

Python 爬虫之urllib库,及urllib库的4个模块基本使用和了解