--- id: jsonpath version: "0.82.2" license: MIT license_treatment: permissive maintenance: abandoned --- # jsonpath — An XPath for JSON License: permissive · Maintenance: abandoned · Downloads: 1.1M/mo ## What it is and what it does jsonpath is a Python port of JSONPath, a query language for JSON documents modeled after XPath for XML. It allows you to extract data from nested JSON structures using path expressions like $.store.book[*].title to select specific elements without manual traversal. The package has no runtime dependencies and works with standard Python data structures. The package is in beta status and has been abandoned for over a year, with no recent commits or active maintenance. While it carries an MIT license and has no known security vulnerabilities, its age and lack of updates mean it may not handle edge cases in modern JSON or work reliably with current Python versions. For new projects, you should verify whether a maintained alternative better suits your needs. Use it for: - Extract specific fields from deeply nested JSON API responses without manual dictionary traversal. - Filter and select elements from JSON arrays using path expressions in data processing pipelines. - Query configuration files or data exports stored in JSON format to retrieve values matching a pattern. - Transform JSON documents by selecting subsets of data based on XPath-like criteria. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Implements JSONPath, a query language for extracting data from JSON documents using XPath-like syntax to navigate and filter nested structures. No—not recommended for new projects. The package is abandoned with no visible repository activity, making it a maintenance liability. While it has no known vulnerabilities and carries a permissive MIT license, the lack of updates raises compatibility and reliability concerns. Consider a maintained JSONPath implementation instead. ## Install pip install jsonpath uv add jsonpath poetry add jsonpath ## Installing jsonpath Before you install: High install friction due to source distribution. Package is abandoned—last release was 1086 days ago with no repository activity visible. Maintenance status makes this a risky choice for new projects. License in practice: MIT license permits commercial and private use with minimal restrictions, requiring only license and copyright notice retention. Quickstart: pip install jsonpath==0.82.2 import jsonpath data = {"store": {"book": [{"title": "Example"}]}} result = jsonpath.jsonpath(data, "$.store.book[*].title") Verify before relying: - Whether this package is actively maintained or has a maintained fork; abandoned status suggests alternatives may be preferable. - Compatibility with modern Python versions beyond what classifiers indicate; Python 2.7 support is listed but likely non-functional. - Whether the JSONPath implementation fully conforms to the specification or has known limitations versus other implementations. ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: high - Maintenance: abandoned - Downloads: 1.1M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags json query language, xpath for json, json path extraction, navigate json structures, json data filtering, json selector, parse json with xpath, abandoned, json-query [View on SkillFed](https://skillfed.io/packages/jsonpath) · [View on PyPI](https://pypi.org/project/jsonpath/)