使用python从标记中提取数据

时间:2017-05-26 10:26:23

标签: html json python-2.7 rest http

我正在尝试使用以下代码通过python rest调用从tag元素中检索数据:

url ="https:abac.com?tag=id:34" 
headers = {"Authorization": token}
response = requests.get(url=url, headers=headers).json()

当我使用上面的代码时,我得到" Bad Request Error"。但是,如果我省略了url中的标记,如下所示,我得到一个有效的json输出

url ="https:abac.com"

我通过python排序了一些检索标签数据的方法,并找到了Beautiful Soup作为选项。但是,由于某些原因,我不允许在我的工作系统上安装此软件包。有人可以分享你的想法吗?

提前致谢。

0 个答案:

没有答案