python中HTTP方法有哪些
1、除了GET之外,其他流行的HTTP方法包括POST,PUT,DELETE,HEAD,PATCH和OPTIONS。requests為每個HTTP方法提供了一個方法,與get()具有類似的結構:
>>>requests.post
>>>requests.put
>>>requests.delete
>>>requests.head
>>>requests.patch
>>>requests.options
2、每種方法的響應中都會返回頭部,響應正文,狀態碼等。調用每個函數使用相應的HTTP方法向httpbin服務發出請求。對于每種方法,你可以像以前一樣查看其響應:
>>>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方法的介紹,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。