gitextract_i_qvwh5i/ ├── .github/ │ ├── tag-changelog-config.js │ └── workflows/ │ ├── deploy.yml │ └── tests.yml ├── .gitignore ├── LICENSE.txt ├── MAINTAINERS.md ├── MANIFEST.in ├── README.rst ├── dpath/ │ ├── __init__.py │ ├── exceptions.py │ ├── options.py │ ├── py.typed │ ├── segments.py │ ├── types.py │ ├── util.py │ └── version.py ├── flake8.ini ├── maintainers_log.md ├── setup.py ├── tests/ │ ├── __init__.py │ ├── test_broken_afilter.py │ ├── test_delete.py │ ├── test_get_values.py │ ├── test_merge.py │ ├── test_new.py │ ├── test_path_get.py │ ├── test_path_paths.py │ ├── test_paths.py │ ├── test_search.py │ ├── test_segments.py │ ├── test_set.py │ ├── test_types.py │ └── test_unicode.py └── tox.ini