在Python的requests库中进行请求头设置非常简单。首先,确保已经安装了requests库。如果没有安装,可以使用以下命令进行安装:
pip install requests
接下来,你可以使用以下代码示例来设置请求头:
import requests
url = 'https://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',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Accept-Language': 'zh-CN,zh;q=0.9',
'Connection': 'keep-alive',
'Cookie': 'your_cookie_here',
}
response = requests.get(url, headers=headers)
print(response.text)
在这个示例中,我们设置了一些常见的请求头,如User-Agent、Accept、Accept-Language等。你可以根据需要添加或修改这些请求头。将your_cookie_here
替换为实际的cookie值(如果有的话)。最后,我们使用requests.get()
方法发送请求并打印响应内容。