Used to document all changes from previous releases and collect changes until the next release.
The rdflib upgrade from version 5.0.0 to 6+ introduced breaking changes in the rdflib library. This update fixes these breaks without changing functionality, unpins the rdflib version and defaults to the latest version on install.
The introduction of the rdflib 6+ library restricts the Python support for 3.7+.
It is still possible to install odml with a Python version <=3.6, but these versions are no longer tested and officially supported.
Due to major breaking changes introduced in the upgrade of rdflib 5.0.0 to 6.0.0, the rdflib version is pinned to 5.0.0 until the breaking code has been fixed.
Python 2 has reached end of life. The codebase has been cleaned from Python 2 and Python 3 compatible code, all tests now run exclusively on Python 3 versions.
odml.saveandodmlparser.ODMLWriternow support additional keywords. See issue #402 and PR #403 for details.
RDF subclasses are now properly added by default to any written RDF document. The RDF document will now also include RDF Subclass definitions in addition to the actual data to enable Subclass specific queries. See PR #400 and issue #397 for details.
- Section properties can now be reordered. See PR #398 for details.
- Property values can now be inserted at a specified index. See PR #398 for details.
- Tuples can now be assigned using a list instead of the
"(x;x;...)"syntax as well. See PR #393 and issue #392 for details.
A Python 2 deprecation warning for August 2020 has been added. See issue #387 for details.
See issues #377, #378 and #379 as well as Pull Request #389 for details.
An IssueID enum class as been added to provide identifiers to individual ValidationErrors. The Validation class itself has been refactored to provide the option to create standalone Validation instances with a different set of registered validations than the default library validation.
The Validation class now features the new register_custom_handler, run_validationand report methods to add custom validation handlers to an instance, re-run the validations of an existing Instance and provide a brief report of encountered errors and warnings. The general ValidationError.__repr__ string has been shortened to make the individual ValidationErrors more convenient to print and read. The default Validation is always run when a Document is saved or loaded via the ODMLParser and the Validation.report method is used to provide a warnings.warn message of the following format:
UserWarning: The saved Document contains formal issues. Run 'odml.validation.Validation(doc)' to resolve them.
Validation found 0 errors and 3 warnings in 1 Sections and 1 Properties.
Further changes to the Validation class and behavior include:
- an odml
Documentnow provides avalidatemethod that will run a default Validation and return the Validation instance to provide users with access to encountered issues. - a
validation_idfield has been added to theValidationErrorclass. - standalone Sections and Properties can now be validated.
- Sections and Properties are validated on init.
- the
section_repository_presentvalidation has been removed from the default validation list. Since Sections rarely have repositories set, this validation can lead to spam when validating a Document.
Property and Section now provide a cardinality feature. Users can now define a range how many Values a Property and how many Properties or Sections a Section should have. A cardinality can be set and read via its accessor method and can be set via an additional convenience method. Whenever a cardinality or an affected Value, Section or Property is set, a corresponding validation is triggered. If this a set cardinality for a Property or Section is violated, a message is printed to the command line directly and a warning is issued when a Document is saved or loaded. Every cardinality is saved to and loaded from all available file formats. The full functionality of all cardinality features are documented in the tutorial and is available via readthedocs. For additional details see pull requests #374, #382, #383, #384 and issue #361.
With recent updates the library now respects and enforces Section.type as a required attribute and allows save only with documents where this requirement is satisfied.
To allow backwards file compatibility and ease usage, Section.type is by default set to the string n.s. (not specified), which means files where no Section.type had been specified can be loaded and saved, but will contain n.s. as value for every Sections.type that was previously not specified.
Further the validation run before a document can be saved will issue a warning, if a Section.type with value n.s. is encountered and will still refuse to save with an error, if an empty Section.type is encountered. See PR #376 for details.
- the
DictParser.DictReaderis now able to ignore errors, collect warnings and print corresponding notifications and works now analogous to thexmlparser.XMLReaderbehaviour. See issue #367 for details. - the
ODMLParser.ODMLReaderfor JSON and YAML now usesignore_errorsby default e.g. when using theodml.loadfunction for JSON and YAML odml files.
- fixes an exception when trying to append or extend a
Propertywith dtypetuple. See issue #364 for details. - when trying to set the
nameattribute toNone, it now silently sets the name toidinstead, sincenamemust not be empty. It would be set toidon load and can causeAttributeErrorexceptions with some methods if its not set. - a bug was fixed in
format.revmapwhere the reverse mapping of an odml attribute would always return the case that the attribute is part of the format, even if it was not.
- all deprecation warnings now use the warnings module.
- the
Property.valueattribute deprecation warnings have been unified. See issue #360 for details. - the
base.Sectionable.create_sectionmethod has been updated to conform withSection.__init__. See issue #368 for details. - all saved XML odML files now use the same XML header. See issue #339 for details.
- a function to manually refresh the terminology cache has been added. See issue #202 for details.
- a Validation to note non-human readable
PropertyandSectionnames has been added. See issue #365 for details. - getter and setter methods are added to the
odml.Document.origin_file_nameattribute. See issue #358 for details. - the Exception type in
odml.tools.converters.VersionConverteris changed toodml.tools.parser_utils.ParserException. See issue #359 for details. - the
odml.Property.export_leafmethod now also includes sibling Properties on export. - the
rdf_converterhas been cleaned up, see issues #211 and #345 for details. - the test for the
Section/Propertyorder in documents obtained via theRDFReaderhas been expanded. See issue #265 for details. - tests for Validation errors on
SectionorPropertyinit have been added. See issue #369 for details. - tests writing temporary files now properly clean up after themselves. See issue #381 for details.
- tests now use a common temporary directory to write files and use a constant for accessing the test/resources directory.
- the link to the odML tutorial in the README file now points to python-odml.readthedocs.org; the README file now also includes links to Travis and Coveralls.
- the tutorial now includes descriptions of the
pprintmethod and a link to the odML templates hosting site. Further the tutorial has been updated to include descriptions of the cardinality feature and Validation usage. - introduces major PEP8 fixes to basically all files of the library. See Pull Request #385 for details.
- the class reference now includes the Template, Terminology and Validation classes.
- all usages of the unsafe
yaml.loadcalls are replaced withyaml.save_load. This also prepares for Python 3.9 compatibility. See also issue #350 and pull request #356 for details. - dtype tests now use both
assertRegexpMatchesandassertRegexdepending on the Python version used to prepare for Python 3.9 compatibility while still keeping the Python 2 tests running. - odml style tuple handling is refactored. Now lists of odml style tuples are properly saved to file and can be loaded again. If an invalid format is used to add an odml style tuple, more detailed exception messages are available. Also adds more odml style tuples tests. See issues #250, #353 and #354 for details.
- a deprecation warning is displayed when importing the odml module if a Python version <3.6 is used.
- introduces minor PEP8 fixes to all files and completes docstrings for full documentation.
The XMLWriter can now be used to save an XML odML document with an inline XSL stylesheet for rendered viewing via a web browser.
The document can be saved with the current default G-Node odML document style or with a custom style. When a document containing such a stylesheet is loaded, the style is lost and needs to be provided again as described above. See issue #331 for details.
Subsets of odML documents can now be exported using the introduced export_leaf features for Section and Property.
When invoked on a Section or a Property, the method will return all direct ancestor Sections including all their direct Properties up to the root of the document and return a new, cloned document containing only this particular direct branch. See issue #340 for details.
Since issue #291 the odml package had its pyyaml dependency fixed to version 4.2b4.
This release fixes the original problem with the pyyaml distribution and removes the fix to pyyaml version 4.2b4.
See issue #343 and pull request #344 for details.
The package structure was changed to reduce the number of import cycles and make various parser classes more easily available via the __init__ files. See issues #317 and #333 for details.
The changes to the package structure should not affect any of the main parsers and how they were previously imported nor affect any of the command line scripts provided with this package.
The following changes have been introduced to the package structure:
- a new subdirectory
odml.tools.convertersis added. format_converterandversion_converterare moved into this directory.- since odml-ui depends on the
version_converter, a dummy file is left at its original location. It imports theVersionConverterclass from its new location and prints a deprecation warning. - the dict
RDFConversionFormatsfrom filetools.utilshas been moved toRDF_CONVERSION_FORMATSin filetools.parser_utilsand all usages have been switched to the new dict. - the dict
ConversionFormatsfrom filetools.utilshas been moved to the only file its using it,tools.converters.format_converter. - the now unused file
tools.utilshas been removed. - a new subdirectory
odml.rdfwas added and the filesfuzzy_finderandquery_creatorwere moved into this directory. Both files provide convenience and additional functions for odML specific RDF and are fairly independent from the rest of the library. Conceptually they are best kept separate from other convenience tools and parsers.
- The
section_subclasses.yamlfile is moved from thedocfolder to the newodml/resourcesfolder. This allows usage of the file with all install options. See issue #212 for details. - The RDF subclasses now also support DataCite Section types.
- The
rdf_converternow features a newload_rdf_subclassesfunction, that either provides the content of theresources/subclasses.ymlfile or, if it cannot be accessed, deals with it without breaking theRDFWriter. - Fixes calling the deprecated
odml.Property.valueattribute in therdf_converter. - The
RDFWriterwill now call every odml documentsfinalizemethod to ensure that alllinksandincludesare resolved before exporting to RDF. - The OWL odml ontology file is moved from
doc/root-ontology.ttltoodml/resources/odml-ontology.ttland included inManifest.in. - The RDF namespace is changed from https://g-node.org/projects/odml-rdf# to https://g-node.org/odml-rdf#. This step is taken since the odml-rdf ontology OWL file will be available under this URL. This change includes changes in all code and documentation occurrences in the project.
- Typos and minor inconsistencies where fixed in the odml - RDF subclasses mapping file
resources/section_subclasses.yaml. - The OWL odml ontology file
resources/odml-ontology.ttlhas been restructured:- all available subclasses where moved to their own file section.
- all subclasses that are created via the
resources/section_subclasses.yamlfile have been added to the ontology file as well.
- Value errors concerning
date,timeanddatetimenow contain a message providing the required format. See issue #341 for details.
Support for importing and working with odML templates is added:
- the core library now features the
TemplateHandlerclass to handle import and usage of odML templates. - the default URL to fetch templates from has been set to
https://templates.g-node.org. - all terminology URLs are updated to the new terminology deployment at
https://terminology.g-node.org.
Currently most web browsers no longer support viewing local files that include further local files like stylesheets; check here for additional details. The console script odmlview provides a local webserver that is able to properly serve odML XML files from a local directory and render them correctly, if the appropriate stylesheets are present in the same directory.
'odmlview' sets up a minimal webserver to view odml files saved in the
XML format via the webbrowser. After it is started, the webserver will
open a new tab in the default webbrowser and display the content of
the directory the server was started from. odML files can then be
viewed from there.
To properly render XML, an odML file may contain the element
'<?xml-stylesheet type="text/xsl" href="odmlDocument.xsl"?>' where the
'odmlDocument.xsl' stylesheet should reside in the same directory as the
odML file to be rendered. By using the '--fetch' flag the latest version
of this stylesheet will be downloaded from `templates.g-node.org` to
the current directory when starting up the service.
The console script odmlconversion is renamed to odmlconvert. For backwards compatibility the script will be available as odmlconversion with a deprecation notice.
The pyyaml dependency has been changed to the non-breaking beta version 4.2b4. See issue #291 for details.
- odML entity IDs are automatically added when converting from odML version 1 to odMl version 1.1 for
Document,SectionandPropertyelements. If an ID already exists, it stays the same, if it is compatible with the Python UUID types. Otherwise (also if empty) a new ID is created for the odML entity. Propertycan now be set asintwith value0. See issue #314 for details.- appending and extending of
Propertyvalues of dtypesperson,urlandtextis now possible. See issue #318 for details. - the default
RDFWriterformat is set toturtle. See issue #214 for details. - the
RDFWriternow checks for a given file extension within the RDF document name if accidentally given there. See issue #213 for details. - the
RDFWriternow throws aValueErrorif an unsupported RDF format is given. See issue #215 for details. - the
XMLReadernow properly handles entity creation failures when started with optionignore_errors=True. See issue #276 for details. - the
pprintmethod has been added toDocumentto print while document section. See issue #319 for details. - the README file has been changed from
rstto themdformat. - the current tutorial has been updated to include latest changes.
- the automated builds have been updated to include Python versions 3.7 and 3.8; version 3.4 has been removed since it is no longer supported on travis.
pprint methods have been added to both Section and Property
to print whole Section trees with their child sections and properties.
The __repr__ style of Section and Property has been changed to
be more similar to the nixpy __repr__ style.
Printing a Section now also features the immediate Property child count
in addition to the immediate Section child count. See #309.
To make working with odML more similar to working with the
metadata part of nixpy, the Property.value
attribute has been marked deprecated and the Property.values
attribute has been added. See #308.
Uncertainty is now limited to float only. See #294.
The VersionConverter dealt with an edge case of XML test files with opening tags that were missing their closing tag rendering them broken. Catching this one edge case circumvented opening XML files via lxml, leaving the resulting document open to various encoding problems.
Support to resolve the specific tag edge cases is dropped in favour of properly opening XML files via lxml. See #301.
The odmlconversion convenience console script has been added to convert multiple
previous odML version files to the latest odML version.
When cloning a Section or a Property by default the id of any object is changed
to a new UUID. The cloning methods now feature a new keep_id attribute. If set to
True, the cloned object and any cloned children retain their original id. This
is meant to create exact copies of Section-Property trees in different documents.
When a document is saved, a new validation check makes sure, that a document contains only unique UUIDs this is required due to the introduction of creating clones with identical ids.
pyyamlwas version fixed on 3.13 to circumvent introduced breaking changes in the library. See #291, #292, #296, #298.docoptwas added to support console scripts
- Fixes that an XML file with an UTF-8 encoding file header was not being properly parsed by the
VersionConverterXML parser. See #288, #296. - Fixes the
XMLParserthat when reading a single string value from csv which contains commata, it now remains a single value and is not split up at each comma. See #295, #296. - In the
XMLParserany leading or trailing whitespaces are removed from any string values when it is written to csv. Along the same lines, multiple values that are saved to file via theVersionConverterdo not contain leading whitespaces any longer. See #296. - Thorough encoding and usage of
unicodehas been introduced to all Parsers and Converters to avoid encoding errors with Python 2 and Python 3. See #297.
- Adds
SmartList.sort(). By defaultDocumentandSectionchild lists will retain the order in which child elements were added, but now a sort by name can be manually triggered. See #290. - Adds
SmartListcomparison magic methods to partially address #265. The introduction of the RDF backend led to an issue when comparing odML entities. The used RDF libraryrdflibdoes not respect child order upon loading of a file, odML entities with children can not be compared without sorting the child elements. The added magic methods sort child elements by name before comparison without changing the actual order of the child elements. This only addresses the issue forSectionandPropertychild lists, but does not solve the problem for the order ofProperty.values. See #290.
- A new private attribute
_origin_file_nameis added to theDocumententity. When an odML document is loaded from file, this attribute is now set with the file name from whence the document was loaded. See #297.
- The RDF class
Seqis now used instead ofBagto storeodml.Propertyvalues to respect the order of values. See #292. - Since
rdflibcurrently does not support properSeqbehaviour with RDFliitems, for now the index of the value items will be manually written as RDF properties, whichrdflibsupports when reading an RDF file. See #292. - When writing an RDF file from an odML document that features an
_origin_file_name, the value is exported asodml:hasFileName. See #297. xmlis now the defaultODMLWriterformat when writing a document to RDF since the XML format of RDF is still the format with the broadest acceptance. See #297.
- The
odmltordfconvenience console script has been added to convert multiple odML files to the RDF format from any odML format or version. See #298.
The switch from odML version 1.3 to 1.4 contains many cool updates which should make work more comfortable, but also includes some breaking changes.
- The odML format version number in odML files has changed from "1" to "1.1".
- The odML class hierarchy has been flattened:
- removing
base._baseobjclass, leavingBaseObjectas the root odML class. - removing
doc.Documentclass, leavingBaseDocumentas the only odML Document class. - removing
section.Sectionclass, leavingBaseSectionas the only odML Section class. - removing
property.Propertyclass leavingBasePropertyas the only odML Property class.
- removing
baseobjectandsectionableare renamed toBaseObjectandSectionablerespectively.base.SafeListandbase.SmartListhave been merged,base.SafeListhas been removed.base.SmartListcan now only contain Sections or Properties. See #272.- The
reordermethod is moved from thebaseto theSectionclass. See #267.
- The
Valueclass has been removed. Property.valuenow always holds a list of uniform values.Property.valuealways returns a copy of the actual value list. See #227.- Values can only be changed directly via the
__setitem__method of aProperty Valueattributesuncertainty,unit,dtypeandreferencehave been moved toPropertyand now apply to all values of theProperty.valuelist.- The
Valueattributesfilename,encoderandchecksumhave been removed.
- The
binarydtype has been removed. Providing binary content via odML files is discouraged in favor of providing a reference to the origin files using theURLdtype instead.
- Any
mappingfunctionality has been removed.
XMLReader.fromFile()and.fromString()have been renamed to.from_file()and.from_string()respectively.
- Required attributes of odML entities in
odml.formatwhere changed:Section.name,Section.typeandProperty.nameare the only attributes set to be required for their respective odML entities. See #240. Section.nameandProperty.namecan now beNoneon init. If this is the case, the entities'idvalue is used asnamevalue.- Hardcoded checks for existing
nameattributes in the XML Parser are removed. Only attributes set as required informatare now used to check for missing required odML entity attributes. See #241. - The
nameattribute of aSectionor aPropertycan now only be rewritten if there is no sibling with the same name on the same hierarchical level. See #283.
Document,SectionandPropertynow have anidattribute to uniquely identify any entity. If no valid id is provided when an entity is initialized, an id is automatically generated and assigned.- Adding the
new_id()method toDocument,SectionandPropertywhich generates and sets a new valid id for any entity. See #262.
- Setting a dtype now also supports odML style tuple types. See #254.
- DTypes now always return the defined default values if a value is
Noneor"". - Any boolean dtype value other than
"false", "f", 0, False, "true", "t", 1orTruewill now raise aValueError. See #224
- Adds a
base.Sectionable.extendmethod for child Sections and Properties. See #237. - Refactors the
base.Sectionable.insertand.appendmethods. Only properBaseSectionswith a unique name can be added to the Section child list of aSectionable. - Appending multiple Sections or Properties has been removed from the
appendmethod to mirror Propertyappendfunctionality and sinceextendnow serves this need.
Propertynow provides amergemethod to merge two properties. This will sync all but the dependency and dependencyValue attributes. ValueErrors are raised, if information is set in both properties but are in conflict. See #221.- Adds a
Section.merge_check()method which validates whether a Section including all its sub-sections and sub-properties can properly be merged. AValueErroris raised if any potential merge problem arises. This is necessary since a recursive Section merge cannot be easily rolled back once begun. - A Section merge imports
referenceanddefinitionfrom the "source" Section if they wereNonein the "destination" Section. See #273. - Adds a
strictflag to anymergemethod. Now allSectionandPropertyattribute checks during a merge will only be done, ifstrict=True. Onstrict=FalseaSectionorPropertyattribute will only be replaced with the "source" value, if the "destination" value isNone. Otherwise the "destination" value will be kept and the "source" value lost. See #270.
- When a
Sectionor aPropertyis cloned, a new id is set for the clone and of any cloned children. See #259.
- Tuples of Sections can now no longer be used with
Document.appendsinceDocument.extendshould be used to add multiple new Sections to a Document.
- Adds a
Section.extendmethod.
Propertyhas the new attributevalue_originwhich may contain the origin of the property's value e.g. a filename.Propertyinit now supports setting all attributes as well as its parent.Propertynow providesappend,extendandremovemethods to change the actual value list. This approach is required to ensure DType checks when adding new values to an existing list. See #223.- Only valid dtypes can now be set on
Propertyinit. See #253.
- The default odML terminology repository is set to
http://portal.g-node.org/odml/terminologies/v1.1/terminologies.xml.
- The
XMLParsercan now be run in warning mode: any errors encountered during parsing will just print a warning, but will not stop and exit during the parsing process. - An odML document can now only be saved, if the validation does not show any errors. Saving an invalid document will stop the process before saving and print all encountered errors.
- All parsers are now more relaxed when encountering unsupported or missing tags and only print warnings instead of ending with an exception. Warnings are collected and can be accessed via the parser object.
- When trying to open a file with any of the odML parsers, the document format version number is checked. If the version number does not match the supported one, file loading will fail with an exception.
- Added the
tools.RDFWriterandtoosl.RDFReaderclasses, which enable the export of odML documents to RDF and also provides the used ontology OWL file atdoc/odml_terminology/. - Added the
tools.ODMLWriterandtools.ODMLReaderclasses which serve as an easy entry point to saving and loading for all the supported file formatsXML,YAML,JSONandRDF. - Added the
tools.DictWriterandtools.DictReaderclasses which convert Python dictionary data to odML data and vice versa, which in turn is required for both YAML and JSON format loading and saving. - Removed the
tools.jsonparserfile which is no longer required due to the classes intools.odmlparserandtools.dict_parser. - Added the
tools.FormatConverterclass which enables batch conversion of one odML format into another. - Added the
tools.VersionConverterclass which enables conversion of pre-v1.4 odML files into valid v1.4 odML.- The
VersionConverterconvertsXML,JSONandYAMLbased odML files of odML file version 1.0 to odML file version 1.1. - Only attributes supported by
Document,SectionandPropertyare exported. Any non supported attribute will produce a warning message, the content will be discarded. - The value content is moved from a
Valueobject to its parentPropertyvalue list. - The first encountered
unitoruncertaintyof values of aPropertywill be moved to its parentProperty. Any differing subsequentunitoruncertaintyof values of the samePropertywill produce a warning message, the content will be discarded. - The first
filenameattribute content of aValueis moved to thevalue_originattribute of its parentProperty. - Any g-node terminology URL in
repositoryorlinkis updated from v1.0 to their v1.1 counterparts if available. - A
VersionConverterobject provides a.conversion_loglist attribute to access all info and warning messages after a conversion has taken place. See #234.
- The
- Various installation issues have been resolved for Linux and MacOS.
Falseas well asFare now properly converted to bool values in both Python 2 and 3. See #222.- Fixes saving datetime related values to JSON. See #248.
- odML style custom tuples can now properly be saved using the
XMLParser. Documentnow properly uses the dtypes date setter on init. See #249.- Fixes load errors on Empty and
Noneboolean and datetime related values. See #245. - Excludes
idwhen comparing odML entities for equality. See #260. - When a
Propertyis cloned, the parent of the clone is now properly set toNone. - Avoids an
AttributeErroronget_path()when aPropertyhas no parent. See #256. - Avoids an
AttributeErroronget_merged_equivalent()when aPropertyhas no parent. See #257. - Avoids an error on
Property.append(), if the dtype was not set. See #266. - Makes sure that
Property.append()exits on empty values but accepts0andFalse. - Sets
Property.uncertaintytoNoneif an empty string is passed to it. - Changes the
Property.__init__set attributes order: In the previous set attribute order, the repository attribute was overwritten withNoneby thesuper.__init__after it had been set. - Fixes set
Property.parent = Nonebugs inremove()andinsert()methods. - Consistently use relative imports to address circular imports and remove code that
circumvents previous circular import errors in the
ODMLParserclass. See #199. - Consistently uses
BaseSectionorBaseDocumentfor isinstance checks throughoutbaseinstead of a mixture ofBaseSectionandSection.
- Potential installation issues due to import from
info.py.
- Terminology caching and loading update.
- Terminology section access and type listing functions.
- Define and use common format version number for all parsers.
- Supported format version check: When trying to open a file with any of the odml parsers, first the document format version number is checked. If the found version number does not match the supported one, file loading will fail an exception, since this is the oldest format version. If anyone tries to open a newer format, they should first update their odML package and not use this one.
- Document saving: An odML document can now only be saved, if the validation does not show any errors. Saving an invalid document will exit while printing all encountered errors.
- Parser: All parsers are now more relaxed when encountering unsupported tags or missing tags and only print warnings instead of ending with an exception. Warnings are collected and can be accessed via the parser object (required for display in odml-ui to avoid potential loss of information).
- Package and format information added or updated:
Version,Format version,Contact,Homepage,Author, PyPIClassifiers,Copyright. - Removes the license text from
setup.py. The license text interfered with the PyPI process in a way, that the description was not displayed on PyPI. - Removes the image folder from the project, since they are exclusively used in the outsourced odml-ui project.
- Fixes a bug that prohibits the parsing of
jsonoryamlfiles; #191. - Fixes a bug that fails parsing of
jsonoryamlfiles whenSection.repository,Section.linkorSection.includeare present; #194.
- Expose load, save, and display functions to top level module
- These functions accept a
backendargument that specifies the parser or writer. Can be one ofXML,JSON, orYAML.
- These functions accept a
- move ui to a separate repository https://github.com/g-node/odml-ui
- python3 compatibility
- add json and yaml storage backends