摘要:
title: requests模块的再次理解 date: 2020 03 10 22:44:26 tags: 1、response的解析 当requests模块发送请求后,我们会对其响应的数据也就是response进行解析,解析的方式有两种。 response.text 该方法返回的是str。 该方 阅读全文
摘要:
title: python爬虫01 date: 2020 03 08 22:56:12 tags: 1、requests模块 requests模块的底层是urllib,但是比urllib更强大也更加简洁。 基本方法: requests.get() requests.post() requests.r 阅读全文