91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python?Json讀寫操作之JsonPath怎么使用

發布時間:2023-04-15 14:30:27 來源:億速云 閱讀:139 作者:iii 欄目:開發技術

這篇文章主要介紹了Python Json讀寫操作之JsonPath怎么使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Python Json讀寫操作之JsonPath怎么使用文章都會有所收獲,下面我們一起來看看吧。

    Python Json讀寫操作_JsonPath用法詳解

    1. 介紹

    JSONPath是一種信息抽取類庫,是從JSON文檔中抽取指定信息的工具,提供多種語言實現版本,包括Javascript、Python、PHP和Java。

    JSONPath的安裝方法如下:pip install jsonpath

    JSONPath語法和XPATH語法對比,JSON結構清晰,可讀性高,復雜度低,非常容易匹配。JSONPath的語法與Xpath類似,如下表所示為JSONPath與XPath語法對比:

    Python?Json讀寫操作之JsonPath怎么使用

    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)查看store下的bicycle的color屬性:

    checkurl = "$.store.bicycel.color"
    print(jsonpath.jsonpath(books, checkurl))
    # 輸出:['red']

    2)輸出book節點中包含的所有對象:

    checkurl = "$.store.book[*]"
    object_list=jsonpath.jsonpath(books, checkurl)
    print(object_list)

    3)輸出book節點的第一個對象:

    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)輸出book節點中所有對象對應的屬性title值:

    checkurl = "$.store.book[*].title"
    titles = jsonpath.jsonpath(books, checkurl)
    print(titles)
    # 輸出: ['Sayings of the Century', 'The Lord of the Rings']

    5)輸出book節點中category為fiction的所有對象:

    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)輸出book節點中所有價格小于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)輸出book節點中所有含有isb的對象:

    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怎么使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Python Json讀寫操作之JsonPath怎么使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    青铜峡市| 福贡县| 青岛市| 项城市| 合山市| 德江县| 合阳县| 岑巩县| 九江县| 农安县| 高尔夫| 河南省| 德钦县| 任丘市| 连州市| 洛浦县| 阳谷县| 昭觉县| 荃湾区| 巴彦县| 新野县| 道孚县| 雷波县| 海城市| 江西省| 铜梁县| 曲阳县| 宁德市| 祥云县| 大厂| 永顺县| 儋州市| 柳江县| 建宁县| 宿州市| 邳州市| 凤阳县| 夏邑县| 万源市| 陵川县| 雷山县|