Skip to main content

Rust library for reading/writing NIfTI files, with SimpleITK/Nibabel-like APIs, native Rust support, and Python bindings for cross-language performance.

Project description

nii-rs

Rust library for reading/writing NIfTI-1 (nii.gz) files, with SimpleITK/NiBabel-like APIs, native Rust support, and Python bindings for cross-language performance.

If you have used SimpleITK/NiBabel, you will definitely love this and get started right away! 🕶

🎨Features

  • 🚀Pure Rust Implementation: Thanks to nifti-rs, I/O speed is comparable to SimpleITK and slightly faster than NiBabel.

  • Carefully Designed API: Super easy to use, with no learning curve; enjoy a consistent experience in Rust as in Python. Ideal for developers familiar with ITK-style libraries.

  • 🛠️Rust-Python bindings: Write heavy operations in Rust and easily call them in Python, combining the performance of Rust with the flexibility of Python.

🔨Install

For Rust projects, add the following to your Cargo.toml:

[dependencies]
nii-rs = "*"

For Python, install via pip:

pip install nii-rs

🥒Develop

To start developing with nii-rs, use the following command:

maturin dev -r

📘Examples

For details, please refer to the rust examples and python examples

🦀Rust

use nii;

// read image
let im = nii::read_image::<f32>("test.nii.gz");

// get attrs, style same as SimpleITK
let spacing: [f32; 3] = im.get_spacing();
let origin: [f32; 3] = im.get_origin();
let direction: [[f32; 3]; 3] = im.get_direction();

// get affine, style same as nibabel
let affine = im.get_affine();

// get array, style same as SimpleITK, i.e.: [z, y, x]
let arr: &Array3<f32> = im.ndarray();

// write image
nii::write_image(&im, "result.nii.gz")

🐍Python

import nii

# read image
im = nii.read_image("test.nii.gz")

# get attrs, style same as like SimpleITK
spacing = im.get_spacing()
origin = im.get_origin()
direction = im.get_direction()

# get affine, style same as nibabel
affine = im.get_affine()

# get array, style same as SimpleITK, i.e.: [z, y, x]
arr = im.ndarray()

# write image
nii.write_image(im, "result.nii.gz")

🔒License

Licensed under either of the following licenses, at your choice:

