Skip to content

jmespath

2,169 2 56 MIT
1.0.1 (17 Jun 2022) Feb 09 2022 253.6 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


589 1.6.1 (9 months ago) Feb 09 2022 compare
209 0.2.25 (2 years ago) Feb 09 2022 compare
2,237 0.2.16 (4 months ago) May 19 2011 compare

Other Languages

376 1.8.9 (10 months ago) Dec 03 2013 compare
165 19.0.5 (1 year, 10 days ago) Jun 10 2018 compare
255 v1.3.5 (3 months ago) Oct 15 2019 compare
mxj
622 per (1 year, 2 months ago) Feb 09 2017 compare
1,741 4.0.0 (3 years ago) Apr 18 2015 compare
Was this page helpful?