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

Uploaded Source

Built Distributions

imops-0.2.0-cp310-cp310-win_amd64.whl (253.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

imops-0.2.0-cp310-cp310-win32.whl (218.1 kB view details)

Uploaded CPython 3.10 Windows x86

imops-0.2.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.2.0-cp310-cp310-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

imops-0.2.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.2.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.2.0-cp310-cp310-macosx_10_9_x86_64.whl (636.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

imops-0.2.0-cp39-cp39-win_amd64.whl (256.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

imops-0.2.0-cp39-cp39-win32.whl (221.2 kB view details)

Uploaded CPython 3.9 Windows x86

imops-0.2.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.2.0-cp39-cp39-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

imops-0.2.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.2.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.2.0-cp39-cp39-macosx_10_9_x86_64.whl (523.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

imops-0.2.0-cp38-cp38-win_amd64.whl (256.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

imops-0.2.0-cp38-cp38-win32.whl (220.7 kB view details)

Uploaded CPython 3.8 Windows x86

imops-0.2.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.2.0-cp38-cp38-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

imops-0.2.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.2.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.2.0-cp38-cp38-macosx_10_9_x86_64.whl (522.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

imops-0.2.0-cp37-cp37m-win_amd64.whl (251.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

imops-0.2.0-cp37-cp37m-win32.whl (215.0 kB view details)

Uploaded CPython 3.7m Windows x86

imops-0.2.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.2.0-cp37-cp37m-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

imops-0.2.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.2.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.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (506.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

imops-0.2.0-cp36-cp36m-win_amd64.whl (286.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

imops-0.2.0-cp36-cp36m-win32.whl (236.4 kB view details)

Uploaded CPython 3.6m Windows x86

imops-0.2.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.2.0-cp36-cp36m-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

imops-0.2.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.2.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.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (508.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for imops-0.2.0.tar.gz
Algorithm Hash digest
SHA256 cb38b2ce8d130e318cf6f50c48949a3bf983606c470586a0a64d1de611e94b1c
MD5 9718dd3f626846450ef55910ae08c37c
BLAKE2b-256 03a8f2a3d904769f68154908324f2ffb6cd55f613d00c702bc6d17f62d1ed45b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 253.3 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 08f36c93388b4f641dab095e3b35579c4e42be6c5e110f7993d697a3da00dfdc
MD5 b2bda46aae24daafe2eb1c05d588197c
BLAKE2b-256 f08b74459fc5ffd23b844180b0cbcea2cbae9c2aeb015888ef0d33aff8dfd126

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 218.1 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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d64d671bcb6685cc25c9cc0b4a0655636390194eef1c47bb6c3c31a1d66fa205
MD5 abb3b2267980ad6b5c4aa9fdbae497cb
BLAKE2b-256 541026eb95da0c4263280e3d983181f32ca38644f6a4535af6c1c92b8b59c8f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8545b2a97afee75ddce77c660a1869952bfbc8651cd105923488808f6593760
MD5 8f802001599ebca7a96fb46029b18cd8
BLAKE2b-256 db402b00d986fb4053332f4ad311488d5c48878fc2afb49965f2d70296882f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 920fa69d8bb0060a1c94d33e6adfa14b4a4170da19ea3d6f26311d083c31838b
MD5 d43c15ab2aaa4e74832c4ebb7715db13
BLAKE2b-256 0b1753c39d049ffa7ac7734540fdbbdaf6ca4ff15973adfcb7f524e5bb68a647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13fac2ec4ef6ea43ada3c8a4cc4548efc6c9dfed8e83dc9bc1e25d781e8b51a9
MD5 e404fe35de572ed8403686980e65152e
BLAKE2b-256 54da5e4a90b472552b90b0da1f96ffaf5849792808458c39f1c7c694a1e16cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fbc18838032268b916fc491811bcd88a30ae4144c122db1128e007b4af5ab45
MD5 3638a0c7ae52fcfcce66f4600700294a
BLAKE2b-256 6a3f5720b539754a5fd289c297c8a0a94298f62917f837649a09d1f3fb523d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bd19faec7d9eef1aaf801262ca2ef3551aa827dbd4060a549e2735283e18378
MD5 9609c041f13cbbe893565a0fd9f13f7e
BLAKE2b-256 892d1165c434a1cf0b13e9a172027e3f788c25b03f1987430f3a6d81ca9478e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 256.4 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.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1fab7c17703aabefb0ab15dd97826a4504221370c729360987e3412a821b0fca
MD5 3ef09dcb3636a74b42be64a2f628cc1f
BLAKE2b-256 5d9b56f8c4d563c8682ec491dba95cf276393d068993dcfeec3786ed0827031e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 221.2 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.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5ef57de19894ee328c801be9de621a4b988e25eb9a97e2eb411bd5279e8adb65
MD5 436b9b1282ee31caec1813619e26bea5
BLAKE2b-256 394fdc1f205cfe51845e8520d058b9357c9176e680feb6a8dd41d98f2606c8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49e91d3e10e98012a73925d560abe5493d06fe52006082aad11bc499a006d89d
MD5 e159332b8718338d2e92d05577c6778e
BLAKE2b-256 3c4e1066e799b3060e2807e5a0de98ca796f4251186f0fbf0e6cd91206b3bef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9e2534452e9db3704bdcc929296732a2070d337014aa4f91209586390628e72d
MD5 33869121cd4ba1cba617e85f01091632
BLAKE2b-256 bdab3909f24d7ceaa92676ffa933a2532ca79854261f6774de178d29672ad632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff30d3799b39fe56c8376573b260dd6e846c0146dd4dabe0ee742d9d62f476bb
MD5 cd0f9959a105234aaeafc2fa53156c51
BLAKE2b-256 69ae23366789b5dc971abd9ff42ed29665273da7f9be7bbbf49511b873369bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afe265d69be84ba0c90c155545e644895a918588064e60c4c4990f3e8a2a96e9
MD5 47e5c602670cac605bf93cd37a27a9f5
BLAKE2b-256 7c1dbdf458c0c92358baaa4e3ace1628444d6dbc9a5d405ba3516551ab86fd1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91cdbb48745b22fd535f61e25ba7187369877d56f227a1e53788ad777c4c8a39
MD5 5edd177d5ef56efeed88a2697bdc4832
BLAKE2b-256 a87376744051387a9d6b50ca815805efccafb199785338dfb3f63fe68195560f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 256.5 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.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 389943bd807ab87d32b701d9850197e2bb8eefc5036f6dd039cab82fcd5d6136
MD5 b2bce18981f49b7586ceb0bc6317c240
BLAKE2b-256 b711c3255f768a336d53c8caf1d1e63e430d93ba4c373e0ccd5a59cfcae4a029

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 220.7 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.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 23cb0ff98fef75eaca994c536cff75eb07a93ff8626d7652ac7ce74a3007d5d9
MD5 526e14104af5d764e75a69606cdc7f94
BLAKE2b-256 0d3659e58ee6762e971fe486df34a02a1ba0b6bac3c55f91c3f7c16c489f9e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95c81ade45d01415c365d69b05bc86abc16f464e953aac6484e12481dc8a5fce
MD5 8d52dfd783ce85f934fae59d8bc22644
BLAKE2b-256 b103da79095c7f2a3871e41ab223c03b3ad6611e5e3454aab577a10fc373497b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e1d1ea8e96dcdd77b9c55626fca0d03a7725d711e646197f0c652b3cf93b5f2f
MD5 b81dd1440ea8a67a82d72b4cfac2998a
BLAKE2b-256 2a53512a290529277f9973880ec5da2a2160fa2699a74147513ef5a88c5d9fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33f2ac8a5d6d9feec4d6f34e1d94a27f9458b78c14fd9e5e668a9e397bfd684e
MD5 0ecaf7acee92c19f63b0ed0b218d6172
BLAKE2b-256 995a5274c15da66271d854d48f9a020bad7fc4e6dfe7db72c11d9d4103ed26e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a48eb4ca8f36ff09f196a6fa212276e72acc357b871dfa772d977b1d3c8f09a
MD5 edc9d86b938c319ada8595bb47d5f433
BLAKE2b-256 a221d85e4f56466f40dd6eca47d6448a08a93854b336a90902e21acdc0a5035c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2345023891456c55c2d56e214ef0db62b8837a5284d7536775647865e8c6f00d
MD5 9300a1b02936b14264368a87ade1db91
BLAKE2b-256 0dea28c25aa2a9bed9cf338c0a0d8a6d9bf0613be570469e4aba9cf50f3e7edc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 251.1 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.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1e3c0e82d809d98c2393754520e0d725e3dc5b8af9545b9d5e0876434341e142
MD5 92ddaed3b83bb56478e87795790e6f51
BLAKE2b-256 f5f803acc57a8f0f31e7ed5c6798a43ac35e15d578567f17de88971e5a860fad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 215.0 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.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 63ee924a04b59e51044b4a62b13271e8bcf8cf1d9458e4e7b16073be20579be4
MD5 b0ce9c7ef9e8b073c42d432e33f0cded
BLAKE2b-256 d85e43be021fc8341f2a65cb3a4a4205b46b72279f443b023d4ffb69bbae6a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b8284ea95cb2d019f8e0bac7364ad08898118728369018e97ca1c7d5484bbd8
MD5 02c2adf1c2af9161d88557f4fed7ee65
BLAKE2b-256 8658d455c05deae49da0a28083cefd8d682aa12ebe2c4ae927e1cb4a3d9f48be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c1c889218f296f9471f19c69693512d56ea183ab76619ad1f1efdcfa075497db
MD5 114e2249a99fee8c95b47ab761e951c0
BLAKE2b-256 16d31fb34b4a5dc047e4264b9b722d8ec8272cd836ae34dbb16326aacda14b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 352818d4ced58aae5564abc7e331a73820f7725b604a91d877486cd4c912a05b
MD5 58824828c52f109c2cdf7c4a56015d76
BLAKE2b-256 2c25718a4884d4041b0d8c9b9f2bad46d302065b90b1bac2f9862dc07be14cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 673980d2726489f4c9ce5e84ff4e46bef37a4ab37ba4643349ae0858538064cc
MD5 4b7f83598d1aaa15b78ae5ab44a5a509
BLAKE2b-256 34168bd7088c58562d2183e466d872163376a1a24b088acf837d710981d214d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bb4964653dbeefaa0fc6f03d979fa69a9ab48146c5ec0a9004c9508784da0a1
MD5 36af414d79a2c4b52076347ee9c519bc
BLAKE2b-256 e09956797e682e26e17fa0ed7191d58320d995855534a102297735a37d60619b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 286.0 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.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f85513a48b34ae053511f251dab6180d99ce440a5ff9e3432230fdcfa6fb90a2
MD5 30b2b5927e1c04306064a89fc70229d6
BLAKE2b-256 9fd54a63db6febe316de9b0012bd6170b94e52179a365fd0dd307519cfbb8ddb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imops-0.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 236.4 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.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a28869c66b0e117f7fc26d2b3dd4878275250bfaaa181d0c5a3478b212c9718b
MD5 4bfc2c3a7c338b9cfd72a5f85c6c2e2c
BLAKE2b-256 bfa9c43c7a88a683e29d34ed21aba674034e71b7e0088f614be9d58c8b5583b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 69dda3c61a268b5daa81363b6fae9ff7a3a6c9df59aa85e8c030766f714e076b
MD5 1f2a7147bcfbc3e9eabf000bd88eb854
BLAKE2b-256 8d4b6e61804992dd67a57cb2359b0cc56ee5b7d4a626472ce361750499c8064e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 39eb55ab51cb91408eb22175e1e695e5f242d2475cae111ab455fd0cfb5ee802
MD5 979d17ca380b73a40448d05838674877
BLAKE2b-256 301904cf6af6f0fa2812dbb6501670a8ba45f837170c22835564f04c3a0fc5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36a2a3c4b836bfa9ad2cc699796b9aa1477a8dc8cf63e77ceac408310721c0c4
MD5 c630bf439317a481f1a7bf9d48e6ac33
BLAKE2b-256 2827441eb71b54556f2b58ae91d5a5d46349e6f27c8e5609f759adc4c9d26276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2eaf5f963c18ca0e9a418d0790e8bcfecca03d065f2fe8893b7d76280796e4fb
MD5 4b041e68e0a32baa3b2260215b559c18
BLAKE2b-256 00c08da85473a0403090456577d84b533b9d976f6bb104fb26822fc80b062022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for imops-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce6404dcfe05bef5b873b8273e5c6ac9182d2ecfcd46ceb1ef83e939b971e45f
MD5 1dfa71b5b2ffd3344dcb9037a6b6a4d8
BLAKE2b-256 db1f7fc884a53f97e71ae8e6504be65c2430b94244c4a36f1e21acf406852dd2

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