Metadata-Version: 2.4
Name: jmespathextractor
Version: 0.1.0
Summary: 
License-File: LICENSE
Author: Fasih Khatib
Author-email: hellofasih.confound928@passinbox.com
Requires-Python: >=3.11
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: jmespath (>=1.0.1,<2.0.0)
Requires-Dist: pre-commit (>=4.3.0,<5.0.0)
Description-Content-Type: text/markdown

# jmespathextractor  

Extract values from deeply-nested JSON using JMESPath expressions.  

## Installation

```shell
pip install jmespathextractor
```

## Usage

```python
from jmespathextractor import Extractor

instance = {"user": {"name": "John Doe"}}
ex = Extractor({"user_name": "user.name"})
result = ex.extract(instance=instance)

assert result["user_name"] == "John Doe"
```
