美文网首页
python requests post图片(通过API返回验证

python requests post图片(通过API返回验证

作者: 戒灵 | 来源:发表于2018-08-30 15:56 被阅读0次

    import requests

    import json

    url='*'

    files={'image':('test.png',open('127.jpg','rb'),'image/png')}

    res = requests.post(url,files=files)

    print(type(res.text),type(res.json()))

    security_dict = res.json()

    security = security_dict['code']

    print(security)

    相关文章

      网友评论

          本文标题:python requests post图片(通过API返回验证

          本文链接:https://www.haomeiwen.com/subject/ipcdwftx.html