美文网首页
[那些似懂非懂的细节]python3发http/https请求

[那些似懂非懂的细节]python3发http/https请求

作者: qiushuitian | 来源:发表于2017-12-26 15:10 被阅读349次

    python3自带的包用起来非常复杂,使用三方包Requests可以方便的发请求。

    安装三方包

        pip3 install requests
    

    发post请求

        # 向钉钉群发消息
        url = "https://oapi.dingtalk.com/robot/send?access_token=edd236299cd610ec989071f66e1abc5cb20c7ebd3613bd95a387b604fdb61e21000"
        headers = {"Content-type": "application/json"}
        paramsDic = {'msgtype': 'text',
                     'text': {'content':'我是打包机器人!'}}
        d = json.dumps(paramsDic)
        resp = requests.post(url,data=d,headers=headers)
        print(resp)

    相关文章

      网友评论

          本文标题:[那些似懂非懂的细节]python3发http/https请求

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