requests.get 包头
时间: 2023-08-27 11:11:25 浏览: 91
您可以使用 `requests.get` 方法来发送 HTTP GET 请求,并且可以通过设置请求头来包含所需的信息。下面是一个示例:
```python
import requests
url = 'https://www.example.com'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'
}
response = requests.get(url, headers=headers)
print(response.text)
```
在这个示例中,我们指定了一个自定义的 User-Agent 请求头,模拟了一个浏览器的请求。您可以根据自己的需要设置其他的请求头信息。
相关问题
Python如何使用requests库获取http响应包头中的Set-cookie值?
可以使用requests库的get或post方法来发送HTTP请求,然后通过响应对象的headers属性来获取HTTP响应包头。Set-Cookie值是HTTP响应头中的一个属性,可以通过响应对象的headers属性中获取。
以下是示例代码:
```python
import requests
url = 'https://www.example.com/login'
data = {'username': 'your_username', 'password': 'your_password'}
response = requests.post(url, data=data)
# 获取Set-Cookie值
set_cookie = response.headers.get('Set-Cookie')
print(set_cookie)
```
需要注意的是,Set-Cookie值可能包含多个cookie,每个cookie之间用分号分隔,因此需要对Set-Cookie值进行解析。可以使用Python的cookiejar模块来进行解析。
Python如何使用requests库获取http响应包头中的多条Set-cookie值?
可以使用requests库的`headers`属性来获取http响应包头信息,然后使用Python的正则表达式模块re来匹配Set-Cookie字段的值。
示例代码如下:
```python
import requests
import re
url = 'http://example.com'
response = requests.get(url)
# 获取Set-Cookie字段的值
cookies = re.findall('Set-Cookie: (.*?);', str(response.headers))
# 输出所有的Set-Cookie字段的值
for cookie in cookies:
print(cookie)
```
其中,`re.findall`函数使用正则表达式`'Set-Cookie: (.*?);'`匹配所有Set-Cookie字段的值,返回一个列表。然后我们可以遍历这个列表,输出所有的Set-Cookie字段的值。需要注意的是,`str(response.headers)`将响应头转换为字符串,以便于使用正则表达式进行匹配。
阅读全文