当前位置: 首页 > 图灵资讯 > 行业资讯> requests在python中如何发送请求

requests在python中如何发送请求

来源:图灵python
时间: 2024-09-09 10:17:20

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。

1、部分参数被要求获得参数

1) url(要求的URL地址,必要的 )

importrequests
url="http://www.baidu.com"
resp=requests.get(url)#将相应的get请求发送到url对应的服务器,以获得相应的。

2)headers参数(请求头,可选)

importrequests
url=r"https://www.baidu.com/s"
Headers={"User-Agent":"Mozilla5.0(WindowsNT10.0.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/71.0.3578.98Safari/537."
}
response=requests.get(url=url,headers=Headers)

2、requests.get请求实例

类似在任何时候进行 requests.get() 你们都在做两件主要的事情。首先,你正在建造一个 Request对象, 该对象将被发送到服务器请求或查询某些资源。其二,一旦 requests 从服务器返回的响应会产生一个响应 Response 对象。响应对象包括服务器返回的所有信息和您原创的信息 Request 对象。以下是一个简单的请求,从 Wikipedia 服务器获得一些非常重要的信息:

>>>r=requests.get('http://en.wikipedia.org/wiki/Monty_Python')

若要访问服务器返回给我们的响应头信息,可以这样做:

>>>r.headers
{'content-length':'56170','x-content-type-options':'nosniff','x-cache':
'HITfromcp1006.eqiad.wmnet,010.eqiad.wmnet','content-encoding':
'gzip','age':'3080','content-language':'en','vary':'Accept-Encoding,Cookie',
'server':'Apache','last-modified':'Wed,13Jun201201:33:50GMT',
'connection':'close','cache-control':'private,s-maxage=0,max-age=0,
must-revalidate','date':'Thu,14Jun201212:59:39GMT','content-type':
'text/html;charset=UTF-8','x-cache-lookup':'HITfromcp1006.eqiad.wmnet:3128,
010.eqiad.wmnet:80'}

然而,如果我们想得到发送到服务器的请求的头部,我们可以简单地访问请求,然后是请求的头部:

>>>r.request.headers
{'Accept-Encoding':'identity,deflate,compress,gzip',
'Accept':'*/*','User-Agent':'python-requests/0.13.1'}

以上是requests在python中发送请求的方法。在了解了基本的get参数后,您可以尝试向服务器发送请求,看看您是否可以独立完成相关操作。