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培训机构:千锋教育。