Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
plotID_python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
plotID
plotID_python
Commits
6f562b0a
Commit
6f562b0a
authored
2 years ago
by
Mayr, Hannes
Browse files
Options
Downloads
Patches
Plain Diff
Version bump and deleting unused files
parent
34ee81df
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!19
merge dev for new release v.0.1.2
Pipeline
#786812
passed
2 years ago
Stage: linting
Stage: testing
Stage: docs
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
plotid/__init__.py
+1
-1
1 addition, 1 deletion
plotid/__init__.py
plotid/filecompare.py
+0
-9
0 additions, 9 deletions
plotid/filecompare.py
plotid/hdf5_external_link.py
+0
-11
0 additions, 11 deletions
plotid/hdf5_external_link.py
with
1 addition
and
21 deletions
plotid/__init__.py
+
1
−
1
View file @
6f562b0a
...
@@ -10,5 +10,5 @@ research data, the plot is based on. Additionally, the script that created the
...
@@ -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.
plot will also be copied to the directory.
"""
"""
__version__
=
'
0.1.
1
'
__version__
=
'
0.1.
2
'
__author__
=
'
Institut Fluidsystemtechnik within nfdi4ing at TU Darmstadt
'
__author__
=
'
Institut Fluidsystemtechnik within nfdi4ing at TU Darmstadt
'
This diff is collapsed.
Click to expand it.
plotid/filecompare.py
deleted
100644 → 0
+
0
−
9
View file @
34ee81df
# -*- 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
)
This diff is collapsed.
Click to expand it.
plotid/hdf5_external_link.py
deleted
100644 → 0
+
0
−
11
View file @
34ee81df
"""
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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment