python中HTTP方法有哪些
1、除了GET之外,其他流行的HTTP方法包括POST,PUT,DELETE,HEAD,PATCH和OPTIONS。requests為每個(gè)HTTP方法提供了一個(gè)方法,與get()具有類似的結(jié)構(gòu):
>>>requests.post
>>>requests.put
>>>requests.delete
>>>requests.head
>>>requests.patch
>>>requests.options
2、每種方法的響應(yīng)中都會(huì)返回頭部,響應(yīng)正文,狀態(tài)碼等。調(diào)用每個(gè)函數(shù)使用相應(yīng)的HTTP方法向httpbin服務(wù)發(fā)出請(qǐng)求。對(duì)于每種方法,你可以像以前一樣查看其響應(yīng):
>>>response=requests.head('https://httpbin.org/get')
>>>response.headers['Content-Type']
'application/json'
>>>response=requests.delete('https://httpbin.org/delete')
>>>json_response=response.json()
>>>json_response['args']
{}
以上就是python中HTTP方法的介紹,希望對(duì)大家有所幫助。更多Python學(xué)習(xí)教程請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。