欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

urllib

程序员文章站 2022-05-03 21:36:15
...

post请求:

urllib

在规定时间未响应,报错:

urllib

响应:

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