When using the package, a parsing error occurred when opening the metadata file in oep_oedialect_oem2orm.py
Changing the argument in line 169 from "r" to "rb" fixed the issue.
with open(metadata_file, "rb") as metadata_json:
metadata = json.loads(metadata_json.read())
tables_raw = jmespath.search("resources", metadata)
When using the package, a parsing error occurred when opening the metadata file in
oep_oedialect_oem2orm.pyChanging the argument in line 169 from "r" to "rb" fixed the issue.