ホームページ >バックエンド開発 >Python チュートリアル >Python Json の読み取りおよび書き込み操作に JsonPath を使用する方法
JSONPath は、情報抽出クラス ライブラリです。 JSON ドキュメントから指定された情報を抽出するためのツールから派生し、JavaScript、Python、PHP、Java などの複数の言語実装バージョンを提供します。
JSONPath のインストール方法は次のとおりです。 pip install jsonpath
JSONPath 構文と XPATH 構文を比較すると、JSON は構造が明確で、可読性が高く、複雑さが低く、とても合わせやすいです。 JSONPath の構文は XPath に似ています。次の表は、JSONPath と XPath の構文の比較を示しています:
2. コード例bookJson = { "store": { "book":[ { "category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95 }, { "category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99 } ], "bicycle": { "color": "red", "price": 19.95 } } }変数 bookJsonは既に含まれています。この JSON 文字列は、次のコードで逆シリアル化して JSON オブジェクトを取得できます。
books=json.loads(bookJson)1) ストアの下にある自転車の色属性を表示します。
checkurl = "$.store.bicycel.color" print(jsonpath.jsonpath(books, checkurl)) # 输出:['red']2) を出力します。ブックノードに含まれる内容 すべてのオブジェクト:
checkurl = "$.store.book[*]" object_list=jsonpath.jsonpath(books, checkurl) print(object_list)3) ブックノードの最初のオブジェクトを出力:
checkurl = "$.store.book[0]" obj = jsonpath.jsonpath(books, checkurl) print(obj) # 输出: ['category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}]4) ブック内のすべてのオブジェクトに対応する属性タイトル値を出力ノード:
checkurl = "$.store.book[*].title" titles = jsonpath.jsonpath(books, checkurl) print(titles) # 输出: ['Sayings of the Century', 'The Lord of the Rings']5) カテゴリがフィクションであるブック ノード内のすべてのオブジェクトを出力します:
checkurl = "$.store.book[?(@.category=='fiction')]” books=jsonpath.jsonpath(books, checkurl) print(books) # 输出:[{'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lordof the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]6) 価格が 10 未満であるブック ノード内のすべてのオブジェクトを出力します:
checkurl="$.store.book[?(@.price<10)]" books = jsonpath.jsonpath(books, checkurl) print(books) # 输出: [{'category': 'reference', 'author': 'Nigel Rees', 'title':'Sayings of the Century', 'price': 8.95}]7) isb を含む book ノード内のすべてのオブジェクトを出力します: ###
checkurl = "$.store.book[?(@.isb)]" books = jsonpath.jsonpath(books,checkurl) print(books) # 输出: [{'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]
以上がPython Json の読み取りおよび書き込み操作に JsonPath を使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。