ネストされたPythonディクショナリのXPathタイプのクエリを定義する方法はありますか?
このようなもの:
foo = {
'spam':'eggs',
'morefoo': {
'bar':'soap',
'morebar': {'bacon' : 'foobar'}
}
}
print( foo.select("/morefoo/morebar") )
>> {'bacon' : 'foobar'}
ネストされたリストも選択する必要がありました;)
これは、@jellybeanのソリューションを使用して簡単に実行できます。
def xpath_get(mydict, path):
elem = mydict
try:
for x in path.strip("/").split("/"):
try:
x = int(x)
elem = elem[x]
except ValueError:
elem = elem.get(x)
except:
pass
return elem
foo = {
'spam':'eggs',
'morefoo': [{
'bar':'soap',
'morebar': {
'bacon' : {
'bla':'balbla'
}
}
},
'bla'
]
}
print xpath_get(foo, "/morefoo/0/morebar/bacon")
[2016年編集]この質問と受け入れられた答えは古くからあります。新しい回答は、元の回答よりもうまくいく可能性があります。しかし、私はそれらをテストしなかったので、受け入れられた答えを変更しません。