From d7f41693a690d8fb2188de2a110e665311c0bb1d Mon Sep 17 00:00:00 2001 From: "Wouter Termont (imec)" Date: Mon, 3 Aug 2026 13:53:10 +0000 Subject: [PATCH 1/2] feat: allow jsonpath extensions --- src/functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions.py b/src/functions.py index 10e2866..fd03875 100644 --- a/src/functions.py +++ b/src/functions.py @@ -2,7 +2,7 @@ import csv from itertools import product import json -import jsonpath_ng as jp +import jsonpath_ng.ext as jp from lxml import etree import re @@ -131,4 +131,4 @@ def to_index(source_value): # parent = g.value(predicate=RML['field'], object=parent) # parent_declared_fieldname = g.value(subject=parent, predicate=RML['fieldName']) # return absolute_fieldname - \ No newline at end of file + From 01695d9e3a85b59b87c37bd8e842adf837ad9d80 Mon Sep 17 00:00:00 2001 From: "Wouter Termont (imec)" Date: Mon, 3 Aug 2026 13:54:40 +0000 Subject: [PATCH 2/2] feat: update jsonpath_ng --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0035c4b..0a75709 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -jsonpath_ng==1.6.0 +jsonpath_ng==1.8.0 pandas==2.2.3 rdflib==7.0.0 lxml==6.0.2