Skip to main content

C++ & Python API for Scientific I/O with openPMD

Project description

C++ & Python API for Scientific I/O with openPMD

Supported openPMD Standard Doxygen Gitter chat Supported Platforms License DOI
CodeFactor Coverage Status
Documentation Status Linux/OSX Build Status dev Windows Build Status dev PyPI Wheel Release Nightly Packages Status Coverity Scan Build Status

openPMD is an open meta-data schema that provides meaning and self-description for data sets in science and engineering. See the openPMD standard for details of this schema.

This library provides a reference API for openPMD data handling. Since openPMD is a schema (or markup) on top of portable, hierarchical file formats, this library implements various backends such as HDF5, ADIOS1, ADIOS2 and JSON. Writing & reading through those backends and their associated files are supported for serial and MPI-parallel workflows.

Usage

C++

C++17 C++17 API: Beta

#include <openPMD/openPMD.hpp>
#include <iostream>

// ...

auto s = openPMD::Series("samples/git-sample/data%T.h5", openPMD::Access::READ_ONLY);

for( auto const & [step, it] : s.iterations ) {
    std::cout << "Iteration: " << step << "\n";

    for( auto const & [name, mesh] : it.meshes ) {
        std::cout << "  Mesh '" << name << "' attributes:\n";
        for( auto const& val : mesh.attributes() )
            std::cout << "    " << val << '\n';
    }

    for( auto const & [name, species] : it.particles ) {
        std::cout << "  Particle species '" << name << "' attributes:\n";
        for( auto const& val : species.attributes() )
            std::cout << "    " << val << '\n';
    }
}

Python

Python3 Python3 API: Beta

import openpmd_api as io

# ...

series = io.Series("samples/git-sample/data%T.h5", io.Access.read_only)

for k_i, i in series.iterations.items():
    print("Iteration: {0}".format(k_i))

    for k_m, m in i.meshes.items():
        print("  Mesh '{0}' attributes:".format(k_m))
        for a in m.attributes:
            print("    {0}".format(a))

    for k_p, p in i.particles.items():
        print("  Particle species '{0}' attributes:".format(k_p))
        for a in p.attributes:
            print("    {0}".format(a))

More!

Curious? Our manual shows full read & write examples, both serial and MPI-parallel!

Dependencies

Required:

  • CMake 3.15.0+
  • C++17 capable compiler, e.g., g++ 7+, clang 7+, MSVC 19.15+, icpc 19+, icpx

Shipped internally in share/openPMD/thirdParty/:

I/O backends:

while those can be built either with or without:

  • MPI 2.1+, e.g. OpenMPI 1.6.5+ or MPICH2

Optional language bindings:

  • Python:
    • Python 3.8 - 3.11
    • pybind11 2.10.1+
    • numpy 1.15+
    • mpi4py 2.1+ (optional, for MPI)
    • pandas 1.0+ (optional, for dataframes)
    • dask 2021+ (optional, for dask dataframes)
  • CUDA C++ (optional, currently used only in tests)

Installation

Spack Package Conda Package Brew Package PyPI Package From Source

Our community loves to help each other. Please report installation problems in case you should get stuck.

Choose one of the install methods below to get started:

Spack

Spack Version Spack Platforms Spack Use Case

# optional:               +python +adios1 -adios2 -hdf5 -mpi
spack install openpmd-api
spack load openpmd-api

Conda

Conda Version Conda Platforms Conda Use Case Conda Downloads

# optional:                      OpenMPI support  =*=mpi_openmpi*
# optional:                        MPICH support  =*=mpi_mpich*
conda create -n openpmd -c conda-forge openpmd-api
conda activate openpmd

Brew

Brew Version Brew Platforms Brew Use Case

brew tap openpmd/openpmd
brew install openpmd-api

PyPI

PyPI Version PyPI Platforms PyPI Use Case PyPI Format PyPI Downloads

On very old macOS versions (<10.9) or on exotic processor architectures, this install method compiles from source against the found installations of HDF5, ADIOS1, ADIOS2, and/or MPI (in system paths, from other package managers, or loaded via a module system, ...).

# we need pip 19 or newer
# optional:                   --user
python3 -m pip install -U pip

# optional:                        --user
python3 -m pip install openpmd-api

If MPI-support shall be enabled, we always have to recompile:

# optional:                                    --user
python3 -m pip install -U pip setuptools wheel
python3 -m pip install -U cmake

# optional:                                                                   --user
openPMD_USE_MPI=ON python3 -m pip install openpmd-api --no-binary openpmd-api

For some exotic architectures and compilers, you might need to disable a compiler feature called link-time/interprocedural optimization if you encounter linking problems:

export CMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
# optional:                                                --user
python3 -m pip install openpmd-api --no-binary openpmd-api

Additional CMake options can be passed via individual environment variables, which need to be prefixed with openPMD_CMAKE_.

From Source

Source Use Case

openPMD-api can also be built and installed from source using CMake:

git clone https://github.com/openPMD/openPMD-api.git

mkdir openPMD-api-build
cd openPMD-api-build

# optional: for full tests, with unzip
../openPMD-api/share/openPMD/download_samples.sh

# for own install prefix append:
#   -DCMAKE_INSTALL_PREFIX=$HOME/somepath
# for options append:
#   -DopenPMD_USE_...=...
# e.g. for python support add:
#   -DopenPMD_USE_PYTHON=ON -DPython_EXECUTABLE=$(which python3)
cmake ../openPMD-api

cmake --build .

