Skip to main content

A Python wrapper for the `Rust` `corrosiff` library

Project description

Corrosiff-Python

GitHub CI

A hybrid Python and Rust package that wraps the corrosiff library for reading .siff files and presents a Python API.

Installation

Installation with a package manager

I'm starting to host things on PyPI and a private conda channel (maimon-forge on the Rockefeller server). Watch this space for updates...

For now, this is hosted on the TEST PyPI repository, and can be reached with

pip install --index-url https://test.pypi.org/legacy corrosiffpy

Installation from source

Everyone has a bunch of different Python installations and different solutions for managing them. Because this package relies on Rust, if you're installing from source you need a Rust compiler. The main way to manage Rust and its dependencies is cargo. Once you have cargo you can install with pip or maturin.

Install to a local environment

pip

You can use your interpreter's pip with the pyproject.toml location in corrosiff-python.

(venv) cd path/to/corrosiff-python
(venv) pip install .

Maturin

This can be installed using maturin, the current preferred PyO3 installation tool. It's a Python package that can be installed from PyPI with pip.

pip install maturin

To use maturin, you can navigate to the corrosiff-python directly and then execute

maturin develop --release

in the command line, which will use the system Python distribution to install this library.

Example use

import corrosiffpy

siffio : 'corrosiffpy.SiffIO' = corrosiffpy.open_file(
    'path_to_my_file'
)

frames = siffio.get_frames(frames=list(range(200)))

print(frames.shape, frame.dtype)

>>> ((200, 256, 256), np.uint16)

lifetime, intensity, _ = siffio.flim_map(frames = list(range(200)))

print(lifetime.shape, lifetime.dtype, intensity.shape, intensity.dtype)

>>> ((200,256,256), np.float64, (200,256,256), np.uint16)

masks = np.ones((4, 256, 256), dtype= bool)
masks[:,:128,:] = False

masked_rois = siffio.sum_rois(masks, frames = list(range(200)))

print(masked_rois.shape, masked_rois.dtype)

>> ((4, 200), np.uint64)

Python API

The module contains only a few functions:

  • siff_to_tiff A currently-unimplemented function to convert .siff files to .tiff data, sacrificing the arrival time information

  • open_file A function that returns the SiffIO class, the primary Python interface to the corrosiff library.

SiffIO

The SiffIO class wraps the methods of the SiffReader struct in Rust, returning Python versions of the various arrays, strings, and metadata. Most functions read frames from the file stream, so you never have to actually load the file into memory (which can be good -- many resonant scanning imaging files are very large), and return numpy arrays.

Testing

Testing in this module, right now, is intended mostly to test that the C++ and Rust implementations agree on all files. As such the tests are all built around loading the same file with corrosiffpy and siffreadermodule and ensuring they return the same results. The benchmarks are concentrated around comparing how each implementation differs in terms of speed when calling exactly the same function.

Tests can be run with pytest. From the main repository directory:

pytest compatibility_tests

To test new features in corrosiff, use the corrosiff test suite in Rust. As I start to develop new features selectively in corrosiff, I will also start making tests that are specific to the corrosiffpy module and actually test functionality instead of just comparing the C++ backend. Note that these tests require pytest and siffpy, so you'll need to install the test optional dependencies.

They are far from exhaustive and do not test every possible error condition, nor do they test corrupt files (yet).

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

corrosiffpy-0.1.1.tar.gz (27.4 kB view details)

Uploaded Source

Built Distributions

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

corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (748.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (772.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (851.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (750.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (630.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (616.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (588.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (748.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (772.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (850.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (750.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (683.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (630.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (617.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (588.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

corrosiffpy-0.1.1-cp312-none-win_amd64.whl (400.3 kB view details)

Uploaded CPython 3.12Windows x86-64

corrosiffpy-0.1.1-cp312-none-win32.whl (381.5 kB view details)

Uploaded CPython 3.12Windows x86

corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (745.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (771.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (849.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (748.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (575.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (668.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (627.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (616.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (586.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

corrosiffpy-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (500.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

corrosiffpy-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (518.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

corrosiffpy-0.1.1-cp311-none-win_amd64.whl (400.4 kB view details)

Uploaded CPython 3.11Windows x86-64

corrosiffpy-0.1.1-cp311-none-win32.whl (381.1 kB view details)

Uploaded CPython 3.11Windows x86

corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (746.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (772.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (849.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (750.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (575.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (629.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (617.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (586.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

corrosiffpy-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (501.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

corrosiffpy-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (519.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

corrosiffpy-0.1.1-cp310-none-win_amd64.whl (400.3 kB view details)

Uploaded CPython 3.10Windows x86-64

corrosiffpy-0.1.1-cp310-none-win32.whl (381.0 kB view details)

Uploaded CPython 3.10Windows x86

corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (746.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (772.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (849.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (750.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (680.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (629.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (617.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (587.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

corrosiffpy-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (501.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

corrosiffpy-0.1.1-cp39-none-win_amd64.whl (400.6 kB view details)

Uploaded CPython 3.9Windows x86-64

corrosiffpy-0.1.1-cp39-none-win32.whl (381.7 kB view details)

Uploaded CPython 3.9Windows x86

corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (747.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (773.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (850.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (750.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (629.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (618.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (587.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

corrosiffpy-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (502.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file corrosiffpy-0.1.1.tar.gz.

File metadata

  • Download URL: corrosiffpy-0.1.1.tar.gz
  • Upload date:
  • Size: 27.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for corrosiffpy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 895780d39d76bfad363b373ded85ebe9ba0b38e8a4e51b9ded22a3ab5935de0d
MD5 7618c37f1e7d5f786423d07850a317c0
BLAKE2b-256 4799f976dda9b96098703bb0cf0b1d91c53c9be95b237ecfca7ef4e70756c6c1

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0a51b0204d4ddf38a23bd0b124a9f2769461a2244e148e8c2ee1b51aaa1cfc8
MD5 201c71543497fa9b2caf44a8f9620f55
BLAKE2b-256 dbf12cfeedfd7080c8ee3de40d97026d38b9e444a70e091c32cdbd66125f8a6d

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96c280ec40a2642d422621e4e3e5d9431bddc3e93de710f2ebcca382e14a0c4f
MD5 03bb34ead8f77eebf210432028074af6
BLAKE2b-256 aa98e23b37e53f2726ef8e3ab11f5afa9b9f7a995e42140436d77897a685baaf

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 621fd530e051d39d75cc99a40e7f8589270c92bdb69b302ab7b128a9c665dbc5
MD5 5fcdc8de29a0861bc0d0794ad35a1740
BLAKE2b-256 fbf85410582a826ffdb6b1ba0b74cc88f202650ff94f87050d3c4f4ec1027357

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b244757be62579e67e7a806598f837c2b0846f241b462a4f7293a7f62bc49560
MD5 87cac26ab39eb6f56cdbb9123f93c9b2
BLAKE2b-256 bcbcd248925bd7af6512962694a60c808fbfcc9c3f9357530d7b42b09be13fb4

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d334c50decf60f6d6147f7887af8461aca21779abe6d9a807a1a80009769ed9
MD5 8eb6b07078acf5cfd47a9ca5f83aed0c
BLAKE2b-256 5161620a96f5a5a38b1cbe403d775220797bfe3e9f9a68278d99763d9823fdb4

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25341277effce44cd7749a02134ef6620bf146f85821a8a8c579a4888e5c3b70
MD5 d065398511ad90eab8cc4805bbf50415
BLAKE2b-256 32cb4816339681cec613e96947fddda579a4a05c17b3d42ed54afae67cdcdcff

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd0ed7f257f9eb260f4eddb30c4367e769012f8f0549ab45ff741c44c327f76a
MD5 8de6917497efcb8ae3566c5bbae30814
BLAKE2b-256 cea08858d1e58a01872c5e49dd7c58881ad44f9f85732b9b09979a559634168f

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 182961de18efe95f59b4a7b745ec69a6bfe98ef86f2e67555287e39c9f390f42
MD5 529aaca2c594f5e8ed9926050f2e559e
BLAKE2b-256 b008083aa63c5379d8e22bc0d517f9927817ef453e7283863aa74a13185ba465

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f09e8d54e61311b9a49332c1326f4a64a2aa9318477d1d32255e38c87763326f
MD5 b82d661360f704b3e91ecabd2b51d18f
BLAKE2b-256 15eb4e04a1b214b186b0c59c2a22d42f16f0c9648d314a2e46bea78179ca66c7

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e88aa1dc7b1314db088a55cc6ee33fa76909ec78b444d19c4a28d30facbb26d0
MD5 4f416003c6d2bc6d510465d2e855398f
BLAKE2b-256 6f567748db466e4907d2a0c4acf3f5245e0f4d734b96ac54163dc286f2fa2307

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf3a9fc3030c879bd09f292e091d61916f39bfa39f8a26abbfef8fbd9be7c825
MD5 12ac667ae5002a42a5038bd01b66932d
BLAKE2b-256 65f70e92970f69b88d959a8fcc8b71ad721e387c4bae35abc199f0cbe348e31c

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5176c528a215283b6b3237bc328a6b3c695e75242a8fe3302746deddb5a87f73
MD5 1ef8da146487e74f91c8a4e66cc893cf
BLAKE2b-256 8ab61fef055642be169d3b1d5a8beeced1d818843a22995c1801c0d9350668d5

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4f5a2c424df5647efa8c26a5dde1491e87088eb9d2853a3958e5e58a2539bbbf
MD5 cbe20413056c5ad233dd640cb187ce4f
BLAKE2b-256 825ce4388bfe06de8168aa47c1c8ebc221518733bfe14195bb9725d18d95cf28

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7aa3d8f793bfbece5a7ee9ebe29b774a72de15a03c9f80812903100a9b29a989
MD5 6519b29cb243d984ec996285358b56e0
BLAKE2b-256 291d29d0a284278775d22d903a36679955d5a165285a1b797749c416257cba89

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c774853d27eacc120025b92fe54a02f660feb5495fca4784874301f0cceb287
MD5 cca66693d23970a68e64bfac3a9d5f5a
BLAKE2b-256 d07e9a1459da41385a4d72e01f649093e6195f73d4b964055c88e5eaccfc69e7

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eed8a7d5b84b43fb8120379e891510eb33238866717be339d8163b385cb5adc6
MD5 acff841f9d2982933f9e195e6326c3ee
BLAKE2b-256 0e910fd194cea1b18aa77c55ee32c7d54e57914020a84be6afe356b1db430a84

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3290c23eaff76282be67aefa894febc161fe62b3025e3569f77687510592d1a
MD5 606eba2f5799ae53a6f96f3b7ebf9fda
BLAKE2b-256 31d0dbf7b1a84384c99329c79718f558e91f71f3a495297905a3358b62e71d5f

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5280caed1bb1bc5a4c7ff74e7a1a2bcdf6c6a7a45cf61e73871dd5d347bdf6b
MD5 641738f8d29f49c48f4e749ee21c0926
BLAKE2b-256 fee0fb45cade505287eeae04fb13b874b3faffcef17dec758f19ac7b9da551de

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba2073ad80a76cfa125bcd27d3a0213501b2e646672482001e1d0308db5bb16a
MD5 0c8388d7e047455a7988ad1c3dda2595
BLAKE2b-256 1e780fa84cb7ccf9578ce3e42af4e64874d3b4e5ba34371bea4fb70385c901c8

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7970a0f37e22b550e02b034e8d4e9ca43283707fc0b87347dd68d48cce769c7
MD5 8b699de3f02b4344e51cabe36f151d1a
BLAKE2b-256 39291c0102ea57281df7fe1d558f7c0f5dc4ff7b66994a30b558fa87e447c2ae

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a7f906508c5d82f19bf9be2fc885630cfd40a639cef1c75663b8e908d849dbf1
MD5 521a7af15ed47a9464b77fc1e012c58e
BLAKE2b-256 851bb047ed21b2210210c3bc3562a6be3d1e6287bbe7e4beb692f2afdbd37b9e

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-none-win32.whl.

File metadata

  • Download URL: corrosiffpy-0.1.1-cp312-none-win32.whl
  • Upload date:
  • Size: 381.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for corrosiffpy-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 1052895185e15cd761b6544790b3988b40eeb62fb771d99521e11aaebe43e1b4
MD5 c8755714a999cba1b42e568350bbad18
BLAKE2b-256 0f7116d41b96e6cadaf0a8d034d01b5e989f8b779c024bbf5c038d28343a7435

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8bf34bab41256fbf0d41a43584f2f9071256f3271aea2d8fe99adbb8d38a2f4
MD5 5ef388079bf9fa7a74b9eb911426c909
BLAKE2b-256 387661375b8d3083187ff656df6d2901cddc0aecbe57839f71bdd0e62d4a4b98

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d39eb3618494bb15f0f52de5d03c12d93dc102b7ec8eb6937123d6505f052c76
MD5 4363c743da7bdb60feb2e36ff140ae6b
BLAKE2b-256 01d2b4df0244444ca149399abc91004781eec12d8910751673355187c0cb4239

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5316ae3a5203f1ce591c284bc65302c007d5c685c3e6fa40e7bccc79bbba2ad8
MD5 d49c6ca8bf164c4f5cf7c11a92804f76
BLAKE2b-256 5ed2072b57d443797020e202098c9100331897ac1794674fb01a8d14180e831f

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 968ac50d131e6b64ad34f84ab6a05835d443158e5bd7d2334337ec78491911bf
MD5 bb1c806e80bef847bab921c90d67bb27
BLAKE2b-256 a873337f7498c40c8db002d9e590f00b1eca6ccb9cfe5e3c4342fa8f414787fd

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06a690d8e87cf7a6851ac8689697cbb219bb4e8bdcd13c27821686bb0c9a1178
MD5 e43f870cb48675c6e472e16ec4108e8b
BLAKE2b-256 a39226705a53f37a736a3a13539c4e2d5e39ce21906c78ae97991934a2d61d0d

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87fd9cbc3d107045e2cd9500548856caf60210d80a940d8f61488c6123c676e5
MD5 3ea1fefa777f8d14e16d0f34da33abeb
BLAKE2b-256 a617f890bc122b5de298633b850a4304cb1ddc0ceaeba03367f9d1839f27f113

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e644002447ef3dab5113411b4332bdbb2de74ecb7124202f1347bd5a6cf85bc
MD5 65534fa164482298e0765cbe509dc9c3
BLAKE2b-256 221d7a12c02039eb3f52261aa316861a8c96c7b3f2122f68a6c77195560eff5a

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50e7ee266adfc52c5fc5af88314473e8adf1a0ad4dcd05743c5883b427458141
MD5 3c5c53f71b44347fb59392748029628d
BLAKE2b-256 4906c44fa37470737970bb1a44152d4c35aaf5a576cdf5fd926383e4fd2879c7

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 050a87a36b18309022e5565cc00a207487521e3e3ece93626e26351b84d6c013
MD5 ace544f195250ab22f3e2c9a18ded9c5
BLAKE2b-256 11653e207530c6f528919a627e0b1feea8eea42618560c5bd5aa846186f2930d

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df0dcec27daa4925866bc5c3558551ab50852ae9f119f9b4e9a0d359d1aebf7e
MD5 21d56003435f6c2b846cdba66c37af35
BLAKE2b-256 400830f382d9fd7ed5abf7db97c3b861d3dc25f249852c38816f237a63a8374b

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecc2b127f7d90e362f3e5c0b95e07e83227ab3af692428f361d67663a9c2657b
MD5 a982f52186106af5ac39733eecbc3d9d
BLAKE2b-256 e614b6781a1bbea3fe4e01c221ddc03cf73ff7689e6c822eaadf4c9f8d11e3a2

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f318a0ef0e167cef85afbcbad9e0ea1dbe019ce7dcbf4abfaa396422fa4d168
MD5 16b22bd0fc078d7c04981d3aafb2f87d
BLAKE2b-256 7e09a866cad86c608d0ec9a7589bfbac0984f4e93a358b5de51125e2ebd67f38

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b33bd1224f173b336de8ce0dfd821268b98256d6168c147027f472a68ccac352
MD5 85cde957619464d1c63819b227df6dc1
BLAKE2b-256 4abdc48b152d7a1b136849c99b84966528507b1f0140f94d46611e007e583c17

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-none-win32.whl.

File metadata

  • Download URL: corrosiffpy-0.1.1-cp311-none-win32.whl
  • Upload date:
  • Size: 381.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for corrosiffpy-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 bc50f6c2d36f357483918fb997b98b315467f9d80b5055ef3563d00a657d798d
MD5 5badbc60fd740e1091d3c22ea3e53422
BLAKE2b-256 bae860467454cce3e62cb89cfbee302710d79116e96606aae3c563e6e08422c2

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71f5716aa428a5b62a28a56fe20fb77a10f6ac49ccc4884e1a3a03d89c0b8830
MD5 4e667679e49dec700571a4333dee0126
BLAKE2b-256 41bbd1e4b40f72ab0f411c351c0f1f4e407fbbe86109f9e4353254d486c75818

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05b7fd70e531308b599d3d5be31f0f424d1e4bede59b41222c8c4e3e21c54ec4
MD5 2c4290a1f77a96c8b938af98c6f79fc6
BLAKE2b-256 4b68c7d45f131f840723e6f1d45c9d806c76ee6e0b732f41f11057367d18a37d

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c11e232fcc1e171facbb3c12f567adc5be81272dd2304d985671ae70bb8b07b
MD5 cb935deed4f0a8ea135df9ad19be6959
BLAKE2b-256 a9b9311b2e80ce9154d5521104962d6b4e6716baec1aa9dcfa8aeee380e34522

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 912d4423e81f885c6351e1dcac09d2916d8bfff296a6137050f60ea4c796b742
MD5 bd7ea30d1ce4e13ed04f08bd1216f415
BLAKE2b-256 7949a771bd6d1aeb0890219b7022a042b4404715f7f5c85311a4a63879a258fe

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b813a4e05d058f71bf1c77769036d82d1e3d854b2f3baeb87109f3b9d12567f6
MD5 8d4ec31a6eb7107fd9648c8dc7e9be8a
BLAKE2b-256 ab3800dda2ee035f749d34eedec070dd344620eba12688c33cca613fe7861585

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be99c09ca739ebe32ac543f3e19cdf5a07e86e0b14c8129c88d79da1b847601f
MD5 1334b31a2e85b664979275cf05eceaa2
BLAKE2b-256 dda3e7bc3d1aa7cc1bdc38eb5a8ba59b1b2592c449b72d79e23188778a6e0be6

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cfda84c5fe0e566bfa08388169ab494370c5fa2facc7c2058f752728770f0d0
MD5 bdbbb6704cc0659c80c16abc40c02ded
BLAKE2b-256 1dc1718f8f960abfa002aad876cbaa4b9b5c16c8e341a80965cc602a44a4a377

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01a770c563ce8a6cd78f572a69f9af0883ce366c54cdcb81fa79bd17a9030cca
MD5 960392089ed7df0f6c904e2eb064d9c6
BLAKE2b-256 c42e5a9da7337b3f748618f0922be663e7a3f233c8146b4e303f0161757fad39

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42240a8a2fcf112d695c2620191568a28034f2e88455fd18f0b6226257d6bf7d
MD5 a24f79acded4475250b4914446d6e219
BLAKE2b-256 d1e8f3dacb85842a04ca1f0023a12a455999bc5b75496b5b0df3d80afc8e6304

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 404fb50888b67c5a6556baf3be58e578b8041360dd43d113c9e785fb3a0a9863
MD5 25ea9787385d26139b0341adf2d2cc4d
BLAKE2b-256 8e57b8ade56ffed841b68f6fe8fe50166d52dc2e8c3768aade700ab1bf54722b

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fab9034f65c538ab6aed60e6b6e40def460ec03c6aedfde9bd8412fcad5b026c
MD5 3e2725001443cd0e032147d33719032e
BLAKE2b-256 694036168bcfb6293961a46c80e8bcae8c142bc37f1c9cc19c1839e0a8defb32

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02657a3ffdd81855f845b5aacc72a3e1f5603b9ce7476f2fdafcd810e6e7350d
MD5 3afc4c037fb61bb88d662441ae2f18c1
BLAKE2b-256 199599fcc8a486e40b589e25dca28cf128e506be68e5eb3bb587a0abe4c9a715

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c5170117c6cf7e8e56f786fa5dcaf0952d27ec24f2fec8a5da4bad4b1c189227
MD5 0cf5aa51e13b82f233b07c9594c67f61
BLAKE2b-256 d2b1287cad450b8d5061afb64a01c33e2c5b4626c2419c7058ab91730066cc64

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-none-win32.whl.

File metadata

  • Download URL: corrosiffpy-0.1.1-cp310-none-win32.whl
  • Upload date:
  • Size: 381.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for corrosiffpy-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 64a940f5b3d6a3d78fdf7fecd43ffe3f9bfb33b4ce658994a43496c6c7f8de74
MD5 8add161bdd6ce1b31273682e31e40338
BLAKE2b-256 dfb9b2f3179d1d5b69ef51216a429c5eeb441ca8e8ccb8e7edbf106cda2c7ada

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d70b935ea0b041b50fe59ca38bdfeb4023e02033879a5d510f191770ef38299
MD5 4dee59962449850241587a398c97b06c
BLAKE2b-256 58c5fe98df860bc8d208b05625653fd3ecaf49d1cbc145a75dba565be033fa17

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99308059b1749f49477ab3c623ebedb013d92e84d80bdc4800c039a88e07dc6d
MD5 9211a7151a510fee68e90e809b7a2506
BLAKE2b-256 dd3ec3807a67b470e5b8dcae3d40dc6d082e6a94166179f795f56bb5a7a8127a

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f388177117379f025b233c6c443fc16fb63be5498033113952eace91685c3c4
MD5 d76a3739abde4c7f3b9027de59d9f6c6
BLAKE2b-256 40692dcca39a7c3293a49b57714e70157488d89c7f3cfbb8837aa2d9e51a006f

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9c32c26d196cb1adbc4ee25c7d176ff0923146d11dd9a947b701b6ea95f9254
MD5 f555c33b1d1731fae539b43c4fcee7ca
BLAKE2b-256 800b1044b5bc81e1be76f6b93d7ab8e1e3687c06332e9da976099a1ea86f25c2

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67fbb4fa975dcf7c9b1e327aff0e1be5726082b587f55db7acd73d3ce3e17f0b
MD5 28b349dcb1c35fb2d1322ab95164f483
BLAKE2b-256 9e83c5f911dc41bc41789d8d53874955f0218df364d1c54892c6b365523415e9

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b78eb65ef9ba9f001f5ef6abcc9f4278d013b8ebfaba9bd04854ca51082e36f
MD5 d6a203f640585157ae7efb160197c152
BLAKE2b-256 281e5f0c8cb9d0579eb53d81d5b19e96867a7642c8052002c5975a77d68405ab

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7efe5c391f65428ae1743b88e0ec398b62ab7fec87452bb81a647d84f2b5e675
MD5 651f39112a2543479464b675236d7c8e
BLAKE2b-256 01c8a1a7e7b51f379237951164fd3d6ed79b815166991e8cf6cb63afe1e5db75

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 735e3f2a3ae33ed808823af1e8e9db092e3ce99f482499fc1d11920a23b46b72
MD5 d5fffac5b3fec12faf13f4ad4f30f8fc
BLAKE2b-256 a1236042e1a2b1f178f9215743fc7f3c9a863326a91531f92cb1ccb58737f28f

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f658a3ca5f7c979be74ed8516a5afff9cf3f1b747564c775ff77b2e1187e42d
MD5 dee51eeb5d06fa3d12beae78596b84b8
BLAKE2b-256 2dc698203cbeb9c9b4fbd88721dd0633eaac367fa4655b7d25477342f9bd9940

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f72e397e5fcc998ee21b101526c4af1e57530e18e096afff5eac918b87c16886
MD5 218f6680e4004853df0c3320ab08eb45
BLAKE2b-256 e955476a32469ada025de6be53a60b400f3cf4beaf86a408a71ffdb5ccd36644

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d6d50a01f566c87160442cc6fadb44d50b9e9c5817ad818f7d9e2be1dd5bdda
MD5 ffe98ea244972d52eec7f52f571dabef
BLAKE2b-256 22989994bd0c23daee1ae9110ba6d4e7d6a38cbab5d1f48758491a65642509c3

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cbca41ba9d8b2768535ffc5505ed9302dbb30ecf35ac70d721971fb398be6655
MD5 8040b67514c602d7b556e93068a98df9
BLAKE2b-256 c3f4ac2ca669c70616d0e3384440ee003c5a81fd0d3549135b3ad83b484c870b

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-none-win32.whl.

File metadata

  • Download URL: corrosiffpy-0.1.1-cp39-none-win32.whl
  • Upload date:
  • Size: 381.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for corrosiffpy-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b1eef9367f4d8f9df55c98a9c47185617b54e60bf44d7200f09351ccf9bbc0bd
MD5 bfc67cfb9985dfec57436dea745ee98c
BLAKE2b-256 e668ced150965a488004452fd3546f433bb4a28eddbc32092c9f24226b35d081

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e624a1767f7f811c0034b3601c008069fe1cf1cec412a2d4fb84f32e967828c9
MD5 88a567de8d571ec6536bd8764e8dc373
BLAKE2b-256 92b13791573ff9c6c68101ccf4ed988ea26518456f4cc1e131ff45ac1f78e744

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 557c2912b90a26d96c556a9b5e4f86e948844bb9320075da2763bd0a839f8b02
MD5 f0db09298d627c550a9f171634681c3f
BLAKE2b-256 216580aa8a39555b7d421faa103707f228e1ea62df046e50c98bad9ade61699e

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd794d863e2e1fba93c18179d1a99c91e63aff44e17d31a0e4d95904088875a2
MD5 f8d992d0966a0adc9230cff2a012e67a
BLAKE2b-256 18a37bd947e65bf1489e79ffeec0277f300366eb11b478dbb90362cd853a4922

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c09891ba605e476629c626944ac9fc8592b5edefc2d64e42a88472ed20853db
MD5 d6a6439b33733f5fcfb50760fb3d73dd
BLAKE2b-256 5f78163d9e9224cac048752901b3f3ce00b4e736429b6bfa2158c70c5097bda3

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f3cf54721970f89bf8654dba0af462ed7f324822228a2970f3990dd3da40905
MD5 7b45fc9b344fe0afeb2604386a9c037d
BLAKE2b-256 c4b843e5c139002c08d2f7a52a1f5445cc9453b7830c7314ad2dc9f8e179a8b2

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecbb648a6d11bc316b004e2778d41e62aab5d607938a6fe2cf34edb0893f6f72
MD5 5f1b4abeca88a6a86c0cbb8d79273eb2
BLAKE2b-256 7c423f30f4b3fd80eee3637a342ed06f2563d94bbf9d75e3150d365c0984fa8e

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c384fdc4319deac76db42d67c54609c1b0660f4f42b064ffe8e1cc3aefc21e05
MD5 806549a1d3672e7fa52e0589d1e66d50
BLAKE2b-256 c3998093181cea41933919d5688098395b3977a579edf52e933250bb540a7c25

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c3b4a6420240a75e2c03644866cf25ed6a229a623fc83bd7d1625aef7fd6975
MD5 41a92d1ed988e6e70b9ace2eca7b602c
BLAKE2b-256 4ccecdd4cd1eb5cdca13ce6d8047aa92809f6752960f982d97b85547fcfa052e

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c3859fbe02a5b01d440d1dc03254b658322c3074b90ebc1520072563eb4af70
MD5 8a85aa38d181608a0d16e5794682fa4c
BLAKE2b-256 a99dc669cfe7e5c545a54cff7d5957132363cb3975399d1830801dc1b3db5d1b

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86d18728b5b150c375c0f57824b79c4e510336d8caf55e0eba0018f0e8d7f3cd
MD5 075d5530e72e76d55441a73f45abdc90
BLAKE2b-256 ef7936523770c5783ad06b592b9f325abc86b4520e59e7cccca131f870cbc407

See more details on using hashes here.

File details

Details for the file corrosiffpy-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for corrosiffpy-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb9965d29816ec04ed8da68bc4f9923904044881462e74fbfdc21dcb058e1b2c
MD5 197844993304a68d0da58ac9b7de16e0
BLAKE2b-256 356683580ed24d344cbebdbfe399cd5d8a0528c3cffe6db87a59896885d61dd9

See more details on using hashes here.

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