如何在bash中与python一起执行curl?

时间:2019-04-08 07:17:16

标签: python bash shell curl

我有一个shell脚本,在其中我得到了jsonresponse。我正在使用python解析json,并且在每个json对象中我想获取id并再次针对shell脚本中的每个应用程序ID提交curl请求。

当前正在这样做,由于语法错误,该操作无法成功完成。你能帮我吗

任何建议都是有帮助的,谢谢。

curl -v -X GET -H "Content-Type: application/json" 'http://host/ws/v1/cluster/apps?state=PENDING' |
    python3 -c "import sys, json; jsonObject = json.load(sys.stdin)['apps']; for row in jsonObject['app']: print(row['id'])"

输出:

{“ apps”:{“ app”:[{“ id”:1},{“ id”:2}]}}

0 个答案:

没有答案