# optional
ctest

# sudo might be required for system paths
cmake --build . --target install

The following options can be added to the cmake call to control features. CMake controls options with prefixed -D, e.g. -DopenPMD_USE_MPI=OFF:

CMake Option Values Description
openPMD_USE_MPI AUTO/ON/OFF Parallel, Multi-Node I/O for clusters
openPMD_USE_HDF5 AUTO/ON/OFF HDF5 backend (.h5 files)
openPMD_USE_ADIOS1 AUTO/ON/OFF ADIOS1 backend (.bp files up to version BP3) - deprecated
openPMD_USE_ADIOS2 AUTO/ON/OFF ADIOS2 backend (.bp files in BP3, BP4 or higher)
openPMD_USE_PYTHON AUTO/ON/OFF Enable Python bindings
openPMD_USE_INVASIVE_TESTS ON/OFF Enable unit tests that modify source code 1
openPMD_USE_VERIFY ON/OFF Enable internal VERIFY (assert) macro independent of build type 2
openPMD_INSTALL ON/OFF Add installation targets
openPMD_INSTALL_RPATH ON/OFF Add RPATHs to installed binaries
Python_EXECUTABLE (newest found) Path to Python executable

1 e.g. changes C++ visibility keywords, breaks MSVC 2 this includes most pre-/post-condition checks, disabling without specific cause is highly discouraged

Additionally, the following libraries are shipped internally. The following options allow to switch to external installs:

CMake Option Values Library Version
openPMD_USE_INTERNAL_CATCH ON/OFF Catch2 2.13.10+
openPMD_USE_INTERNAL_PYBIND11 ON/OFF pybind11 2.10.1+
openPMD_USE_INTERNAL_JSON ON/OFF NLohmann-JSON 3.9.1+
openPMD_USE_INTERNAL_TOML11 ON/OFF toml11 3.7.1+

By default, this will build as a shared library (libopenPMD.[so|dylib|dll]) and installs also its headers. In order to build a static library, append -DBUILD_SHARED_LIBS=OFF to the cmake command. You can only build a static or a shared library at a time.

By default, the Release version is built. In order to build with debug symbols, pass -DCMAKE_BUILD_TYPE=Debug to your cmake command.

By default, tests, examples and command line tools are built. In order to skip building those, pass OFF to these cmake options:

CMake Option Values Description
openPMD_BUILD_TESTING ON/OFF Build tests
openPMD_BUILD_EXAMPLES ON/OFF Build examples
openPMD_BUILD_CLI_TOOLS ON/OFF Build command-line tools
openPMD_USE_CUDA_EXAMPLES ON/OFF Use CUDA in examples

Linking to your project

The install will contain header files and libraries in the path set with -DCMAKE_INSTALL_PREFIX.

CMake

If your project is using CMake for its build, one can conveniently use our provided openPMDConfig.cmake package, which is installed alongside the library.

First set the following environment hint if openPMD-api was not installed in a system path:

# optional: only needed if installed outside of system paths
export CMAKE_PREFIX_PATH=$HOME/somepath:$CMAKE_PREFIX_PATH

Use the following lines in your project's CMakeLists.txt:

# supports:                       COMPONENTS MPI NOMPI HDF5 ADIOS1 ADIOS2
find_package(openPMD 0.15.0 CONFIG)

if(openPMD_FOUND)
    target_link_libraries(YourTarget PRIVATE openPMD::openPMD)
endif()

Alternatively, add the openPMD-api repository source directly to your project and use it via:

add_subdirectory("path/to/source/of/openPMD-api")

target_link_libraries(YourTarget PRIVATE openPMD::openPMD)

For development workflows, you can even automatically download and build openPMD-api from within a depending CMake project. Just replace the add_subdirectory call with:

include(FetchContent)
set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
set(openPMD_BUILD_CLI_TOOLS OFF)
set(openPMD_BUILD_EXAMPLES OFF)
set(openPMD_BUILD_TESTING OFF)
set(openPMD_BUILD_SHARED_LIBS OFF)  # precedence over BUILD_SHARED_LIBS if needed
set(openPMD_INSTALL OFF)            # or instead use:
# set(openPMD_INSTALL ${BUILD_SHARED_LIBS})  # only install if used as a shared library
set(openPMD_USE_PYTHON OFF)
FetchContent_Declare(openPMD
  GIT_REPOSITORY "https://github.com/openPMD/openPMD-api.git"
  GIT_TAG        "0.15.0")
FetchContent_MakeAvailable(openPMD)

Manually

If your (Linux/OSX) project is build by calling the compiler directly or uses a manually written Makefile, consider using our openPMD.pc helper file for pkg-config, which are installed alongside the library.

First set the following environment hint if openPMD-api was not installed in a system path:

# optional: only needed if installed outside of system paths
export PKG_CONFIG_PATH=$HOME/somepath/lib/pkgconfig:$PKG_CONFIG_PATH

Additional linker and compiler flags for your project are available via:

# switch to check if openPMD-api was build as static library
# (via BUILD_SHARED_LIBS=OFF) or as shared library (default)
if [ "$(pkg-config --variable=static openPMD)" == "true" ]
then
    pkg-config --libs --static openPMD
    # -L/usr/local/lib -L/usr/lib/x86_64-linux-gnu/openmpi/lib -lopenPMD -pthread /usr/lib/libmpi.so -pthread /usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_cxx.so /usr/lib/libmpi.so /usr/lib/x86_64-linux-gnu/hdf5/openmpi/libhdf5.so /usr/lib/x86_64-linux-gnu/libsz.so /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/x86_64-linux-gnu/libdl.so /usr/lib/x86_64-linux-gnu/libm.so -pthread /usr/lib/libmpi.so -pthread /usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_cxx.so /usr/lib/libmpi.so
