最基础的urllib.request.urlopen()基本使用

'简单的用python3访问python官网'

import urllib.request

url = 'https://www.python.org'

#req = urllib.request.Request(url)
#response = urllib.request.urlopen(req)
response = urllib.request.urlopen(url)
#暂时还不知晓两者有何区别

print(type(response))

'''
 运行: 
   通过输出结果可以发现它是一个HTTPResposne类型的对象,它主要包含的方法有read()、
readinto()、getheader(name)、getheaders()、fileno()等函数和msg、version、
status、reason、debuglevel、closed等属性。
   例如response.read()就可以得到返回的网页内容,response.status就可以得到返
回结果的状态码,如200代表请求成功,404代表网页未找到等。
'''
html = response.read().decode('utf-8')
print(html)

你可能感兴趣的:(Python笔记)