Sophie
Sophie
Closes #255 . This Feature shows a Tutorial for writing plugins for HERMES. To do that the git harvest plugin will be in another project. Currently in https://github.com/hermes-hmc/hermes-git
Relates to #246 Write git plugin as harvest source
For a better user experience, there should be good and correct tutorials to understand and adapt the process. - [x] Fix Tutorial for Github (Bug in Postprocess) - [x] Create...
The new model is described here, but should also be described in adr. Especially, the process and the postprocess step.
Closes #385
If we expand a date object it returns a value string (https://w3c.github.io/json-ld-syntax/#example-expanded-value-with-type). ` cont._to_expanded_json("eggs", datetime(2022, 2, 22)) == [ {"@value": "2022-02-22T00:00:00", "@type": "http://schema.org/DateTime"} ` However if we do it the...
During testing in #410 we discovered missing type conversions from list and json dict to expanded_json in the __init__. - ld_dict.is_json_dict - lambda c: isinstance(c, list) Suggestions are in the...