Skip to content

jmespath

2,179 2 57 MIT
1.0.1 (17 Jun 2022) Feb 09 2022 263.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


600 1.7.0 (16 days ago) Feb 09 2022 compare
209 0.2.25 (2 years ago) Feb 09 2022 compare
2,251 0.2.16 (4 months ago) May 19 2011 compare

Other Languages

377 1.8.9 (10 months ago) Dec 03 2013 compare
167 19.0.5 (1 year, 21 days ago) Jun 10 2018 compare
259 v1.3.6 (20 days ago) Oct 15 2019 compare
mxj
622 per (1 year, 3 months ago) Feb 09 2017 compare
1,750 4.0.0 (3 years ago) Apr 18 2015 compare
Was this page helpful?