Skip to content

jmespath

2,130 2 56 MIT
1.0.1 (17 Jun 2022) Feb 09 2022 166.3 million (month)

JMESPath (pronounced “james path”) allows you to declaratively specify how to extract elements from a JSON document.

In web scraping, jmespath is a powerful tool for parsing and reshaping large JSON datasets. Jmespath is fast and easily extendible following it's own powerful query language.

For more see the Json parsing introduction section.

Example Use


import jmespath

data = {
    "data": {
        "info": {
            "products": [
                {"price": {"usd": 1}, "_type": "product", "id": "123"}, 
                {"price": {"usd": 2}, "_type": "product", "id": "345"}
            ]
        }
    }
}

# easily reshape nested dataset to flat structure:
jmespath.search("data.info.products[*].{id:id, price:price.usd}", data)
[{'id': '123', 'price': 1}, {'id': '345', 'price': 2}]

Alternatives / Similar


545 1.6.1 (6 months ago) Feb 09 2022 compare
209 0.2.25 (2 years ago) Feb 09 2022 compare
2,209 0.2.16 (a month ago) May 19 2011 compare

Other Languages

373 1.8.8 (1 year, 16 days ago) Dec 03 2013 compare
160 19.0.5 (9 months ago) Jun 10 2018 compare
250 v1.3.5 (21 days ago) Oct 15 2019 compare
mxj
617 per (11 months ago) Feb 09 2017 compare
1,730 4.0.0 (3 years ago) Apr 18 2015 compare
Was this page helpful?