Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 594 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 594 Bytes

jpath

Package jpath provides a query language for selecting elements from an JSON data.

Examples

{
    "arranged": "alphabetically",
    "companies": [
        {"name": "apple"},
        {"name": "facebook"},
        {"name": "github"},
        {"name": "google"}
    ]
}
Expression Result
.arranged alphabetically
.companies[:].name apple facebook github google
.companies[1:3].name facebook github
.companies[^2].name github