“jsonpath в Python Verwenden” Ответ

jsonpath в Python Verwenden

import json

from jsonpath_ng import jsonpath, parse

json_string = '{"id":1, "name":"Pankaj"}'
json_data = json.loads(json_string)

jsonpath_expression = parse('$.id')

match = jsonpath_expression.find(json_data)

print(match)
print("id value is", match[0].value)
Data Ant

jsonpath в Python Verwenden

$ pip3.7 install jsonpath-ng
Data Ant

jsonpath в Python Verwenden

import json
from jsonpath_ng import jsonpath, parse

with open("db.json", 'r') as json_file:
    json_data = json.load(json_file)

print(json_data)

jsonpath_expression = parse('employees[*].id')

for match in jsonpath_expression.find(json_data):
    print(f'Employee id: {match.value}')
Data Ant

Ответы похожие на “jsonpath в Python Verwenden”

Вопросы похожие на “jsonpath в Python Verwenden”

Больше похожих ответов на “jsonpath в Python Verwenden” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования