在 Python requests 库的 get 方法中使用标头 [英] Using headers with the Python requests library's get method

查看:29
本文介绍了在 Python requests 库的 get 方法中使用标头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我最近偶然发现了这个用 Python 处理 HTTP 请求的很棒的库;在这里找到 http://docs.python-requests.org/en/latest/index.html.

So I recently stumbled upon this great library for handling HTTP requests in Python; found here http://docs.python-requests.org/en/latest/index.html.

我喜欢使用它,但我不知道如何将标头添加到我的 get 请求中.有帮助吗?

I love working with it, but I can't figure out how to add headers to my get requests. Help?

推荐答案

根据 API,headers都可以用requests.get()传入:

According to the API, the headers can all be passed in with requests.get():

import requests
r=requests.get("http://www.example.com/", headers={"Content-Type":"text"})

这篇关于在 Python requests 库的 get 方法中使用标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