else
    pkg-config --libs openPMD
    # -L${HOME}/somepath/lib -lopenPMD
fi

pkg-config --cflags openPMD
# -I${HOME}/somepath/include

Author Contributions

openPMD-api is developed by many people. It was initially started by the Computational Radiation Physics Group at HZDR as successor to libSplash, generalizing the successful HDF5 & ADIOS1 implementations in PIConGPU. The following people and institutions contributed to openPMD-api:

  • Axel Huebl (HZDR, now LBNL): project lead, releases, documentation, automated CI/CD, Python bindings, Dask, installation & packaging, prior reference implementations
  • Franz Poeschel (CASUS): JSON & ADIOS2 backend, data staging/streaming, reworked class design
  • Fabian Koller (HZDR): initial library design and implementation with HDF5 & ADIOS1 backend
  • Junmin Gu (LBNL): non-collective parallel I/O fixes, ADIOS improvements, benchmarks

Further thanks go to improvements and contributions from:

Grants

The openPMD-api authors acknowledge support via the following programs. Supported by the CAMPA collaboration, a project of the U.S. Department of Energy, Office of Science, Office of Advanced Scientific Computing Research and Office of High Energy Physics, Scientific Discovery through Advanced Computing (SciDAC) program. Previously supported by the Consortium for Advanced Modeling of Particles Accelerators (CAMPA), funded by the U.S. DOE Office of Science under Contract No. DE-AC02-05CH11231. Supported by the Exascale Computing Project (17-SC-20-SC), a collaborative effort of two U.S. Department of Energy organizations (Office of Science and the National Nuclear Security Administration). This project has received funding from the European Unions Horizon 2020 research and innovation programme under grant agreement No 654220. This work was partially funded by the Center of Advanced Systems Understanding (CASUS), which is financed by Germany's Federal Ministry of Education and Research (BMBF) and by the Saxon Ministry for Science, Culture and Tourism (SMWK) with tax funds on the basis of the budget approved by the Saxon State Parliament.

Transitive Contributions

openPMD-api stands on the shoulders of giants and we are grateful for the following projects included as direct dependencies:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openPMD-api-0.15.2.tar.gz (994.0 kB view details)

Uploaded Source

Built Distributions

openPMD_api-0.15.2-pp310-pypy310_pp73-win_amd64.whl (3.2 MB view details)

Uploaded PyPy Windows x86-64

openPMD_api-0.15.2-pp310-pypy310_pp73-macosx_11_0_x86_64.whl (5.7 MB view details)

Uploaded PyPy macOS 11.0+ x86-64

openPMD_api-0.15.2-pp39-pypy39_pp73-win_amd64.whl (3.2 MB view details)

Uploaded PyPy Windows x86-64

openPMD_api-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

openPMD_api-0.15.2-pp39-pypy39_pp73-macosx_11_0_x86_64.whl (5.7 MB view details)

Uploaded PyPy macOS 11.0+ x86-64

openPMD_api-0.15.2-pp38-pypy38_pp73-win_amd64.whl (3.2 MB view details)

Uploaded PyPy Windows x86-64

openPMD_api-0.15.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

openPMD_api-0.15.2-pp38-pypy38_pp73-macosx_11_0_x86_64.whl (5.7 MB view details)

Uploaded PyPy macOS 11.0+ x86-64

openPMD_api-0.15.2-cp313-cp313-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.13 Windows x86-64

openPMD_api-0.15.2-cp313-cp313-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

