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

python 中requests的返回数可直接使用json

时间:2019-09-11 18:11:55      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:info   方法   post   技术   div   on()   sts   sel   check   

对Python的request不是很了解,在使用时才发现,可以把request的请求结果,直接使用.json()[‘字段名‘]方法进行一个取值,案例如下

    def test_tiantian(self):
        data = "type=tiantian&postid=11111111111"
        result = requests.get(url=self.url, params=data,headers=self.headers1 )

        print(result.url)
        print(result.text)
        print("************")
        print(result.json()[‘ischeck‘])

  技术图片

 

python 中requests的返回数可直接使用json

标签:info   方法   post   技术   div   on()   sts   sel   check   

原文地址:https://www.cnblogs.com/chongyou/p/11507411.html

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