Apache License, Version 2.0
(See LICENSE-APACHE or visit http://www.apache.org/licenses/LICENSE-2.0)

MIT License
(See LICENSE-MIT or visit http://opensource.org/licenses/MIT)

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project, as defined by the Apache License 2.0, will be dual-licensed under the above licenses without any additional terms or conditions.

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

nii_rs-0.1.2.tar.gz (20.3 kB view details)

Uploaded Source

Built Distributions

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

nii_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (695.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

nii_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (745.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

nii_rs-0.1.2-cp313-cp313-win_amd64.whl (495.5 kB view details)

Uploaded CPython 3.13Windows x86-64

nii_rs-0.1.2-cp313-cp313-win32.whl (452.7 kB view details)

Uploaded CPython 3.13Windows x86

nii_rs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (694.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

nii_rs-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (746.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

nii_rs-0.1.2-cp312-cp312-win_amd64.whl (495.6 kB view details)

Uploaded CPython 3.12Windows x86-64

nii_rs-0.1.2-cp312-cp312-win32.whl (452.7 kB view details)

Uploaded CPython 3.12Windows x86

nii_rs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (694.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nii_rs-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (746.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

nii_rs-0.1.2-cp311-cp311-win_amd64.whl (493.6 kB view details)

Uploaded CPython 3.11Windows x86-64

nii_rs-0.1.2-cp311-cp311-win32.whl (452.7 kB view details)

Uploaded CPython 3.11Windows x86

nii_rs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (694.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nii_rs-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (746.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

nii_rs-0.1.2-cp310-cp310-win_amd64.whl (493.7 kB view details)

Uploaded CPython 3.10Windows x86-64

nii_rs-0.1.2-cp310-cp310-win32.whl (452.6 kB view details)

Uploaded CPython 3.10Windows x86

nii_rs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (694.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nii_rs-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (746.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

nii_rs-0.1.2-cp39-cp39-win_amd64.whl (494.4 kB view details)

Uploaded CPython 3.9Windows x86-64

nii_rs-0.1.2-cp39-cp39-win32.whl (452.9 kB view details)

Uploaded CPython 3.9Windows x86

nii_rs-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (695.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

nii_rs-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (747.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

nii_rs-0.1.2-cp38-cp38-win_amd64.whl (494.3 kB view details)

Uploaded CPython 3.8Windows x86-64

nii_rs-0.1.2-cp38-cp38-win32.whl (452.5 kB view details)

Uploaded CPython 3.8Windows x86

nii_rs-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (695.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

nii_rs-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (747.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

File details

Details for the file nii_rs-0.1.2.tar.gz.

File metadata

  • Download URL: nii_rs-0.1.2.tar.gz
  • Upload date:
  • Size: 20.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2.tar.gz
Algorithm Hash digest
SHA256 25a92f02f035c3b72494814b6d3b30bf3ce109ef5a076c8e7221b8bb3a402772
MD5 2bf6a1d11fafd2fa7ec2414d6d053e01
BLAKE2b-256 2d42b849c2ed6e42687a88877592b0a927ea4f316082361e59cabbc3d9a5137a

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6e540e20e1772d11bdf469827ab60dd078d3016655f285fbbfba33271623142
MD5 353a8649c6533e298e7c52b10f0ddbed
BLAKE2b-256 c4b78fe08ddfb5d970e1e58d3d44b3da174ceb46f3d0102942023019a79573c9

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28d26375d7d3b949558f07a5eaaefba47a9b23968ddf69ab3f03fe769d8ffa70
MD5 ff55be37287cc8df583d5d0473022396
BLAKE2b-256 5e2c80a83a1be0ca847660d943a5f21c9e8466c7ee8edcb8dee5a5488760acac

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 495.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d381ee8db9e7501b733ca72623c0dd7743d3eb76e3568c1778bd9351b6a9527f
MD5 37a4bda14c6bdf8140cf87cada87387e
BLAKE2b-256 430d3255b674f8e3fe6ba958f94f5a094368d4213c6686a42f5673d584fa0200

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 452.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 73e1554db7cda9713b82e7d7f21a24871be368ab3611380819d3c012b3be08f6
MD5 ae15bf3994c058e97c6c771ce4a32774
BLAKE2b-256 94615ce71da61703e59c0eb330442ef173e70572b45884535234c576fd68171a

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9c69adde04055f55af260a7bb83472e629fa88e7eb5cabbfe193c2ee2689415
MD5 97a8494dde0d7ab08e50b7709de75297
BLAKE2b-256 f4133d8d722b6aa78750fb9d52c41ae18972f9c6376428370a13e9ebf3914088

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d77cabb880856eb033b5833d32696b21a212a86b26460466f60ce59a546b6dc1
MD5 0b7b93270355c6fd57b61abf9c653eba
BLAKE2b-256 8b52a728e18205252d9a071a31f61c5a650480f3450253bf3ee5b224f75a9b46

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 495.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e11fc79708e68abf63a4063d072f316735a0f9fe174ce8ffb66c96de58d90b0a
MD5 9c2c40708e0e7a9f7183c91dbbbe1b12
BLAKE2b-256 3360d678547bee95f1e1c2fa848a6c18357c0b00d3e56d59d5d04c2d32992cf7

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 452.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6025d044995a9076ab704056bdf497da4cc4794174aab7d4ef4e38d211a4d77f
MD5 14f4ef4c84ff4bbcf188063cd6d87570
BLAKE2b-256 ed0a96bac30267e79c757295b307d64577db9201c8f6c1306f43dd9eeef50faf

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 912823025ef3b8e5b6b59d1503553c874d256a6b27c7fdda6e4dc138d8f45ef9
MD5 6567ad72766f4a692a9b8620f9d926dc
BLAKE2b-256 50b01e633eefa042d08adea9f2eccb1af74666cd612c7f423230096c6a351337

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b93fcc4615b3d95e5a21584aeba3006ed5eafd60417e6e6c5f567d7b3f63e7e0
MD5 304da659252c0e2aa0fa49a913c8e194
BLAKE2b-256 75311da05ff06475a2f18027a7a5cd6aeec318e19524f5851f20b8e4f1796189

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 493.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1bf2f2e571c1a64eb37c96da229fa7b986393196621472f8923e19282e349401
MD5 9537891b26f61c9778c07b6efda6d812
BLAKE2b-256 1adda9ef9852f136507a80975b6f367b09e5023639169dc22b5f52c5ff89c67b

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 452.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f030288640dbbb9f6fd77c736f2b84a20adafd0bbeb3940e4796de3dd8bc2db7
MD5 996076ac4d3db09f3b72f8e04d7d61d7
BLAKE2b-256 c4cb02dde55f946f4c3125fe209b489b21470b6aa43265183ecaea1e274e5b52

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f509e941a82e06697fb1b683cfb361c479bf9f8e2d75c1691d4fc756d32c074
MD5 a8b07669a0f0bcf5d69a274487913bb8
BLAKE2b-256 d5a4ab0c964f371f3df24911e6fd919a535a42d4aed2efbb21f94e7083cc6a74

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a01766ed6a822ee191ffa99e304a6be4f08a6d9ccbdf0f4751c170f874327fd0
MD5 37a8fc64fbeb37f7ec2860fabc402c2b
BLAKE2b-256 e893e01e638d49cf44c852d7b60a093e20669d17e322495b70296614212dfd61

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 493.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01d081ca7795b2189a91c87ec9cf87374fd6e300917c37f070e5a313d3ea5d7e
MD5 01085490ca9c6f2fad360893111d3783
BLAKE2b-256 5ef4a17bcc3ee6060e132d5244542d4486b531f4259320251dcd5181952ab5d3

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 452.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2cb7016e0cb87b06ff1d5b890d0847f38844ffdd9ebe368e0d2304210fe712ba
MD5 ed4c39a2be75ab8676a1adae5f1c09ee
BLAKE2b-256 9e0261007414f6003c82b768fede0be2e7b0fbe5b88c95182e77362ec472039f

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be3c14a0faf8dfcc17a575fd2d719265557c8cbff7d218f843bc675c1fdf2b17
MD5 a7824f28276fe7da69d7a8af7bc43830
BLAKE2b-256 782216ab0ec5fe7b429e530d6107463ed0e935a6878a7c01edee60bd589420b8

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b806dbc65530475d1e21592b413ee1a756bd15735b4572413fa834c90f58625b
MD5 62e09bd82990b7f075d67742c9652888
BLAKE2b-256 cc4d7676ed006032a58d699e4e6ec73e3c0407352120170f9014d98ffa648021

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 494.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4c53be03921c54f2afef5df08584dc97498c3f9f0a466ffbe6445aa4c6fda35f
MD5 5bbf01426fe7f66f1d11df2d5642ef6a
BLAKE2b-256 f4799034faeed6a86f47df64805721801df934d62a85fe0feac5998dd55a1646

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 452.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e050022b1b94e4c6b673e05bfb85dd00412047d37d611bbfce07437888cf9d86
MD5 fe5262568ff5ce7adbe37a82cd336a2a
BLAKE2b-256 0386505c0d6dd49ee5e2132079a666cb2bf0403bd2da1ecef93fa7cfd909a490

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d96fe78fa8857913de74f9b3bd0b1b54a8f38ea4c1c680f416d4cf76027891c2
MD5 dd8098ad9c93f0a5b4229819c18236e1
BLAKE2b-256 ef6f1e88b1e448b75ab47d4aaffdf6c701f26e3d1514b26f836a20e64344443c

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55d99c2889fc06040569c989d28d017e7427720e47c560d21575869ffaa4e465
MD5 8394e5a76301d062270bfed5ae9f3962
BLAKE2b-256 2f901b7c279e92f24229aaac6bc3171e2c3213a9ede3ffc872b7a8ca206a75a2

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 494.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dcc54a9acae826ea2d0cd3162b3a370246d10cd66799ae892f987c5b7ef723e7
MD5 c198805799dfbfb7e3eaaa5faadf6721
BLAKE2b-256 0d1424464feee85da32c77de8c3f4218bf7102aa93c87fe84325cc573cef47ca

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: nii_rs-0.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 452.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for nii_rs-0.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ae2b4a44157b514863c46690739f5a649c0fe21da9ed4ce6486afd870d5ef86f
MD5 b8f82bdf02a654f3ec8b435f043595f4
BLAKE2b-256 79ee0ea16f76e9709e8da19d3a66e35de7e26a2028471c1b4603c4da0daa2318

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d986abb5279fed476e6154f5d34b5f46c54f501b93745e7289a3d38aada23dad
MD5 044d430fb6386e3651d065a2790fa4d8
BLAKE2b-256 72461895e16c1fcece9b382e6660375e50adf0c7f6112880471053a0c3ebed8a

See more details on using hashes here.

File details

Details for the file nii_rs-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nii_rs-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b1a876285ad882a4dc68b94dea4396636db1f35ba196dc5c481bec3752dd46b
MD5 a9ed2e1c2afb77f86ab1f6e702e459a2
BLAKE2b-256 e85e80e92b6b50a6782722075742d093d38c547e452920bd9afc5b43f0e16d2b

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