Skip to main content

High-performance molecular dynamics trajectory analysis (RDF, SSF, VHF, ISF, four-point functions, diffusion and non-Gaussian metrics).

Project description

Ripple

PyPI version Python versions License

Ripple is a high-performance Python package for molecular dynamics trajectory analysis. It prepares ASE-compatible trajectories as reusable NumPy memmap caches and evaluates structural, dynamical, diffusion, non-Gaussian, and four-point correlation observables with threaded C++ kernels.

The package is intended for repeated analysis of large trajectories on workstations and HPC systems: prepare once, reuse the cache, and compute several observables without rereading the original trajectory.

Installation

python -m pip install ripple-hpc

Ripple requires Python 3.10+ and NumPy at runtime. Source builds require a C++17 compiler and CMake; binary wheels are provided for supported CPython versions.

Documentation

Full usage documentation is available in docs/, including cache preparation, atom selections, observable-specific guides, examples, and API reference pages. Build the local HTML documentation with:

python -m pip install -r docs/requirements.txt
python -m sphinx -b html docs docs/_build/html

Basic Workflow

Ripple uses a two-step workflow.

  1. Prepare or load a trajectory cache with memmap_create(...) or memmap_load(...). Each cache is identified by a user-supplied trajectory_tag.
  2. Pass the resulting PreparedTrajectory to analysis functions such as rdf_cal(...), msd_cal(...), or isf_self_cal(...).
from ase.io import iread

from ripple import memmap_create, rdf_cal, msd_cal, alpha2_cal

frames = lambda: iread("trajectory.extxyz", format="extxyz", index=":")

prepared = memmap_create(
    frames,
    save_dir="ripple_cache",
    trajectory_tag="run_001",
    n_frames=1000,
    pos_dtype="float64",
)

rdf = rdf_cal(
    prepared,
    target_atoms1="Li",
    target_atoms2="Li",
    mode="abc",
    r_max=10.0,
    dr=0.05,
    n_workers=8,
)

msd = msd_cal(
    prepared,
    target_atoms="Li",
    timestep_ps=0.1,
    drift_correction="off",
    n_workers=8,
)

alpha2 = alpha2_cal(
    prepared,
    target_atoms="Li",
    timestep_ps=0.1,
    drift_correction="off",
    n_workers=8,
)

fit = msd.diffusion_tensor(method="ols")
print(rdf.rdf.shape, msd.msd_tensor.shape, alpha2.alpha2.shape, fit.D_tensor)

Observables

Ripple currently provides:

  • Pair structure: rdf_cal(...), ssf_cal(...).
  • Self and distinct dynamics: vhf_self_cal(...), vhf_distinct_cal(...), isf_self_cal(...), isf_distinct_cal(...).
  • Diffusion and displacement statistics: msd_cal(...), cmsd_cal(...), alpha2_cal(...), kappa4_cal(...).
  • Dynamic heterogeneity: chi4_cal(...), G4_cal(...), S4_cal(...).

All functions return typed result objects containing the computed arrays, lag/time axes where applicable, and metadata needed to interpret the result.

Selections and Caches

Atoms can be selected by species labels, such as target_atoms="Li", or by explicit zero-based indices, such as target_indices=[0, 4, 7].

The full unwrapped Cartesian trajectory is stored once in the main cache. Correlation kernels read selected atoms from that cache by contiguous spans when possible, or by explicit index arrays otherwise. This avoids materializing a separate unwrapped Cartesian memmap for every atom selection.

Some analyses still create observable-specific derived caches, such as scaled wrapped coordinates, drift centers, summed positions, or reciprocal-space sampling grids. These files are part of the prepared cache and are reused when valid.

Practical Notes

  • Input frames should be ASE Atoms objects or ASE-compatible frame sequences.
  • Atoms.positions are treated as continuous unwrapped Cartesian coordinates for diffusion and displacement observables. Ripple does not reconstruct unwraps from wrapped trajectories during preparation.
  • Diffusion analyses can subtract a framework drift reference when appropriate; use drift_reference_indices for explicit control.
  • Real-space radial observables support one-, two-, and three-dimensional periodic subspaces through the mode argument. Reciprocal-space observables require full three-dimensional periodic boundary conditions.
  • Static-cell trajectories store one cell frame; variable-cell trajectories store one cell per frame and are handled by the kernels.
  • validate_main_cache(...) checks whether a prepared cache is valid without loading the original trajectory.
  • PreparedTrajectory.clean() removes the cache directory owned by the object.

