Skip to main content

No project description provided

Project description

codecov pypi License

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.3.0.tar.gz (13.8 kB view details)

Uploaded Source

Built Distributions

imops-0.3.0-cp310-cp310-win_amd64.whl (253.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

imops-0.3.0-cp310-cp310-win32.whl (218.5 kB view details)

Uploaded CPython 3.10 Windows x86

imops-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

imops-0.3.0-cp310-cp310-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

imops-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

imops-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

imops-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (636.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

imops-0.3.0-cp39-cp39-win_amd64.whl (256.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

imops-0.3.0-cp39-cp39-win32.whl (221.6 kB view details)

Uploaded CPython 3.9 Windows x86

imops-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

imops-0.3.0-cp39-cp39-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

imops-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

imops-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

imops-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (540.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

imops-0.3.0-cp38-cp38-win_amd64.whl (256.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

imops-0.3.0-cp38-cp38-win32.whl (221.2 kB view details)

Uploaded CPython 3.8 Windows x86

imops-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

imops-0.3.0-cp38-cp38-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

imops-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

imops-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

imops-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (539.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

imops-0.3.0-cp37-cp37m-win_amd64.whl (251.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

imops-0.3.0-cp37-cp37m-win32.whl (215.4 kB view details)

Uploaded CPython 3.7m Windows x86

imops-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

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

imops-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

imops-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

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

imops-0.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

imops-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (524.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

imops-0.3.0-cp36-cp36m-win_amd64.whl (286.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

imops-0.3.0-cp36-cp36m-win32.whl (236.8 kB view details)

Uploaded CPython 3.6m Windows x86

imops-0.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl (1.7 MB view details)

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

imops-0.3.0-cp36-cp36m-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

imops-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

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

imops-0.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

imops-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (526.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0.tar.gz
Algorithm Hash digest
SHA256 59474ddcdad7a60544c46ff23fa0ae691c5aaa72ef34b15f50c61a53bb8a6e3c
MD5 cf8100ac8d46b2bf0c769251e24b0fbf
BLAKE2b-256 eb3b3d50ca31471cc2a3014cf494a096d44cd4d90fc5415699235c13c9c8e436

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b2462e80f40a365729e3edd74c2051c627852bf0b87b9bfa1f0142585fafe7d3
MD5 ff29728b18e17437f72e1e7eb201d44f
BLAKE2b-256 71f1d003a24e18f1834167bd74b15874edc5b5958367ef1a9abe2c5f880ecab7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0aa49026b763fb7983ce5f789abfec440d8c2aa878be8c8c2b15028356ea059a
MD5 bfcde7927e0ea58e5ae5f5bb9acc8678
BLAKE2b-256 7a6db7ad71360838db012dbb3ab61cba90c6d8104e8b9fff183cebf6708b1594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa41b1370cee2ae002b1f44e8bf7ab6fa15f08711f900a269a9bf3a0ace6c83c
MD5 9ab4b04b31ba1a65a6310244edbb9e7e
BLAKE2b-256 ce9bf84d5ee94dacf6aa784ebf96dda3ecb76932524150433293f4df6a59f760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3fd857fdfca3a7dce1bab6d90ab5a3dc22e671c66b75ba9af25f4901a031eac8
MD5 a0dde18e0a78a5e27ca7a4cba7158637
BLAKE2b-256 8e6d7295b8644e78c29febd99e46e13a9d35a454182ed5af9b0a6a5952dc9a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3148fcc01067b28a904b7eedc6a956b167af9e557345a07f76d37b71cc6c641b
MD5 b9d7aee7970db3791c1a917f00dfe151
BLAKE2b-256 f9887087c15cd259499f2426ff9154e30fee17a9382cf56b2c034304b1fb6405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 558105dad700059b6c22b18bbd43f4b671097a8362b10ce2503e4558f6e795af
MD5 9ad0db87536ecb1e096c919bcd873d5d
BLAKE2b-256 106211c6a7a8e55588b1c11eb2aeec5ef2ebd945937d0c4c2fd7cf7fd4b46054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bc877ce8955bf6ef5ae5c2afe3d292c84b96b2df8d07cf652ebfdf01bd47de1
MD5 5f2770d9513afc714a680d30f78d054b
BLAKE2b-256 8b5392e970c1f9510f66bc71b1c18664089ac6c3b12af883cb626ef3ab1f9870

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b4301fc120f685e84a2a3eabed247f49872e5f1655a0ed66b7c91f83f0b0447e
MD5 34eb0a953387b0bf58b2b60bbbf281f1
BLAKE2b-256 2ca9b3b5fb0426aa250d68e935b28b51312500f8e3a7ef3047887dfce152c7ff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9869d99e4aa1d328591c154c8ccfc1596e8f7d061bdaf1ad9dba0fc739828699
MD5 0bb68e8b19b195789d0b241eccad474c
BLAKE2b-256 57dd27e74c6b5032ebc44a8b5ecf7fb74efc952a953ab2bf3b2161e7b33e91d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88b19e2222743832800982c2e21253eee708829f83a4610765250783e58b426d
MD5 dc688426fd978e306dbd0cd4c126d636
BLAKE2b-256 59502e1fddfb31d67b7a92e47959e729cfa6b42fd5917c07470fd1b8a708f2bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 11ca49a2763366ba5e7f76040dc7df73c83605a0bdc6ea40d91f4843472300f7
MD5 db2487fbae414996cde1f20bf046e83a
BLAKE2b-256 953990634e4a1b79af0187619fce74420b70d97518eca1f8ab1005e94ea97bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03896fdde7aee204d9e7a777b6e1c3dd420ce8772f7c628ce65d651183d1416b
MD5 4d82e667e33f4a1f80410ff481b56a1e
BLAKE2b-256 c59ac996da05e911b4a6744a3116a75e94516b16379d162585c9c08a134f61b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 741502cfbb38f2af0133a06c8783020ed95e4a5f95ed3cdd9ab8f59db09631b6
MD5 6e101888984c006b7c176d9a112d5086
BLAKE2b-256 51d6da1690ae11eaf98ce808a72d4112eb993ebe71de293849b86711b77e4a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbfcc62509a2a8b5f6c9f8bd1fa9d2b89622f865d5b5f08b6e33a72db269be21
MD5 af30be7be2f39e8a8a60463ce5f2f54b
BLAKE2b-256 7300521a360aaec22c4913f841116e5416448db1bdeaf9c5f63af9a4b6df0acb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ad90fe06c049b3f21343bef5e820ee42494309aa063876e0c6bd8911e3411ef1
MD5 cf87843a08938e8979c433ed1fe81b95
BLAKE2b-256 d14b4a3c5f06c8c4c2fc9339539596a76941cf0eb4096ed01daaedebfd1e9947

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d297593827db9715e55a7c311c52883dbd401fd448d47eaf9a48e07cb5cda3ad
MD5 86466729f5e3839ec658d3ef4bf2a88f
BLAKE2b-256 e23dfca17f297903c6004e503f2e6476db1546dc42422983f30e48005946f32c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 61e887207531a3a1ead83b3665c99e5061bf479bf3a09a005d59e9c3bfe2cae0
MD5 9fd654a042d3419d20de160f1b09b660
BLAKE2b-256 fb4d17f6f21f45a862f7bfed52d57dbd78983e12ecae74ff5a9fcf7f6df80ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 98719cd75be89cbeb1b708e2bd38673ea0c72e59ee54a8b87b7c799986bfd3f9
MD5 3599cf9d55cc9d810bc7048d6716eeea
BLAKE2b-256 75b0e77c7d6cfc5cc5e14f9f6dcfb7e6bb335ab914809824ceae218110dba3eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f502460863a2d3fda1ca73aa7e37c3f2e533ed9998c01b8dc7b2394a1295bcc6
MD5 336d21cd5baa97ec9dab7fefa77c2198
BLAKE2b-256 e4063fc1282f601ab933d76d1ad11feb1c691d81e27f9e20dcb52d39da4807b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a029f340ba7febc8830f44e05789a55b40a38b3efdb83a026984e73c87e430c1
MD5 16e4f6d1cd4a6c967ea57a7f0b2f5ff0
BLAKE2b-256 b561f4a56376707dec5f9173068a44c7267ab2ce39072b79afec5e61e01f7566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0796e21f5c2003cf8d161f7698bfb242b5801bf2ee711d12e8056f134c9ff13
MD5 fca50e542f9336d5643830aa10b16c6a
BLAKE2b-256 92def4b5027887db757090063ad5005052b40e869d4eed7b9fe90f1fe594bf60

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e09d1812042c2b29f315ae0c1c0a25930124470af485ed6b8bc81ead5cc26478
MD5 ca5b17bd8b33c8ec1877ee02f44b99c2
BLAKE2b-256 657053d08e1f8dc791a4582844135f20b257502ba4eda1e38172a32a834dd00f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b274c801cea1b4fa29395588889d0f01a28aa09a0fa0a43758e62257d3086529
MD5 eef9485fa011d16d6dcbe134b3706e4c
BLAKE2b-256 d00e1cb048c466051b1bc4401fc71ca67c97a73ef8f798cad10e6aed4b863703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eb911213dda8d32fb509716226194478bcaea09490dae46de4785be02e5a934e
MD5 7a9b1703c577fc039211c7ab3ea5cd8f
BLAKE2b-256 f7eb82016b1baeb34b0cba8f82df72a3bbee35924bd3e6d98c0817750af99a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 49f447838b8ab62aabf40a64e9481525ccaa091fb60b8d9771ce47cfef6b2504
MD5 5fed85aaba122480b48a2afdd721e321
BLAKE2b-256 27562f3d7f6513559160eeea15d8001ed941753c24c22fb583fe3e1d513e9e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fac5b8a18c9fc90be486d724695bb6af0a7e5a561a9720d1b4169c5c91b955c
MD5 2f318bbcbc281cb278b58b23a333dfa8
BLAKE2b-256 6845bf7f4f9e66b7f9effead2ff245d17b416208722266afa22ea81e7e0b0054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 932a8dc820baf9dba68b8f746f6f0334e42d320102eee3ce67fcac43e3a5afba
MD5 1d321bf1afb363c1d1ea6b64fb96bb36
BLAKE2b-256 3ef504521063fabfb4ec5a3ba117b7c5f6a62d4f6bd247b8869cbffdc0922193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94fe250496db6ea5c95e57f6cc51fc94f63bbd0b6a20b09b6ff189ab0433d791
MD5 be32904a8957160d419e9f3ca8bc86ff
BLAKE2b-256 f5fd5da10b2686ab907f635ebffe43423d74f550fcc4437fac3a603d110c05bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d93e938b70a1c7a5ec05b94ff21ea53f1c01d2ee6f4fc404d822a9a74813d0c5
MD5 91a4f02baa722e6d82c29157aeda516c
BLAKE2b-256 e3452e954ccd5b4c5f2247a95d1bdefee28002c7e028c1ebb0d9f65f5bb029af

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for imops-0.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 abe83da1c1849b08e3b3246a0b82047a7fb2449416927f34dd0fbe89e77fdb11
MD5 806c16bbaa8c9fcfe0261cae72b84d3b
BLAKE2b-256 67985fcd3320890ac33380bbd426df6ed71cba370f741e802cfd1fcaf28fd586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b95e3d8a99443bc84a6cdc9773b1627e9b5590eef7892de0092b7ebac45aebd
MD5 a512e806527c1cea8dbce033c3b4c342
BLAKE2b-256 bb025895a7a8fa25f05e6c09a0a5bfeef9f501500ff441a29eb6c8079079f63c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1c018f84b4a8bd9b78a50a60b33b3979bceba1926c9ccd5ce4b45751ce5c8f73
MD5 ed9c759e00ba20022f55ca12897f99d9
BLAKE2b-256 c61b0a6361bcb5cdcc6dacf2fbf3c7ce9c54c06a1fe25dbc24938059405a31a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 985fc358990827e7083ce1964a419d20dc4ded5b08dbf6cd6daa5892cbb8d24b
MD5 0fc4b4409ed4c8095b206e1e652fb219
BLAKE2b-256 ca3285216658de6b3985d5836246b0b2e501007be10c5327a665f3872e8a5449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f8af00dc1a75e5c3d87183aba0f1352975f5ef1283065b395831a71f9512527
MD5 332eeba88706196d6aff9e6deea47af7
BLAKE2b-256 35c9234622aab1d42b4d00ac869d8bbf73c4ba70b530b9b01a1e8f0725b26656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a01e921a61ac6131595d00908e8c6a7bb0d048618d95d574582ffd8dd2b02ed
MD5 50a2c4cf14eba664d0341cc2f9ac7fed
BLAKE2b-256 734994ac59187c24137409ee80f3b4632dcec73297a0809b7e2f2ba43448d23f

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