首页 > 代码库 > 第一个网络爬虫

第一个网络爬虫

import requests
res=requests.get(‘http://news.sina.com.cn/china/‘)
res.encoding=‘utf-8‘
print(res.text)

第一个网络爬虫