Python爬虫知识

爬虫四个步骤:
获取数据、解析数据、提取数据、储存数据
import requests
res = requests.get('URL') # 返回一個Response對象

原文地址:https://www.cnblogs.com/greycdoer0/p/11701578.html