python requests库 options请求
时间: 2023-08-05 13:50:58 浏览: 333
Python中的`requests`库可以发送HTTP请求,包括OPTIONS请求。OPTIONS请求是一种用来查询web服务器支持哪些HTTP请求方法的方法。发送OPTIONS请求的代码如下:
```python
import requests
url = 'https://www.example.com'
response = requests.options(url)
print(response.status_code)
print(response.headers)
```
上述代码会发送一个OPTIONS请求到`https://www.example.com`,并打印出响应的状态码和头部信息。你可以在`requests.options()`方法中添加其他参数,例如请求头,请求体等。
阅读全文