License

MIT. See LICENSE.

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

ripple_hpc-1.5.0.tar.gz (101.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ripple_hpc-1.5.0-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

ripple_hpc-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ripple_hpc-1.5.0-cp314-cp314-macosx_11_0_arm64.whl (984.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ripple_hpc-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ripple_hpc-1.5.0-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

ripple_hpc-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ripple_hpc-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (983.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ripple_hpc-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ripple_hpc-1.5.0-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

ripple_hpc-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ripple_hpc-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (982.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ripple_hpc-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ripple_hpc-1.5.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

ripple_hpc-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ripple_hpc-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (961.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ripple_hpc-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ripple_hpc-1.5.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

ripple_hpc-1.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ripple_hpc-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (948.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ripple_hpc-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file ripple_hpc-1.5.0.tar.gz.

File metadata

  • Download URL: ripple_hpc-1.5.0.tar.gz
  • Upload date:
  • Size: 101.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripple_hpc-1.5.0.tar.gz
Algorithm Hash digest
SHA256 76b8bc111e37113fcdc9e5bb3a5bd59f11a56f95969de4b73b030679fae8d995
MD5 3fcce2d0e58005bb33ed33d79c4b0ee3
BLAKE2b-256 215c2f47a4dab4bb86f5dab486bbee2b6a75b4e4b548b146c180c020c01a890e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0.tar.gz:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ripple_hpc-1.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripple_hpc-1.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0e0bd76a9786671c503122f0fcc7ef0aa3345f902a2943eaeeedcbe6a6c22350
MD5 55b97444adaacb5cf87de818346f9a7e
BLAKE2b-256 65bdf00dc23d1d646b99c6c5480c6171390017a45f2c247a3eb49f7e362f644d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 94a9ae7579e408df4b3df21d02a568b72e085d4b250db27ea0f9bb2cce2a99f4
MD5 7127f776a7f084430efc087994dc3beb
BLAKE2b-256 d0c857995d1435d03bbe720d8e8cfdeeffc959881120852ea7ba0f35f35667ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1723540c49272b02b7c584ce43f5970912cb508211e416dd140b4950dd19cb79
MD5 708ecdfca8df0f414c5c56a1b0019706
BLAKE2b-256 3a4279f56fcc1d517fc8cff86bb598d096f53dd55050263a28e21f610ea18bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10078c40e3f4a65fd2ca7c8c9599393a85ff6309f54f803bb797eafbb5a13d14
MD5 6d53fa4fea07e52827084fb3360b1815
BLAKE2b-256 f656f98bda76bf15bb69aba9419c83054fc267c66bebfbc15e0bcce2f7633732

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ripple_hpc-1.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripple_hpc-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 44f57043bb7433e4b77ff89621aebc76ebd67a0b6148e566a9d3e3f8c172ed85
MD5 a01a56470593a1b17a67501a5310152f
BLAKE2b-256 3dd9a51cf957342fe78c536aef852e8b104d787e1c071f002909452eaf98c544

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 400e31eb3cf54c62b604deadfa30d5c3ed0b223018e78968f3d98c5c32347eef
MD5 3536aa8b6c6cb6c1543b989f560c8f96
BLAKE2b-256 19e59a7060f4510ad8786916c28582c9fc1c1852f267dfc50e07edb26bfec4fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d9be1695276c21607d5bccf90dce754ddf1b12b5264b3a5d91925f1f6e335f0
MD5 b9a92f3fbd7c6e18170508b1c153ac19
BLAKE2b-256 bf2f04c23881d4e36c115cbfd4491d2a08f02b301a165e4145ab63c51b7f4a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2fa57f5159762ee79fc413098208e9628c0c9075b043704bea990660d0fa052d
MD5 feb60eb8dc25c38e7ec5152ab65038d8
BLAKE2b-256 f55df13cc8a104048f937f3f1dd9bdebface25651cfadd5c687cb5180ebbab65

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ripple_hpc-1.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripple_hpc-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 648288fa527f2b38e1ebbed0854bf17051c4faec413b3cc8e659d89851b73d53
MD5 c22380c9540e0dec339f9e8bb6116fc0
BLAKE2b-256 80b3829221a4577ad77e2c672d8b486f516970b01d31a46695ad2221b8faca41

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3e7a4474bcbc27cc00e8db21345e8911504b3d2ab4f2a2277cd29ca5c6c24d91
MD5 62da529b844e3e806e04232ef950606f
BLAKE2b-256 4ea3a213bbf9b439a86a7aa7b972840b33f4adb6cd715335364baf05501b9532

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c987f830855c0233a57c8f949f818f47f040d55cb082d3c2fdeaeb777e62760
MD5 588e1479684fdd45946ceb267ec6499a
BLAKE2b-256 2c20915134823a26d4992d0d1c915d37fa3da7ed81f693f73c510c9ed8dd660d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 99ea5051b2d69ef56abdca2290ce164dd2ddc4a1e95beff7840157e234a41416
MD5 d7327b79ccfbdefe87b2d65b7d3cbd02
BLAKE2b-256 d8e57c567efcdde074c9e5bcd1427e7228af967ae036b61c6e42afc6a71375fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ripple_hpc-1.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripple_hpc-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 33ca2d0bf8f7c3de95ab8795bb10af60d946dafb1462d4e014a15422513c440a
MD5 548a27efd2ff33c0cc5f1fcba6ec82b1
BLAKE2b-256 9b09eea3b1ffbd611492294142f49cf4a8066d68a0b64cb1f2a08f25ce5e1ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f71f8d8d0eae8a07ae5fa39d961760d9707f12ed775f1b1025c84e69ed4d1699
MD5 28c517e9fe8bc53a066c0f03a421afc7
BLAKE2b-256 8127715440fde12f6039d67039bac1c1af689adf8e87fec8fec62f001cb26ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 594d90fa711eba31d6181e6c83379abb94a6f299c3645134a70fc004398d5785
MD5 a1c768dc9fb1284db05c9f6a77c2f105
BLAKE2b-256 1cd59a34270f8d78ea482239caec825ad0e8a56cf8b647766d522685139362f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fe5d6fd33672769036c05da77e439c79baa8f75f2fbee1e312c3e5c7eb05c8d
MD5 b29145beeb9f1fd84b20fabc49c03bd2
BLAKE2b-256 12b897f1b5d1bea37cc7f668755037cc7e7db37759c430881f1aff6a07e074b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ripple_hpc-1.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripple_hpc-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ff25098d122321891bbec4ac61fddffd655e44ec0476595b8fb50d04cc5ffcf4
MD5 66a2f82922643afeecfa96a682289138
BLAKE2b-256 8a5e6926d66ea70a71340411cca7180c025e16bfb52b88eee289bdc66b6f51c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6478be829d69bb9f36d09c288f335434380882b97224d16ed3c0a253abd5386a
MD5 0ab39b7823b2e965701ebe088252e561
BLAKE2b-256 b4b201f794dcbd77677cba6d6049d01babe13e213043bf63a450f1aeac429d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5211ae0e822c394d2f71c8df382f072d4aaebae523206575a856b6f5ac3c0b5b
MD5 ab0ad95755f4c1cc3e8764692d21ad7a
BLAKE2b-256 83f25bf5c5430738b889b3b4ee65b94a4c3936507a31b36871d0fb5e3ee36910

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ripple_hpc-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripple_hpc-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 616c71ae90b25313024a8bdd56a53eeeee4817e76f94e05cc28649d5c98f3207
MD5 2782883e92796d34a46121038af825df
BLAKE2b-256 5f788d8a701390c8da70e2f7b74bc473647582428156bd02e823861ffdab4e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripple_hpc-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on Lucius2019/Ripple-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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