Skip to content
Snippets Groups Projects
Commit 6f562b0a authored by Mayr, Hannes's avatar Mayr, Hannes
Browse files

Version bump and deleting unused files

parent 34ee81df
No related branches found
No related tags found
1 merge request!19merge dev for new release v.0.1.2
Pipeline #786812 passed
......@@ -10,5 +10,5 @@ research data, the plot is based on. Additionally, the script that created the
plot will also be copied to the directory.
"""
__version__ = '0.1.1'
__version__ = '0.1.2'
__author__ = 'Institut Fluidsystemtechnik within nfdi4ing at TU Darmstadt'
# -*- coding: utf-8 -*-
"""Compare if data already exists in published folder to avoid redundancy."""
# Test des Moduls filecmp — File and Directory Comparisons
import filecmp
a = filecmp.cmp("2.py", "test_git.py")
print(a)
"""Handling of hdf5 data files."""
import h5py
# Shows how to create an externalLink (symbolic) to a hdf5 File
# Documentation available at:
# https://docs.h5py.org/en/stable/high/group.html#external-links
myfile = h5py.File('./example.h5', 'w')
myfile['ext link'] = h5py.ExternalLink("testdata_2.h5", "/")
myfile.close()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment