在Python中,可以使用jsonpath
模塊來解析和提取JSON數(shù)據(jù)。下面是使用jsonpath
模塊的一些基本操作:
jsonpath
模塊:pip install jsonpath-ng
jsonpath
模塊:import jsonpath
import json
data = '''
{
"name": "John",
"age": 30,
"city": "New York",
"pets": [
{
"name": "Fluffy",
"species": "cat"
},
{
"name": "Fido",
"species": "dog"
}
]
}
'''
json_data = json.loads(data)
jsonpath
模塊提取數(shù)據(jù):# 提取根節(jié)點下的"name"屬性的值
name = jsonpath.jsonpath(json_data, '$.name')[0]
print(name) # 輸出 "John"
# 提取根節(jié)點下的"pets"數(shù)組中的所有"name"屬性的值
pet_names = jsonpath.jsonpath(json_data, '$.pets[*].name')
print(pet_names) # 輸出 ["Fluffy", "Fido"]
# 提取根節(jié)點下的"pets"數(shù)組中的第一個元素的"name"屬性的值
first_pet_name = jsonpath.jsonpath(json_data, '$.pets[0].name')[0]
print(first_pet_name) # 輸出 "Fluffy"
可以通過修改jsonpath
表達式來提取不同的數(shù)據(jù)。jsonpath
表達式的語法參考:https://goessner.net/articles/JsonPath/