Python equivalent of Curl HTTP post

后端 未结 2 840
长发绾君心
长发绾君心 2020-12-31 02:26

I am posting to Hudson server using curl from the command line using the following--

curl -X POST -d \'4142430A         


        
2条回答
  •  半阙折子戏
    2020-12-31 02:59

    The modern day solution to this is much simpler with the requests module (tagline: HTTP for humans! :)

    import requests
    
    r = requests.post('http://httpbin.org/post', data = {'key':'value'}, auth=('user', 'passwd'))
    r.text      # response as a string
    r.content   # response as a byte string
                #     gzip and deflate transfer-encodings automatically decoded 
    r.json()    # return python object from json! this is what you probably want!
    

提交回复
热议问题