openPMD_api-0.15.2-cp313-cp313-musllinux_1_2_i686.whl (8.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

openPMD_api-0.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

openPMD_api-0.15.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

openPMD_api-0.15.2-cp313-cp313-macosx_11_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ x86-64

openPMD_api-0.15.2-cp313-cp313-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

openPMD_api-0.15.2-cp312-cp312-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.12 Windows x86-64

openPMD_api-0.15.2-cp312-cp312-win32.whl (2.8 MB view details)

Uploaded CPython 3.12 Windows x86

openPMD_api-0.15.2-cp312-cp312-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

openPMD_api-0.15.2-cp312-cp312-musllinux_1_2_i686.whl (8.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_i686.whl (7.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

openPMD_api-0.15.2-cp312-cp312-macosx_11_0_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ x86-64

openPMD_api-0.15.2-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

openPMD_api-0.15.2-cp311-cp311-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

openPMD_api-0.15.2-cp311-cp311-win32.whl (2.8 MB view details)

Uploaded CPython 3.11 Windows x86

openPMD_api-0.15.2-cp311-cp311-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

openPMD_api-0.15.2-cp311-cp311-musllinux_1_2_i686.whl (8.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_i686.whl (7.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

openPMD_api-0.15.2-cp311-cp311-macosx_11_0_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ x86-64

openPMD_api-0.15.2-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

openPMD_api-0.15.2-cp310-cp310-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

openPMD_api-0.15.2-cp310-cp310-win32.whl (2.8 MB view details)

Uploaded CPython 3.10 Windows x86

openPMD_api-0.15.2-cp310-cp310-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

openPMD_api-0.15.2-cp310-cp310-musllinux_1_2_i686.whl (8.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_i686.whl (7.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

openPMD_api-0.15.2-cp310-cp310-macosx_11_0_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

openPMD_api-0.15.2-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

openPMD_api-0.15.2-cp39-cp39-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

openPMD_api-0.15.2-cp39-cp39-win32.whl (2.8 MB view details)

Uploaded CPython 3.9 Windows x86

openPMD_api-0.15.2-cp39-cp39-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

openPMD_api-0.15.2-cp39-cp39-musllinux_1_2_i686.whl (8.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_i686.whl (7.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

openPMD_api-0.15.2-cp39-cp39-macosx_11_0_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

openPMD_api-0.15.2-cp39-cp39-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

openPMD_api-0.15.2-cp38-cp38-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

openPMD_api-0.15.2-cp38-cp38-win32.whl (2.8 MB view details)

Uploaded CPython 3.8 Windows x86

openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_i686.whl (7.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

openPMD_api-0.15.2-cp38-cp38-macosx_11_0_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

openPMD_api-0.15.2-cp38-cp38-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

File details

Details for the file openPMD-api-0.15.2.tar.gz.

File metadata

  • Download URL: openPMD-api-0.15.2.tar.gz
  • Upload date:
  • Size: 994.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.17

File hashes

Hashes for openPMD-api-0.15.2.tar.gz
Algorithm Hash digest
SHA256 6c441be362d9a2c7f6de10b18ad003f162da82722e1d978a9631b59bf63a2ede
MD5 31f85620215b9bc86b70b1ad96ba4588
BLAKE2b-256 4396585086797417d72eda388264e3a086967cd7da67a58496c5ef1b6f5c92d8

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 03d9751bab11f6c52e50bc5a638fecaea922510b6c0d4c387cb8e929a8e46e6e
MD5 d0153b388a19066670ccbd7518a5bb92
BLAKE2b-256 88e5d0f8e372024ebe9a3b3f40a31481714fa3ad6788457e3226c96cd075c944

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d474284e94469ebbf7a987f8f2be093bbe4ec4ce365373a0f91f4d60087f4bdb
MD5 f86285d405c8df9b89c3ef1258e5dfaa
BLAKE2b-256 be637a62032236d19a0ecf9ce5a8a25645048504c371197f3ec0b292006afee6

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp310-pypy310_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4ad8511b29e3d175b958f19933b6114321046b7c0225bddea251573103ce8064
MD5 0c3f94a275e8f1db8815e01ad4ca6ec0
BLAKE2b-256 9bfeea51179826df9aefa36dfb203fa7ee854c81299631838806ca1df519f2e2

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c4af8b4088270843ea9b35185bcf33dbd4cd178740fdb5416028dad944057167
MD5 93c5e444498f1244b5cd7ac080f318df
BLAKE2b-256 3a0ab028a118d4f0c7fafffb45aaa20f3f7bf5a08fec80f48abf54e142438c32

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bd0426352d46c6b2ae146227a7dcf47cded49d5bf5d376d158f272a77c9579c
MD5 a7179b779498540f809dbf4d671acf3c
BLAKE2b-256 5271fd753506f128f186e2b90d28b979a45236f2dc2933718c0286cdd884817a

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp39-pypy39_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp39-pypy39_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 916657c2c150495a9f59904cd576d866cc900097d98648704ac8d6a592440e05
MD5 511440393dd8ff223e395b537b1629df
BLAKE2b-256 46eeb9cd8bfb6f6174a8173847cfc74aa60e48fdf8cc9a6154d547db1a8b4ea7

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0d501dfb8d48f783a4032aabd34d6e462618781aeda79904af5b1505accac53f
MD5 efbf8f484480a73f864300a94ae24be9
BLAKE2b-256 13ccd13596096e000d161cb43c67d5aa843e0cc5152962e505448cbf325d05e9

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 151caa9f0ff6eede776f474363fa17af92dd59014892db0124eec168b1837157
MD5 3d723879e026face8a543a3a25eb08fc
BLAKE2b-256 ecb1ad50af981c110c9cda3dfc476b9bed3661e0b633b89beb321d83b7cde52d

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-pp38-pypy38_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-pp38-pypy38_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d3bad9b056cc8ec8528e854441bed63ce69379fe671f5e56ff8d331e0fb562cd
MD5 0fcccd7a418421b441446a7a884cddfa
BLAKE2b-256 2926a6a23a29f4f7de7ac676545b3aea05f32c1112c9541ad6f1b3c6fb3b93e1

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c06ba5ed83c33d28d6030e8122de625f763ead52ad649ca4957449205d366c6f
MD5 5e25a175396e6fffbf08b5c109313bf2
BLAKE2b-256 b61af1656b57bc6624a891b1265cedeeeee1468616bbf353faeb4cba1f5aa352

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ec311d4e32bf9ae5dc8baa5e671854d8543807d181398355b858c2ed7325120
MD5 0e44149040a98c75f2cba6638c81f877
BLAKE2b-256 b1de8af2eeb4a366e7bc96634d97caf0bb2ff867669271ba76d7ba952999bf71

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9aca6d78f6cbff74f35af2bc547f7130acd871f0069f8538f7a049c0886bd7e
MD5 285e3613557ce76c0af3368d410980ef
BLAKE2b-256 d6195b0d0ac156970244306462bc2b8d45ed7eac0dc542e4dfdc74690dd68346

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6b3b291573ac34e26e2868192e3e39b2f96d179c259bf39dd353300c610af64
MD5 38cead494c93bd3321ef68a9dfe5536b
BLAKE2b-256 842e0f6f12b8c52d4a9488c788992c2aa58e895b63373902d313cb144a7f1ab1

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afc369f9013ec79aaea428c415d1f3b9e3e439c4d23b2c516af5bac37311f6fc
MD5 46816473ce6cdd3a639500023db22eee
BLAKE2b-256 cab944f684607593281e92cebf21082cd12268f56410e4472825d701db0847eb

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 36e9fc7f975a34ff4aa17fd874d127bace717692df89c130611700329178126e
MD5 6fc54e9db061fd12c1398cb1b0d21986
BLAKE2b-256 cc4ef31779ef25537f3ae772c532ac4e0ae4ad1cf518be966fe000c82500607e

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 347c1805e342b6abb6c7cc418bc54c55e7334200c740680a7051d89ed3508675
MD5 8d294a12fd6a982cb27f12850615454d
BLAKE2b-256 f554d589c65f5508846eafdc35bd7e8059147f2f39c3de7077d04635d9443f8d

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d569673df33ab12404564546b434d68b25669af6552f6f2f442f4f89ac44c873
MD5 5bf3db98a9f1959fcac521e10163d24f
BLAKE2b-256 d37aff214fd446db31c81f1d06201817c8974a6dfeaf8897ee13090233509447

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a976509916f239b1c8f5b7b7ebc288a61249c0180f10ae5b5cf93b9beffeb821
MD5 3c47339136f4678aea486967e230cbcc
BLAKE2b-256 44cb2a3f382bc378e86a32e7a6d5bd41b147b040dd80ca2902b44bb67b8b2a42

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79ff691908e4fdfbc3ffac1dc652af7fbb460ec14ad5c397fa565c5ff75bce0e
MD5 2ec857a28e259ca476ab0f47d2136480
BLAKE2b-256 f01ccc21b2f57167d1bc44cc2f266a4086e5cfc658135ad0c703e09aa98cd935

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89438a4b5adbdf97fe75fe1cb14f85ee14ca43781e8028e4c435ece4de8b76ea
MD5 5c14ef6188e1fb140b959c72dd1613ca
BLAKE2b-256 7baa1a02fcd3cd958ad0221b54d873053e4c865f24793b7146648013961ed3ec

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7e9ec383619f0a58ea0489470ba95070bedc08a48a83a88ba67d90705eed38b
MD5 af22ad61d4a31b9c9f0ab0677822b1a6
BLAKE2b-256 e12c5dc47454c88428ca22991d8fcc4ef8b0848472156961ffd849dabaa38401

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f30991ccacac8f7b0fa5ed74353145e88dc7fb6d35ba9dee1a9958b95ed5f49a
MD5 d76a7eea581f92bcbb1763011d5cca50
BLAKE2b-256 b8e4598295b7a8718ef32db47fc25d9e0f5311eb5948d28bb1cb6539e719c707

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5118891b2d301b1861266177304a4a3ee853109e6c9f3ad0d53b125a6fcb425b
MD5 267b9a8751820c223bc0d64b170af29f
BLAKE2b-256 31de491426b36de7860cf4ad6975f04d3b9f706fa73bc2ac4dd7358cd993e8bb

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2aa6c872ee78a28eb6623ade765960cc193143ce420420f3fab5938dc6e164b0
MD5 28b35ca217ce7cf3d2d2613fcceeedae
BLAKE2b-256 3261c338a8403265c0fc7af93b53dfa69d3ee294218a530d7d1b3c19f4d3e559

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2e99d0749b4bbb0a91286c73aece7af917f5ec90dc6e8fc4abcb8d5adcef6be
MD5 25c2ea79cfc691c7f2d7a4427279ff90
BLAKE2b-256 3b8a45a07f6a810a45041f4794d57627ef935d85ae33e7f6a8e880abb842e02c

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5001cb0c345bdf58eaec3fad4b6de9c9680dc6fc5851df5b0a56cb5ca7677665
MD5 0bf433200e6386a26a2e5b09e8fd1a00
BLAKE2b-256 40912a1f53e8efc694cc87b2c9ae1172715d58b2383ad3891b4e0b729c8a325a

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 588701220997bdf1c4829ba3789ffff8287409fad43e53d7a0604b2a6e277d07
MD5 409f1ac4c80179c642fe369c025905ea
BLAKE2b-256 f199897c9adedc4f0a078adbc84fa0b866f8f6e64a80de166cd827f520ec2003

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3bf6e0c673b579980f7e7314e61efff003b83f4959dbef6a2513b135b62fe0b
MD5 4d83cb3cdf05e8a399b7a0d2ce9de8c0
BLAKE2b-256 111e07dba459445fde5035d55388e6965022879c69e5dc1e6f78690ba7afc06f

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1f7d13e23743efd4335e5708a09521cec11819f4fa4148385c39b2d70ff5717f
MD5 ce1791b390b10e9df2343ea2c75ecf29
BLAKE2b-256 1edf00204051dbfc57918888322acfe1797ffabc418c152480cda7efeddd4b8d

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ed70cb3bb10ac906f18153b13772b8e2e3b6e3588298c370af2aa41e0fa5690
MD5 49fc11cfb205bc7366e8add9a55d4f6e
BLAKE2b-256 b21c721c40e3aba278af1e38c2eaef54608cbbaea4785721a3ebbc8f8ece9b32

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7caed3b64c7477f5c35bef7e1a2449f5e40e9fc5654a8e3d832f7a0d89f45f6c
MD5 306916a85d55e450e3cd4d6714a7c7d6
BLAKE2b-256 554c572af66275cddf237f3f85ac56f1b46535ff438218b2005977239d01b530

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e27c7c58e58df93f10f615578b0448fcc2a1df028d62a26f1904c0fc099e1421
MD5 d25981fb49efdcf11151a8634df20b35
BLAKE2b-256 7afdb6e3ca8902677e809576e189714643b6439a4e2b15206bf8d4a55f2333c2

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c078c0b130d35231f39009aa706ff4f93bb9c574fc14e5e4535c0b69732a4461
MD5 c2786fdc4375220617c98aab215a9a39
BLAKE2b-256 501b2de070947929c5a767e7f43b306d7e13b49770f76533b6f8313ef36165bf

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a035365b34173f977bb33496f76401c99c76b5bb2f0de572cc6246229baea810
MD5 eb1624824117b05dc42275f3fd9a6fed
BLAKE2b-256 e1791cec7cea43749cfa26c9d03853b622a2fe8dd8359e1f02532800a2e613b7

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 669b615b2dae54b5dcdf5775bec53769f75fc00ea3c87126ba783d082b6d761f
MD5 7e64e953c00d53bf6e115345d8c34c44
BLAKE2b-256 035875c92e610cb689b2f378418327c8fccbda762eea3d6ce5a2434a189d9c7b

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 dbf4b0447257f411b3fc78550843adffafa97afd2c5ab2d3bf623a46a125649d
MD5 78a71c349a490ea113d28488aed6176f
BLAKE2b-256 554927577d2fb0cb479fe58ae71d976a434500ecbe13968230e3dbf9f7e46a69

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6379a46bebd6013ccfec9e104548a2c8ca02128c96397d63329ae3ab50444869
MD5 67f1bf7c533511391d4a0821e6fc5da2
BLAKE2b-256 25b7083a62af80a16f5baae0df366a79be9d81a59964ce82d36e2ae130e0180c

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c3cac890858a9523368e9675376dd4ca1cbc4cbc3b9db1c9c302079cd0607385
MD5 76188d7681bb360554e2817e4fd68328
BLAKE2b-256 a4eaaefdbe2495377e5fa9f2bd8fe115f41ae37ea895c5779d0fb03436ab7a9c

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 204ee19927c21cc296a4c755c1edae6d53e07bc147ac337b97e9fe188ff4e226
MD5 01d02ea237f67da140a57426e4176d5e
BLAKE2b-256 21e128dadc77aa53b0b61fc492e35a3fb848db0bcb4526e48d2cdacc93f6e2b4

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1f7904d6263f57f293bc6c709974c2407af7a9b252bcbed21535eb7a379ec60
MD5 db273ad90fbd4f42e96990a2e229b328
BLAKE2b-256 78d0cd7bdd4b32b52e16e1394730e907e4d60f8a654c01c1c0757bfe86415981

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 364ee7e572ca1fc3428abfb5651dc57335e69c93240ced33ef8c07c4ee1e63a4
MD5 92a51ed54777048e8cba9e55402c5257
BLAKE2b-256 3628ba5a87909737502de01543e38fb11de9505fb88a1701a47164325b3e9167

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e11bec26da8bd75ace9b82396087c0d21ff14cd103f688fd7ae5d52c67371be
MD5 84fad3b9ee586b8073d3fd1d2377ccbe
BLAKE2b-256 4c580f74055656e95f5e4de1b1cffdc378ca40d413939cdca6bd530dc2c8fc4c

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 97d06b87376330111cb4c1ff087f8ec35f37a49d6315619e42ecebf9f9b267f9
MD5 e8a16ccaf6b41e21091d32224d588542
BLAKE2b-256 ba4b2635dddda3370a29ddbc065251b4bbc8ee86db02889596a3fda2a940ecf5

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95c905efb822e284fc1755e010115c6299bf9c4b1c6beab6013dfd90adb9f984
MD5 56a182cd516d76eafba0dd20d5013dbe
BLAKE2b-256 a67d4050ba3f172d42623ac4ee8ca5c9710457996ff233fede2cb01a09e79ca6

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 597fcad1401415ded9a8ef378d25d11532c57c51a4cf046262d26066193b21be
MD5 d6d5e7199422b94fe2069a914efae250
BLAKE2b-256 f62184c7fbecb2eab2914648e2bc68e3729955f23b179aadddc81ce405963f8e

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c906c5480b4e733cf7b7b5cfa8baa02e41ee779012c9ef00f6b0b061bd5c4246
MD5 38f73e9e238a1fde6b58d896c63d8d6f
BLAKE2b-256 773964000d948a8f18ccc8ab472ddb8a9f8f483fb3647d0d50d5665401adb725

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fe433aa9fd08866e4aceb3e044a4dfe7889096ae64622bbcb7b8f35bf724951
MD5 74dce0f771b96a536032aca5163066f9
BLAKE2b-256 1d2f3cb4d915dfea482cb29c7075d9a4b348311f237a7c89969ef584a054cc3f

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41b9f767dbb36b910a4453cde4cafb6122711280aa348c2b02a8d323edf4eca6
MD5 e58cc60b055bed54628c240a19e8f3a5
BLAKE2b-256 aa1d5ab21da0defaad0c07386433052650121ac90b239a7a994472101e41f4a2

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39f093bef1c266c178084e1be2452e1f8705b70a5a16e3ca779ee46b544b4690
MD5 ccebf4f8372408694128ef268e1de07b
BLAKE2b-256 eaa05a08740a4e696bc2729755ddcf629df01c9b3fa289aeeab965bf7a7ebfc8

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1ef46bd35ae12fae1a2af56366385f42299b5ddd7c146914909c2830eea49a8b
MD5 ef4b5e08fc8b054f5f87c16537be5b58
BLAKE2b-256 dd1e603b5226870fee69597bbc6cb304c0afc644f5f05513d745e6d47c3078b8

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0e53e492630a849f40b49b9ea6de04d17b40ef836c3bece5f48e1620c20ff304
MD5 b24c776a8b19d8e082e6757c16941355
BLAKE2b-256 ad46c55fa3c90085983150b6ed3908a4470286c8aeaa782210e09a3a09568848

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 73b4f6aec58370e0784e58f60a3bc9d1de2eefb54510c27ac3780f2f63ea27d1
MD5 6b69b849a4ba51b17a1d1423b7c998ab
BLAKE2b-256 28b690957da901b41613b38d5e675a2a2fa28ef31e10c1c467112d21dd948dfd

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dfa73aa4499dfe1ba428e5effc892a574381d21fb5833048169d5787b6ad608
MD5 cba71bad162f34f85106b496e18b7e79
BLAKE2b-256 c5f04692c1d0173e1db0b842988f3aedda6849ac4163f68382917076540caecf

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7bc5ca1338194225469a7bb84ec774b76004bbb47ebb3a031480ba622a2225e1
MD5 6d4f3bce129a22fa6cf5f611ddd4f02b
BLAKE2b-256 06cd76cd88634beedccdcee7f1bb731ef7f6edbf5399462ecbc9b0cc61c0580e

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb72174ed78ffbfb5fe7855583683ba14b2f9440464680705699804e452cd185
MD5 f35702d28fa84e1b2c125326d76d26c0
BLAKE2b-256 4d4a75f1bd7ae6291759920a7d80c470c85ffab0d23fe1afb2c2cdd745e7c36e

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f27741c2a3cfd1f7af6afd6c216b3fa4cb7bc8d6733abe39f83c747c03e2e78b
MD5 394c9a7218cb0fe54f1c976eda1e331c
BLAKE2b-256 738b353f11a427f9dc91daae416e779b205c115d55ed8e2e4eff406efecc932d

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7cd59469ac1c0cc143e55959bf0ca15d24bd1c9dc06dc15dd15787156d9a681d
MD5 c508699e259a931b5e4d7ca2eb983a3d
BLAKE2b-256 1d074d351db2fc66fb925a2330386d869f1b1318eaa7081b670b30f49e3cf294

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5406a21ac307448882dc2ae62b09a89e64d25035674d766a0e863e3ca5895676
MD5 a0f4170de4e1544e94269088bb2dd0ed
BLAKE2b-256 03c73556a9614721ba976f61ff60bd0d8117c993321828481a19daaf513b0e4d

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a68ccea7aaf2028329806351b54cfc1a620600c321aba61176c71ce71645704e
MD5 7a3f35ae84795c66de2cbc4d808bd74f
BLAKE2b-256 220ffce45e1d4e0c47b72d26bee63f5a83547d423be87eb6204e11dcf4ad7133

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: openPMD_api-0.15.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 52c6d541a8c9f8723a5d5ed77cf862d58755c0291864e79496b4c6e3d03e1f39
MD5 8eab534cf4c8f2979d35669329bc3c6a
BLAKE2b-256 80874fb19587983c62ee62ef485a5b88a737de84d91a37c2c45a14e62e84dfbd

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c517d290866c439531116aa9342e34395aec81a3b5cfe88018aa17c8aaab2087
MD5 e8a774b73fcc6ad94411f9d868c15225
BLAKE2b-256 308d551c67120c0d039fe5a275bef51e0b73c195316f83a9584d6896e768690c

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d05254292d35a97c67eeb53b8740e13227c77d764b1b5f3c4536dfe086e0ada2
MD5 5597267204e3f38c82bd677b89fc4f5e
BLAKE2b-256 8599147931e0665d199b65fa5656270825365b07e35660277ab20619101a564f

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 133d5b1783a997201fcd8bcca1f2a1297b9272edea5100b3568710a92f857223
MD5 589fbd2cc80b7a2c7b82b8913ece5acd
BLAKE2b-256 bdfca07a2ed0f2472faa54b85f363dbc3f465b74150790ac76d7e1388f08b7d9

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 cbb88a14fa594d66e5db4e62d75d76b410a3e10d64588c01264e32e2dda7fce5
MD5 c1e776f5e720ecc47d57b81ece3d2302
BLAKE2b-256 83561d307e852aceb30b84daab2bc825df23839c79c9f9a606c64feab3ea6b29

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e13672219d614c98c6ddd6681e90496e19891d3f36352189e254c8a5b9336d18
MD5 cbeff0d4ccaedacefa85565809d4a421
BLAKE2b-256 7fce2c865ae9d6415038ac721cc0384c2b399fd048820c1a8624be4d8f7e5105

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3bc6062251f2d4820af6b509b269df016755983428ceb2dbec520cd38232489e
MD5 b9b53e90ab902d19ebcf590d0b22aa44
BLAKE2b-256 0679d0cd069e4d337b23a46235a8646759d0eb35266b41578bd05de96a5535c9

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81dc755272ca5fc69ef629df9237dc5443da959f320da4999af61f2929db5ba9
MD5 a0f6be7226daf0b0a4d9bf4ff8d47118
BLAKE2b-256 8249af745531101ba18b1d43913948de1311870f6ed1af818941ad9197e910f5

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fe81506049c00b7210ebf77dfe8b810c549c2c3d189588d239e6ef8fc435611
MD5 3c1cf363f04bf8405870ce01714f7800
BLAKE2b-256 497db5b9f3380f852b6383fcd00862a04fa6d63d9b54deee10fdfad6c54396a9

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 797b1f8c0915a40b55410dccfd26a52f6599b2d64067cbb06a27ed0a4b768c4f
MD5 85fbb96df5b16ecaaa8762b8db84e1e2
BLAKE2b-256 46d353afd0e30469c9057d7a6488ccb4a82ca0fdc5d262500cf79275b5504d62

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6c3fdca7e7d0ad7e4b9fb3384862d744eac2396ba5fe84f7c0598ff05fda082
MD5 25d08236d8a97397e605554d6c861739
BLAKE2b-256 6c67cea6c8b81713aab8db4b868c14c80d52b95818ed84d4c31d2421f2bdd3c2

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a3d0e47249be2151610874e1c4051c89e05f32f15ff9177634f7885883efee9b
MD5 f0b37894304e574530f58379571d3c44
BLAKE2b-256 af678be24a58c7ff66c54e10a5aa8db78bd17bcc5a10c0feb2f231429f1dbff1

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87f9051b602d916188950042be730cef627fd2569779b3d7db8c5bdfafdd943d
MD5 36552e7c25e057b10b9cea82ebc19797
BLAKE2b-256 9d872bc4a100f58cabd87ee4f095e6ab70c2a908a7f8abd8a894330d25cb1825

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e18e6368a0e91a937d78fcd5626ea37dd429f3a770847de7cc33f940e972d2cc
MD5 d2c2b084d4fa3440fc98eaa7895f4468
BLAKE2b-256 154424343bdca7fa43dabcdbd890d6d4ed5c8c574b96d5976cf8c95943156ca3

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: openPMD_api-0.15.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f5542a67ee59baebd25b84e06a8aab8031a8369cda1416d95f0b291ffdcd3f6b
MD5 976c35d793b2a7dd38a230280a178db8
BLAKE2b-256 038c0035c068593ab7999c6e4268560b7a8d40fc4f6bc770d2fa24f36d22034e

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f2a2f39848ced4407e4f1942e8b61ac0da01aed11a48e769242bece9fe5b553
MD5 7d894b2f95093b06f63056238447ffc2
BLAKE2b-256 c2e519d9d55e8c23ff2077f7098f02cfae7e0227bb1e3b11414554a967337c3d

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 79a96ea8a375afb2138e56c601406aa362e83c3f537aebc202473443f78a220b
MD5 75b577a491cb8def578b48cb4d7919d3
BLAKE2b-256 5f3a8dfe8d81368e7a645f0884579a2e1f222ed3a609cb4c59ecc99fc17d99e5

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6e240746f44a86b6668c14dfab1fbc379ff3f98ffa1f80b98cf85a61d69692c3
MD5 72faab8955b1a7caf891cb73f6581810
BLAKE2b-256 f4033353de07fe11e72608ceb91b58b60ebd59ed9df1bcd9818f63b9f9bbb391

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5e62c55454890ebb3f5d7c446a3c8c72b56a7b1ae7bf5d29b4d2bd261a11f589
MD5 1fb5afa0420b1727204abf9d4ad24957
BLAKE2b-256 fb19f71f65af979c5945e4230edb1cda1c5da30d4c561ceebf62bc1cee31dd9c

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53edcd0449354dc37279ec2d6787f8e274fe4984becae6acce95281cf8943976
MD5 186eb544a463f2f377204d8d70fc0927
BLAKE2b-256 d8bde46a5e84fac488dfdd2697c8c223fe34647ae35c46c677abaf58c717339a

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c87a253028c52525c0e892ab955629e331c87c4b02f231c8f84aeb89bae2dcd6
MD5 ff43cc28e08b97d2c4644333b756a166
BLAKE2b-256 70804010351923f7b948e165d52342a28efdfa624874422dd85618c54e238b82

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a8d9b38dccee3d1cccf3b3a669ea9cec4646dead824db03146fcb7ca83e866b
MD5 174d644050c08eb9966e8fc968cea6d4
BLAKE2b-256 b31f1554d0b036a66c4af338e932af4bd7fb9e40602406e15a7910634da81939

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04ffbb4276b10929358175562bbfe2997da8abfd5a11a25f4bff02583d5270d3
MD5 a43f09548eb144e097b89d64e962f7de
BLAKE2b-256 a85fa78d0550878187604fe5c038e03d2ce03586e04bdd17989973e2372d1f9e

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b7d002eaba7b5725ac768baa8b3aa47f00aa3c4d5c419136b3d83bbc9b075a27
MD5 caaff7894e2779887eb0dbaf7efd55ff
BLAKE2b-256 ed33515edbaf4cd747b36405e4e820ac6716316e231d8a45a74a05b14df029b4

See more details on using hashes here.

File details

Details for the file openPMD_api-0.15.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openPMD_api-0.15.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 611ab2a7319538cab4cc1f878efeec7695e693411235a836eef037e8520d0a25
MD5 d6aa90cfab82c3880ada71723f8a354d
BLAKE2b-256 9ccae543433eee110a00bec8d498b44bd0f2bc49d19684c1f92cc2884e7a97ad

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page