openPMD / openPMD-updater

:arrow_double_up: Update openPMD files to newer versions of the openPMD standard

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

openPMD Updater

CI:ubuntu Supported Python Versions License

This repository contains scripts to update existing files to newer versions of the openPMD standard.

Rationale

We want our community to be able to move fast without pulling up a long legacy code trail for old versions. We therefore motivate developers to always implement the latest stable version of the openPMD standard.

At the same time, we want that existing user data can always be read. In order to achieve this, this repository provides a tool and modular library for lightweight meta-data updates. Updates are only supported to go forward to newer releases.

Developer perspective: You only want to implement the latest version(s) of openPMD in order to reduce your development effort. You update timely to new openPMD versions and deprecate or remove support for previous openPMD versions. Now a user provides an openPMD file but the openPMD-standard version in it is too old compared to the standard implementation you rely on. In a Python application, just import the module and (after a confirmation) auto-update the user-given file. If you are not in a python environment, just reject the file gracefully with a note the version in the file is too old and point the user here to update their existing files.

User perspective: You are restoring "old" files from an archive and want to process it with a modern software that supports openPMD. This software might only implement recent versions of openPMD, has no auto-update functionality and rejects your files. Just run the updater command-line tool to update your files manually, then load it in aforementioned software.

Install

pypi version Spack Package Conda Package

Choose one of the install methods below to get started:

TBD

From Source

git clone https://github.com/openPMD/openPMD-updater.git
cd openPMD-updater

# install dependencies
pip install .

# with optional dependencies for testing
pip install .[test]

Usage

CLI

We provide the command-line tools for individual files:

# optional: append --backup
openPMD_updater_h5 -i example.h5

Module

Additionally, the updater tools can be used as Python module in your projects. This allows you to offer a file update to users that try to use your tool with old versions of the openPMD standard (but you might only support newer versions).

from openpmd_updater.Updater import Updater

updater = Updater("example.h5", verbose=False)
updater.update(target_version="2.0.0", in_place=True)

Development

Testing

Additional packages need to be installed for the tests. To install them do:

pip install .[test]

Then one can run the tests as follows:

# all
pytest

# specific
pytest tests/test_backend_h5.py

About

:arrow_double_up: Update openPMD files to newer versions of the openPMD standard

License:ISC License


Languages

Language:Python 100.0%