members.json
以下のようなJSONファイルがあります。
{
"took": 670,
"timed_out": false,
"_shards": {
"total": 8,
"successful": 8,
"failed": 0
},
"hits": {
"total": 74,
"max_score": 1,
"hits": [
{
"_index": "2000_270_0",
"_type": "Medical",
"_id": "02:17447847049147026174478:174159",
"_score": 1,
"_source": {
"memberId": "0x7b93910446f91928e23e1043dfdf5bcf",
"memberFirstName": "Uri",
"memberMiddleName": "Prayag",
"memberLastName": "Dubofsky"
}
},
{
"_index": "2000_270_0",
"_type": "Medical",
"_id": "02:17447847049147026174478:174159",
"_score": 1,
"_source": {
"memberId": "0x7b93910446f91928e23e1043dfdf5bcG",
"memberFirstName": "Uri",
"memberMiddleName": "Prayag",
"memberLastName": "Dubofsky"
}
}
]
}
}
bash
スクリプトを使用して解析し、フィールドのリストのみを取得しますmemberId
。
予想される出力は次のとおりです。
memberIds
-----------
0x7b93910446f91928e23e1043dfdf5bcf
0x7b93910446f91928e23e1043dfdf5bcG
以下にbash + pythonコードを追加してみました.bashrc
:
function getJsonVal() {
if [ \( $# -ne 1 \) -o \( -t 0 \) ]; then
echo "Usage: getJsonVal 'key' < /tmp/file";
echo " -- or -- ";
echo " cat /tmp/input | getJsonVal 'key'";
return;
fi;
cat | python -c 'import json,sys;obj=json.load(sys.stdin);print obj["'$1'"]';
}
そして呼ばれた:
$ cat members.json | getJsonVal "memberId"
しかし、それは投げます:
Traceback (most recent call last):
File "<string>", line 1, in <module>
KeyError: 'memberId'
参照
python
、ないbash
、あなたはJSONを解析するために使用しているものです。たとえば、そのエラーは確かにPythonエラーであり、bashエラーではありません。
python
目標が使用されることを意味するわけではありませんpython