Skip to main content

No project description provided

Project description

codecov pypi License PyPI - Downloads

Imops

Efficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines

Install

pip install imops

Features

Fast Radon transform

from imops import radon, inverse_radon

Fast linear/bilinear/trilinear zoom

from imops import zoom
from imops import zoom_to_shape

# fast zoom with optional fallback to scipy's implementation
y = zoom(x, 2, axis=[0, 1])
# a handy function to zoom the array to a given shape 
# without the need to compute the scale factor
z = zoom_to_shape(x, (4, 120, 67))

Works faster only for ndim<=3, dtype=float32 or float64, output=None, order=1, mode='constant', grid_mode=False

Fast 1d linear interpolation

from imops import interp1d  # same as `scipy.interpolate.interp1d`

Works faster only for ndim<=3, dtype=float32 or float64, order=1 or 'linear'

Padding

from imops import pad, pad_to_shape

y = pad(x, 10, axis=[0, 1])
# `ratio` controls how much padding is applied to left side:
# 0 - pad from right
# 1 - pad from left
# 0.5 - distribute the padding equally
z = pad_to_shape(x, (4, 120, 67), ratio=0.25)

Cropping

from imops import crop_to_shape

# `ratio` controls the position of the crop
# 0 - crop from right
# 1 - crop from left
# 0.5 - crop from the middle
z = crop_to_shape(x, (4, 120, 67), ratio=0.25)

Acknowledgements

Some parts of our code for radon/inverse radon transform as well as the code for linear interpolation are inspired by the implementations from scikit-image and scipy.

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

imops-0.4.0.tar.gz (15.1 kB view details)

Uploaded Source

Built Distributions

