码迷,mamicode.com
首页 > Web开发 > 详细

基本库使用(urllib,requests)

时间:2020-01-16 14:18:05      阅读:99      评论:0      收藏:0      [点我收藏+]

标签: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>
urlopen()

 

  

 

基本库使用(urllib,requests)

标签:decode   rect   html   spl   lap   col   cookie   ons   The   

原文地址:https://www.cnblogs.com/qj696/p/12200653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!