Request

Posted sq5288

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Request相关的知识,希望对你有一定的参考价值。

requests的基本使用:

response = requests.get("http://httpbin.org")

带参数的get请求:

方法1:
response = requests.get("http://httpbin.org/get?name=gemey&age=22")    # 参数和地址用?号隔开,参数之间用&连接

方法2:
data = {"name":"germey","age":22}
response = requests.get("http://httpbin.org/get",params=data)
print(response.text)

 

以上是关于Request的主要内容,如果未能解决你的问题,请参考以下文章

Motan在服务provider端用于处理request的线程池

[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段

request.getParameter讲解

Jsp获取Java的重定向赋值(String)

request.getParameter讲解

onRequestPermissionsResult 永远不会在片段中被调用 [重复]