Requests库入门(2) yeshan333 Python 文章首发于:2018年10月1日 Requests 爬虫 requests库入门实操 京东商品页面爬取 亚马逊商品页面的爬取 百度/360搜索关键字提交 IP地址归属地查询 网络图片的爬取和储存 阅读全文
简单爬虫 yeshan333 Python 文章首发于:2018年9月29日 Requests 爬虫 Requests库入门 http://www.python-requests.org/en/master/ requests Requests库的7个主要方法 方法 说明 requests.request() 构造一个请求,支撑以下各方法的基本方法 requests.get() 获取HTML网面的方法 requests.head() 获取HTML网页头部信息的方法 requests.post() 向HTML网页提交POST请求的方法 requests.put() 向HTML页面提交PUT请求的方法 requests.patch() 向HTML网页提交局部修改请求 requests.delete() 向HTML网页提交删除请求 阅读全文