imops-0.4.0-cp310-cp310-win_amd64.whl (497.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

imops-0.4.0-cp310-cp310-win32.whl (426.6 kB view details)

Uploaded CPython 3.10 Windows x86

imops-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

imops-0.4.0-cp310-cp310-musllinux_1_1_i686.whl (3.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

imops-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

imops-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

imops-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl (960.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

imops-0.4.0-cp39-cp39-win_amd64.whl (503.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

imops-0.4.0-cp39-cp39-win32.whl (432.9 kB view details)

Uploaded CPython 3.9 Windows x86

imops-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

imops-0.4.0-cp39-cp39-musllinux_1_1_i686.whl (3.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

imops-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

imops-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

imops-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl (930.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

imops-0.4.0-cp38-cp38-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

imops-0.4.0-cp38-cp38-win32.whl (432.0 kB view details)

Uploaded CPython 3.8 Windows x86

imops-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

imops-0.4.0-cp38-cp38-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

imops-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

imops-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

imops-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl (928.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

imops-0.4.0-cp37-cp37m-win_amd64.whl (492.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

imops-0.4.0-cp37-cp37m-win32.whl (420.3 kB view details)

Uploaded CPython 3.7m Windows x86

imops-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

imops-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl (3.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

imops-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

imops-0.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

imops-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (896.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

imops-0.4.0-cp36-cp36m-win_amd64.whl (561.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

imops-0.4.0-cp36-cp36m-win32.whl (462.4 kB view details)

Uploaded CPython 3.6m Windows x86

imops-0.4.0-cp36-cp36m-musllinux_1_1_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

imops-0.4.0-cp36-cp36m-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

imops-0.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

imops-0.4.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

imops-0.4.0-cp36-cp36m-macosx_10_9_x86_64.whl (899.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file imops-0.4.0.tar.gz.

File metadata

  • Download URL: imops-0.4.0.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0.tar.gz
Algorithm Hash digest
SHA256 0b6b07b34f757076cb152e0ad77d2bf9464fe250f9ba1d1c86f7c0a7d54fbcc6
MD5 77b8b09dc31e4c278ef61741fd4d5e71
BLAKE2b-256 c96aa4e84d1ae2ea4408206812bd9afb12d6abd3209d091f79e37b0d077ead2e

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: imops-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 497.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87b4ba18321261f71984fe4219c0bc940545d178e8eb8816cb54dc380920716d
MD5 42fe6d75581fbc9ce27bd6f725718d5d
BLAKE2b-256 f345c62da9a3156ebecb7ad3b21feb1ab1e1b5b89f145439f3befeeb18f95246

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: imops-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 426.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d5f14e670c239657f4b43d8cbf6db11bd0556e17f6cf826e7237287c56d4790e
MD5 73f8f0f269d959734dcb6c138b1f6032
BLAKE2b-256 72b6b0da1d39a9fd69ed7338fa7814a61dabc7832bb19b6c536e0b4cc982f57e

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1db24bd9cbe851903b9a97c7f5d2158665e23f6bf3f336dc8b2f8a3531df2782
MD5 5f13c92e4bd3b93b1b0254583a9108b6
BLAKE2b-256 11928bea035ed8d85cf8f2e4c7d1f7df86c8d48e254d4bf6cf5ddef0497970ac

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fab220757aadd7025d05e2cc93aa6e259f9bc922ebb6fba7ee233c34261e2a81
MD5 f9efccfc244de2b9cf0ad33763266b38
BLAKE2b-256 c3d86ad5547e8d7cb2982efd61cd794ed8be69f81a49a88507f978d4fb2cb06b

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd15275f115c78d4e12bdc0a3574d98c336e0d5580c23af7cded3f8d6b9f7c8e
MD5 48acb7508e2e6e111fc913a1bece32b6
BLAKE2b-256 76c04ad93aa482c2ea242ab2a76de3fcbc548248ae48bd2656d9079b65da93c2

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b30908de80bbe9d5cb668a049f197f87b5c6936c3cd6fdc49946629fe733784
MD5 b6ef02804df2dfccaf7c8fb9392785c1
BLAKE2b-256 cbdfdc8a55f733308ea520757b5afc51de15d4f4a27132a7762b20e48790836d

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 132454c76d8a615b82c06c8b0e78f99116868444acf8c8a4b25ac642d74a048d
MD5 8a8d45f9c61b6dfe30acc55cc59925c3
BLAKE2b-256 26224641ffa791ca43c9daa45802438740a8229ec6d54228bbd7871d5f189e84

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: imops-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 503.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 95f68cbcb7ff0dc3dd18b4d56d90a3d9e4a9c8e8d07d30c95798d787484c589c
MD5 1e44417f73cf3443f3142b7a03d393ef
BLAKE2b-256 61f060107dfe03b8e4eecbd7577e3c9092350da6dfaaa07e3513baaf3dd1a0a7

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: imops-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 432.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 71874d87cead95e82ba125311ff4b5635c4d66aaedb7656245f39a622be81c81
MD5 4395e16b8d4a1c42ecdf246aa63dc757
BLAKE2b-256 3423bf79a6922dd1bbd904fe5518c02cd4e481bd6c70f169907fca12db994f61

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63caed758931ad11a863f19b5cb57a37fa2cd7eab15b67949c08aa177be74a0e
MD5 4de14d659570b2dd09eca03029217790
BLAKE2b-256 a4bfdce396510dc5711d781506cef0d757f0c91d7ad63e17f816bb12f94d61e5

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7f962d6e8ee407702fbdae2ab86af7d51de1f5f159aeb109286d2d11d45f42ca
MD5 813301aea65927be85009c1ebc867d0e
BLAKE2b-256 176f40b046add75bfcd17687c9a8c5f2f0b16521ac95e10a04b6abcd1ee15774

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 193cbd2fe62461257e4da0625980e9d2ff7790e22077112e6c6a4fd2d8e03410
MD5 f138f7ff171bc0add8f048438550bc6f
BLAKE2b-256 dfb8775bd78136631c52003dc653495bde640714dd2593e1fd1ea38c5b03aba6

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cddd02de83f93cdb1a0d0b8765a4cb02a11bf81398bef169409dc81c5f6a0b4a
MD5 40fda13bd9acd07fd338ad78363c803d
BLAKE2b-256 b99710001870f9024b01b596147bf2ad6065101567eee25f5584342f44f8d310

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6376640dab5d5c274fba28b178db4b16d7a44b4076228446b1414311969940e3
MD5 49602c2a74a45e837738802a2ff87ac3
BLAKE2b-256 261d2c01726ada842d0579a08d066ef8f9d2ad72dde7b6f699343757dc7c6003

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: imops-0.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 503.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e29b041d546e7a8acc186cae321f7ce0c44aa7f1507feef01ba01d3c5526954f
MD5 6b1ae8df0720cf6ac89abdb532d53bd9
BLAKE2b-256 c04bccc476ffff43e2a5038a682b9bd3eea34a38bafaf5067fa00bba37a569f0

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: imops-0.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 432.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 da8c1ca2764a0e640a436f0637f42dcbd43a62e081463bd602804bbfcdc6b9a0
MD5 4069746a720f6beaa495702404a7b18f
BLAKE2b-256 3b09b6b308f51203038bd218fd37e2587bea9442eac874d2a27d9a1822c9895a

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42964bf454c2f20c25bc36a10a5f715bffb90fad1de682352ce1d010738cc768
MD5 7dd169a635a87d515345370840405752
BLAKE2b-256 b313412bcf1040a331fa8dfed3f8de3f3e258ff834d9ea8cdcc1f0be08d357b6

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 be0c409595d406d629124ce06d8c10a4ae3cd2083ec2a9273dfba7ded86c6296
MD5 1c9da9107b811121bbfafd1264ef8ece
BLAKE2b-256 e8ba53e81cd17466d7a60aa07f3173139a5c01f6995ac9c2c00eedd05fa2ffda

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e15759331e12301fbd5702a625964985918c442bbb272fdd7b9158999efdf634
MD5 8d4f0e81e09153b4939bc10f68e5ee91
BLAKE2b-256 ba0e61678008297d997eeb55659152f5c46b6e868c3ae3c1e5afe31bc641a972

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a095fa79f6c11610e88c8ac81365647f6595fbe727823fc08b76ba8270c680a
MD5 3ce8df25a34242b9e75fc0713569ea22
BLAKE2b-256 c2fa7f5a3ecfeca691797b400101658bc223a1e429ceb38d381f528ed46623a3

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c3dd42c5b6f2e0c0fdcf1fc78921b7510e5f39996fac05d29239f43208e4383
MD5 2b9fc0b7d49cc7c4d4b84a74a2a32c11
BLAKE2b-256 287277507cdc337d704d58ffe7b93e1e836f65fbd963b7b6b6f4757c3a1f34cf

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: imops-0.4.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 492.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ba3271c4e261c666fd2c54521ff4dc75209d6ba215ae15a912c8bf5e9593061d
MD5 7a3356f5ed306e53b59a503c42d1163e
BLAKE2b-256 a5dffd641b3af282c9c9ee3c060cc3d80f8f50ab18fafe477f8861cee7eb4d9d

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: imops-0.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 420.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ba75df728871eedb11c4ea235ad18d5a507e3213e2e66197a4072a42134d0677
MD5 40bbd5c8e4804f0ed41dd2c0831e5290
BLAKE2b-256 1654af7819e527124eebac5cc7c935da0b7489bc3f47cfa1eb59e7c27e2cff57

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a4a04703bcc8a5685aad47af6a9a0a31e7dff6df41f0fb55c26062a7b7168df4
MD5 6cd282c9ebcf2f5a2f7a0409548c5a9d
BLAKE2b-256 47dc96d0a27dc4bff3137d8a606414cef874f3bcd5813ac5ae15eeb09e3836b5

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6d592ed2c6321b39650391705335d5e205d686a4cacd094a1d8ab98e29ff6e96
MD5 d2db547826d8e583fd87610721761f18
BLAKE2b-256 26867651f834f9ea57e1f597c0cd7198637aeb3e61c08ad62c4f628f821bc327

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 388827df897d7fd4e2cfe62fb9d030883df8506f252289498f3f004ad6179bdc
MD5 c68877cf1187cc19bb3c0307834a028d
BLAKE2b-256 8aeee31d08d7f62b35b452bd643e73ee618e94dfe829a4c73d5c8c91249f7a6f

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e134095cbac6efc85f6485445ca1082500d56046a6a2ea119f49f28d80f76167
MD5 4432ca7b4f1989399f0b29ccd3598786
BLAKE2b-256 ff0764a7433c7dfbc688876ba0be59388b0b77cb48d92ece8b82647067c7ae87

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a352f65964b317df532efb3ed73e2f90d710c4cd2b4c47c551421080e3dc53ce
MD5 361760c30cb6e45281b071bb3d4a9040
BLAKE2b-256 88f783b6fa7ef64118ff55259cd9e9752c595d3a032ae2874382ef8d91cd3f3c

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: imops-0.4.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 561.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9620de4dd850dc7dff9d40f0a99d1407286936ff56ed298bccb04ee84e10f950
MD5 79232b5e8a30a315bea511524e72cece
BLAKE2b-256 4661efaefe85f8463878325cd2ff5a2da816b9d48fc89277c994ca4c027d7a78

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: imops-0.4.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 462.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for imops-0.4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 306622aacd2d835239127fb637ceed2be52e9e596c11a76de809c4f7ca0488bc
MD5 4559be70bb3ef56fcc6bd1d5475cf764
BLAKE2b-256 90ae0df98594d265323d80755a47ee34e3c022b5c4486600f9011d74ae4932cb

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed0fad8ae7ed5a98623093945f424cefa0cc3449d54ba5c353add287bbe8424d
MD5 3159167d5281d54d8df4478c4ad32543
BLAKE2b-256 c81e6014feed0c8f8c1027584029b02852b0fbf36f48707efee984aa8f3c388d

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b91bd2a7c779debdb7fa00f01e9ce0d5894e35751f625aa7e819970fc2fe744b
MD5 1192547c8c3615d7cad757f5c475cb39
BLAKE2b-256 cedf9af873deada8990655ffc4bdabd3fa77c20ac81188431d6d14160513f0b7

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72cb1a4f4d9bad39ccbba296834f91b615645d99eb5982147bbc338856e7a377
MD5 2d6e190728cd9f0f3575d94b4284b75d
BLAKE2b-256 929c5e831c232d5a5b5bae76ed7cb348d0ab61b7bc24ccc399003c6ad2003128

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e18808767e771d702b71624e76a088b32b22def91e3e994bb5119fc58440281
MD5 bfbade8da1ebfe9fa7f31cf2537b3839
BLAKE2b-256 6d37a716b79330640c2cd006d0f07f58a329eba7f8544a3fb924fd1acda9e25e

See more details on using hashes here.

File details

Details for the file imops-0.4.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imops-0.4.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 414c391956b28458da230fb8e81763843afff304b75d4f3b2887dd62984e0836
MD5 f537e6208bae65892a5fa44c140eb010
BLAKE2b-256 5e02efeef5d58401a17c56f8cc8bb3c36e5065ced9d04e3f4115f22cf66e720c

See more details on using hashes here.

Supported by

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