码迷,mamicode.com
首页 > 编程语言 > 详细

Python 爬虫 返回json内容

时间:2018-11-22 02:30:56      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:decode   pytho   ons   load   highlight   request   pen   open   python   

如果返回的是json内容  可以用requests模块自带的  response.json() 直接转成Python 字典

或者引入json模块  用json.loads(response.content)

将返回内容 保存到文件里  

with open(‘xxxx.html‘,‘wb‘) as f:

  f.write(response.content)

返回的内容转码  response.decode(‘utf-8‘)

Python 爬虫 返回json内容

标签:decode   pytho   ons   load   highlight   request   pen   open   python   

原文地址:https://www.cnblogs.com/python666666/p/9998691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!