gpt4 book ai didi

python - 如何通过请求传递 URL 查询字符串参数

转载 作者:太空宇宙 更新时间:2023-11-03 14:33:10 25 4
gpt4 key购买 nike

我需要获取的 URL 如下所示:

https://example.com//report.php?file=MyFile&params=query=QueryMyFile^SomeParam=x^SomeOtherParam=y^AnotherOne=z

我想使用requests来传递参数;大致如下:

base_url = 'https://example.com//report.php'
params =
{ 'SomeParam': x,
'SomeOtherParam': y,
'AnotherOne': z
}

my_file = requests.get(base_url, params=params)

我怎样才能实现这个目标?

最佳答案

他们在一个名为“params”的查询中接受所有这些内容。

这是一种发送参数的非标准方式,因此,没有内置的方式可以通过请求来实现这一点。您必须手动使用 '^' 字符连接键和值。

关于python - 如何通过请求传递 URL 查询字符串参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47142340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com