Python bs4库爬取豆瓣TOP250基础案例
一 TestUrllibimport urllib.request#打开url 返回HTTPResponse object 用read()解析#获取一个get请求#response = urllib.request.urlopen("http://www.baidu.com")#print(response.read().decode('utf-8'))#post请求 报错!!!!!#解析import urllib.parse#模拟真实用户#data = byte