urllib
程序员文章站
2022-05-03 21:36:15
...
post请求:
在规定时间未响应,报错:
响应:
import urllib.request
response = urllib.request.urlopen('http://httpbin.org/get')
print(response.status) #状态码
print(response.getheaders()) #响应头
print(response.getheader('Server')) #响应头中,具体信息
响应页面:
import urllib.request
response = urllib.request.urlopen('https://www.python.org')
print(response.read().decode('utf-8'))
推荐阅读
-
urllib库常用的几个函数
-
Python中urllib2模块的8个使用细节分享
-
python使用urllib2提交http post请求的方法
-
Python2和Python3中urllib库中urlencode的使用注意事项
-
Python使用urllib2模块抓取HTML页面资源的实例分享
-
python爬虫之urllib库常用方法用法总结大全
-
Python标准库urllib2的一些使用细节总结
-
使用Python的urllib和urllib2模块制作爬虫的实例教程
-
Python中urllib+urllib2+cookielib模块编写爬虫实战
-
Python中使用urllib2模块编写爬虫的简单上手示例