Skip to main content

High-performance sequence anomaly detection with minimal dependencies

Project description

Anomaly Grid Python

PyPI version Python versions License: MIT Downloads

Sequence anomaly detection using Markov models.

Installation

pip install anomaly-grid-py

Usage

import anomaly_grid_py

# Create detector
detector = anomaly_grid_py.AnomalyDetector(max_order=3)

# Train on normal sequences
normal_sequences = [
    ['A', 'B', 'C'],
    ['A', 'B', 'D'],
    ['A', 'C', 'D']
] * 50  # Need enough data for training

detector.fit(normal_sequences)

# Get anomaly scores
test_sequences = [
    ['A', 'B', 'C'],  # Normal
    ['X', 'Y', 'Z']   # Anomalous
]

scores = detector.predict_proba(test_sequences)
print(scores)  # [0.26, 0.62] - higher = more anomalous

# Binary predictions
anomalies = detector.predict(test_sequences, threshold=0.5)
print(anomalies)  # [False, True]

API

# Create detector
AnomalyDetector(max_order=3)

# Train on normal sequences
detector.fit(sequences)

# Get anomaly scores [0,1]
detector.predict_proba(sequences)

# Get binary predictions
detector.predict(sequences, threshold=0.5)

# Get model info
detector.get_performance_metrics()

Requirements

  • Python 3.8+
  • NumPy

Development

git clone https://github.com/abimael10/anomaly-grid-py.git
cd anomaly-grid-py
./setup.sh
source venv/bin/activate
pytest tests/

License

MIT

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

anomaly_grid_py-0.4.0.tar.gz (32.5 kB view details)

Uploaded Source

Built Distributions

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

anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (357.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-cp313-cp313-win_amd64.whl (199.6 kB view details)

Uploaded CPython 3.13Windows x86-64

anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (491.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (376.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (302.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

anomaly_grid_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

anomaly_grid_py-0.4.0-cp312-cp312-win_amd64.whl (199.6 kB view details)

Uploaded CPython 3.12Windows x86-64

anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (491.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (376.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (302.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

anomaly_grid_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

anomaly_grid_py-0.4.0-cp311-cp311-win_amd64.whl (200.9 kB view details)

Uploaded CPython 3.11Windows x86-64

anomaly_grid_py-0.4.0-cp311-cp311-win32.whl (191.7 kB view details)

Uploaded CPython 3.11Windows x86

anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (491.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (378.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (304.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

anomaly_grid_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (316.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

anomaly_grid_py-0.4.0-cp310-cp310-win_amd64.whl (203.2 kB view details)

Uploaded CPython 3.10Windows x86-64

anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (491.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (380.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.0-cp39-cp39-win_amd64.whl (203.0 kB view details)

Uploaded CPython 3.9Windows x86-64

anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (382.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (380.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: anomaly_grid_py-0.4.0.tar.gz
  • Upload date:
  • Size: 32.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.4

File hashes

Hashes for anomaly_grid_py-0.4.0.tar.gz
Algorithm Hash digest
SHA256 f4fc4487c681fd02ac1f71f33f69880b6bd429afa4bb89e3e8f5b6c92f3598db
MD5 9295d52ca581addf426de19060217f79
BLAKE2b-256 a4861690ea2285fe65aca65efb1f7383eabbc8b562ba82a1e6554679aaa6449c

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65faaab2cbae168bdc8369046d230d63b70d8112f01991bd15e4349a8657b1ba
MD5 e739313fdbef8150e712b7730389a65e
BLAKE2b-256 d1c90eed6599b5e632c1e6bfbe4e41abc7787d2d65e3eb37cfe28766025c4862

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e6570f2b1e30c6187c112d9e1fcad4410b0ed05e39679d0d8e5c714b47faa73
MD5 360d3f3c8ff455346d081d0edb76ba20
BLAKE2b-256 527f78eae61e372ab74b0348f98ec82f95c0232fee6297be585537de0e14c79c

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1eed16701c278f9c94eaa35cf7277a2d230d0eddffbe8329ee06d19901aa3070
MD5 d7259e58768cb4b3978c8953b2d69c87
BLAKE2b-256 5dd12fc3e149a70a4ec5b9897d0f6f40bdafd1d7d0dc47c5abb564b195aa1b42

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0d41035385ec4a07ba37a2f0a85356a27e243e22dca568a9b81f7124bbf8c91
MD5 12efd9f7c1406d10a84471c6336fdc9d
BLAKE2b-256 ad203e7fcc5fb98cbe452ba67f285e7e652ee563d29ee523889c10734d7d1a2d

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f226484085d5a2094b50e6c49ca68d2d4de792b509974a43ba085e6832f33e4
MD5 4b2a7daf87316279f9703141cb484372
BLAKE2b-256 ca05a50af111ca530eefa446eefdeb1a9646393bb7734c3966ead42597a3057a

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee73e9e273f805f468dfb55fbc8f081b11401ea96c76e1c6d44d508facf54dac
MD5 c3a2fd44ca681512fa523961f3a54ee8
BLAKE2b-256 c22b3fcb5c616fcdfbf438ada04d3730b47003418272c850ffe190ea0b99b6a6

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 958f6f509678849692febff5d78554bce73c4d7e49866ffb61817e62068cdefc
MD5 0dbedf102c173b23dcf1b6589123b321
BLAKE2b-256 3383c6acc628c7ae8ef1a97eeca2919653f478ea72865ccf9cf19edf45014ad0

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a89af236d6aeb4f928c3e2cf76fac965e86b2a78e01df91b1c3631293c774f5
MD5 6dde448fe6866eab83bcf6fb914c36cb
BLAKE2b-256 86f4ddf94a607212191d93f73712b545faeb077f2f471c0e01e474cedd02a718

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9262f4dd8f0cad9d0a005415122481b7aee77f772b07e6af46d29d9fb7424eb3
MD5 dee14aec305774de58dab662877d0305
BLAKE2b-256 74844a0e62f732e2b76cc661a0297b3c84b34d5e0830c0511eb9bbc3c4add9e0

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e94ee25f6eae1916ef0597f86f1ef54c01f2901fa1fcb1387303cd70e4fd4861
MD5 ea2ebf69bb80e0970484863af496a8ee
BLAKE2b-256 6be89d25f327b8282a193f758611cc4948ef18556614b397f48117df00359615

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 878c848c1245bdd0e8a1cd940c59007e29b2bf8df10cab59f40786e4dce2b6f0
MD5 4f466ad1cf08b7b8335db415f31e49d6
BLAKE2b-256 4119b68c1bdbf697cf69e362b2fd79c35e552b81181bcf7932d30aa9d0e2d709

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88938ba76d878f57989e4364059e2aeeab23e51c19cd8f70d9ffb2cd1b4b4e43
MD5 7dbee820b2f576e1edf128c115e29388
BLAKE2b-256 4760e4aba8077457ea59ab5f6e2efeec83c161aec8a178ee4f337cc4db95ef7b

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a3fe6d10b036b0844f8b52d2f3ab1bb1da7579b65281802991b32736f9d38503
MD5 e21ef0385b7b18c5cf06766d7c3a31e6
BLAKE2b-256 48888d412aa5f942e5b92317d0cb5111492ba3954e47e8527ab6f9c1ebc755aa

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cf2c6638d78a19d16ac014f2047de649aa2883ba5773ef7bdf2e12492392699
MD5 0f9517b8ec672644766951e2603a735d
BLAKE2b-256 2bf9cce066f2cf875f04b8817fad795071156e3a9c1c3034f8efb523fe368655

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c84e975b58fcf10467a4a8e176d83fda6db4c9e702087cc27742baf59281009b
MD5 eb4acece34d1b9b49a1dc6c875fcd30c
BLAKE2b-256 5e150abef4821844be31f3b2912610c9cac7431b8bcfca91cc21c34d2a63d8bb

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbc107740e87a2cd0707fa26f8f9d074209520d3b4e0775351bab2f4e2149d1b
MD5 e3a6f1f55a262a0179df85d6363858c2
BLAKE2b-256 560390085e1e227b8f8832bda3dd6800cd44278afbf76a43e639eb0672713eb1

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98a877dec38e69187d3881d185bf2303d7d01b81767b8cfd685216ba42f13cd2
MD5 8866821b22f57ae591cd3c0bd3ddf7fb
BLAKE2b-256 851d7e9cb5f04fccc39331754688c2a591cb53dc6fe0d0b9c931e9de921295bd

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31590a0270f093c1dbe3ab5b994409129d285622962d01481e8db0eb3c3d75e2
MD5 8d4ce95e2f99b0bcdf95965c74072fc7
BLAKE2b-256 993fcbb384265e98491b4561b00ef735c1d339a5c0f00de622d463a6f971361a

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d49315c3503b38c4dd6e078c2793f858ffaca4465e7fedaeed9169be5fc58b1e
MD5 e30f70450936c17a8855ca42b3688d5c
BLAKE2b-256 9a91f09020b9801e0f48038c8711384fd63e64869a1c71bf4e57631588bb8f51

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba7d73042e8a33419ad528d5fb07192b10306ccd5dd7afcd60255a179a9bed24
MD5 f8574c9c729230862e419b3476c20427
BLAKE2b-256 d9c1c43f44ec74a725959bc777f759c93a5f1fa457bd8f406442a13744ece39e

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2cda6623a24bec9e2ffef67fc54e21a4d80037c38dadf15f9dbd8ed95a11853c
MD5 7b9171728e16c6db46fa1214fd1201c7
BLAKE2b-256 133ed42365f6d06dbf9b3755e4eaaf0685e95f51e021abfeaee6ddbaa735c525

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 930678d52322c2a88ae4667b99ce9f3aaefa290dfe37992e1b58054fb625f234
MD5 04ba99f815cb903861eed71bb71fe3d8
BLAKE2b-256 b888f6e286d192506843942f49e39dfab0b47045e231d6425ccbe5c6cf11bb76

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55ac943edfba76969446c73594974cacace06048a7879ff2f7cbe93f3c24dc9f
MD5 73860031ddf2324e5bb811657b117c14
BLAKE2b-256 a787eb9687b1d827821e9b54a34701ad5a3802ff0871abd36f7303cea7b129c0

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd6e73ee54abf42b46c46a9c874661a952c4616f4e998cf33ae96d7707a5907c
MD5 8d8954ad236f02ef55650d5b1cb8feff
BLAKE2b-256 f32b97bc49b7663a0b519bb64c47d77cd806df547025871172127c70395d8cc2

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d265393ae8f50bfffcc15dc691838b9429f8f6701bdb413b38a0ed41ef7652da
MD5 5ebf20006733b0c5bf806ffccd5080a0
BLAKE2b-256 fe74c0ee85af4cfd05fe77ca294019673e69d850df4f71931a3b718f1984f84e

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd8a6153f0e6bb2e133dcd0263bf1a5b68d1ab1180e0537c8607345cbcc36d3e
MD5 9a5ff52d8b011c790a272a2d59a66d1c
BLAKE2b-256 a9d88ce3ab0636ced4818706a11e1ff58e8988748c729aa54e2c56f2bb4c42a8

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4150bee4b939d9ddc34fa3c660fb5765f9d28bf4fa924c636e36181d81b9ec0b
MD5 62e41ec17a0334539cbce4ce1e7032ca
BLAKE2b-256 019f5aa2e3107382cdcc53f57ea3b91c2086210df4499d5c753586ec502a29d6

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34f5ca9d52ce16b12065a1f6e74a8ff8d67635350273c03088b93dbf8340a753
MD5 eb6a61e59d5f84c54e5c649b24b9daf8
BLAKE2b-256 fe94a56adebafa91a53bab3f8501158fc0530c28348d27650b4609035f997fad

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1ab053a25cee79e226d8bbf1cb4ad1a7d4058460f49ff0356a30fb5ea7a4944
MD5 d0d4f46e237a149e06392d7d289358a1
BLAKE2b-256 1a06e16748643400d9ab7058f4d13c4b625340d8674c1dd777c5df5b1631293a

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad7695afd65e1a4e634e01d33f19597fd69df93fe549549de75b72c35b4dbe34
MD5 ba20cb871789caa760f0666043f96a6b
BLAKE2b-256 f6e4cd414d4a5a6b2d9124bf383abf4e5c85e95c4de60cf49f78c395c7ec2c82

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f382eec2a383a89a98072efe9da6ad265e8e1e937d0af7cc46969fd8eb0911d7
MD5 672379c586b70cebd342212783150447
BLAKE2b-256 19ded81c40966a8ac22909c4e9c7c9bb6fa530f31502458c7dbf33ab1d248815

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 93c8eb9ebb3a405f11e0525279b3765cccdb7db3918b7bb6c3087cff7cbdac5c
MD5 07462c203026b25bc7fab4866066df87
BLAKE2b-256 afa671d48acb5931bad3a3f730723e6454f1d23a75ebb37366d39b952e443645

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57e97b270b04c12f277898bd16ef0848efd6cbf0cf7be44a6826840a76d7526d
MD5 feec8a92533f8e80321dd0fcb3615a9c
BLAKE2b-256 c1bb93894b7a5261c6b5f8b798c02a698769db94b0a3b739943c6dec7a7a0357

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9c5bb5fc7c66fb8c38d77d5491728cd7026bd4e9785a0b2eb3d6473274be2c7
MD5 bc03486c189d27dc5813eed75a8f3fd9
BLAKE2b-256 637ec112a60067230d43d1481bf75f1a24e58c75dd9e0fde1e3352a30281bb6a

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7aa145dc7b89f87cd4d1a59a8ced1322e5bdbd3a6c739c6884410248dadd664
MD5 3e57beab2b12301e705ed2b0d7a986c2
BLAKE2b-256 6281bc2965fee9c11ef8e2d92189ad586a5288c6c2312078720ee60fbc785c72

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a58cdbafcf1144b8242bdd7cd9fac216621abc3d1a1770bc5c38903abce1aa10
MD5 71d39c598f67a0a57ae390dfc160e320
BLAKE2b-256 3baf76cb97228a038a20bb3d87759cf95540f2be6cacc02ab93707d757be147c

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0737c9f89051a4f0b35740904a212e58c228572995d0849acd8b2b0ced95893
MD5 2cce758fc313b67019c5b9e6ce580c0d
BLAKE2b-256 d5d32c0957a6a347bf570249d2530e9d4bf2d55f9ed8d1b328f26ab747562a7c

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a449ab442a57e0b9173499470b72baf2b08f876e47b435b1ceebc19d2cda3d27
MD5 4b74f68dab3b4f85ef088f601a214a53
BLAKE2b-256 5dc9d3827ea7b0b4a5718dc60cd27c3b0b75b3ec4d1e8fc1acf351b85e898b47

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e8432f892743938eb036a2761f3cc12139fb5778c080191113b32ace11c8aa3
MD5 f4371dc00c3570f07a7f33f302a5c3ee
BLAKE2b-256 f093e69e801db92ca8ce928d0aa24a965b6ef6a3a1064e9b9b4b5f3729ea2101

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0dd978302c10ebd12893af042892e91a93188d14973ec772046797b0ccf3997
MD5 8a0ab43f3bcea86418234b8990d61e66
BLAKE2b-256 90d329903148a0f8e95d75c62517ce95f1876d236ac1c652c0289a9dfb7c312a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 36cce2173fd22f10c74d13f82fcc8bd7b97361a5f7e1fcbc40bd22d5ad72ec7b
MD5 c96ff43cae1affb7ce95b5a3ba8010f7
BLAKE2b-256 f0bc6d47902dc50ef1bbe1614e6662bdb2991ec7f400461a1d5bfbc1fd2d1b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cdf56d9b2ae2b4f9664d2a28d5641c8513e3e09440ac01a643d064764e09a43
MD5 2207441e1136e62e678904cd88894a79
BLAKE2b-256 af156a08dc78c9f2ec25f1d98d40d2fc60848cac20939151dfffbcb1af0d4f48

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0cab974c3fc05f1ddc8b42f6157485b4adbd1a70988ea8a0847cda2f334cbfdd
MD5 5d3199183695bfe557e0331a5f79d028
BLAKE2b-256 6448513c5ca9d48dd1eeba5b569224da5a71e96dad8871ec4d9df9588d17837e

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2273abfcbc0fd5c529f9fb2cb9f355a02597e1616973d05d0998f62db9b4961f
MD5 326565935b59f9c628050bbbc61af446
BLAKE2b-256 1bf14d59a1983ec062a46dfac7befc8247251f3c68655cd138cc3b5c59ecc1ed

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2db2afcbaca89481e0fe790fea1d49c2b060d11d1c3150cf993bb8110280d009
MD5 fcfcd5c640f4ed6fda90af5645244f8b
BLAKE2b-256 682684921f771614683a86e4845561ff2059a651ac5de51fd8f60f23a6152dc9

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05c89e3669eb728b1639db3f1715b20034fa7f0118c256d9206a631213e0c18d
MD5 9cea0610733d60381f1fe6bfcb38ab04
BLAKE2b-256 7b13c9afab9640f9ad99a6de7e13c6a033f6b52318856fedbd3782eb8a19aeb3

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 672e06a6a5d264ac87d93870ae367c1be7b83ec3b357f02b68ee338c4249dcb7
MD5 a00213170cbf18049e0062d8447170cf
BLAKE2b-256 aacf188d24597f03fd25c1f0ad3c192da36e060271786c908f75bc217509e83c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e4908245a2532b07aecf2d66db5d65c69d88394f823e99558d3509017bec948
MD5 a9642887c53c41a8f0c960a363f96f49
BLAKE2b-256 7cdc4fd88fb6e2c28c54599a1243cd8885f5e3d795b7a1a4570af37f91c70841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7aaa4a875c2b638258c0daf5208e87b9d513c204bffeb0cf82b093e9c35d598e
MD5 2e73d987b8ff6308413adaa55ed68ecc
BLAKE2b-256 5c2e1f6d7e731ac866e7cc81249a574304a25d9225cc6eb7b9b420e039527af7

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32614049a004a3e33841aa62a76069461abfcdd0690421582fe09d7d88f6a8bb
MD5 39257529d5486959427e65dda0ce4c55
BLAKE2b-256 8884566509f487bddce4e579b79497595a1a7d6f0a322df1fc416bfe90365ad5

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23856f981229faae2623898e8a67805c16a336e68e37e98e4e27c58041a9286a
MD5 a64d5c69fdbf70488345d23c81759ca5
BLAKE2b-256 d2426f01e7ee5835c9586e10b28092fc6fddbb9600de88a80875c3c22dd5c82d

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9645754eb11d77d8f2a26ccb77443397b15a16162c1ad757f793be7c2b2dddef
MD5 0c160db0158b6b43fa3f8270afea1248
BLAKE2b-256 1ef112d6b661d2857f003367d7322dfc6f63df81ac3f9320c5789f343abac859

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2ce2562d6103342eca5c5ced270668e3273ba31524dc9ed3cec10ad3b47325f
MD5 df07aa87ba38981887f603982808fc25
BLAKE2b-256 f4501c2a59a2a1b2220bf2518a929dbf4723480809e35014cc9b97118d917baa

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8492a3da10efd176ce2b791d0c060d747d653bfc7dfcc30e34cf41226e83905a
MD5 67b21af22552a41efaefc2fe774eb2e8
BLAKE2b-256 a164113766cb457ddcddecc734ba9ef722412d7660320a11d4c8db01bbb7dc58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fe5e382a750a9fd823dc86796ab573fa200b1b125e1f77b969b790b4592c4cc
MD5 31a59b3e5b95235fdb2e4bdf96fe9e2c
BLAKE2b-256 0f8a288b9dddde25a49a3ebba8573772e047301ed7baab29b30020dc4a09f0c5

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16bf5b99804edde3694ae0c8bb4f982dd87791c7ad71c964d2ebdf0b3f822a3a
MD5 28c008bce4e45ec9839b53be8ae84c01
BLAKE2b-256 b955ceebc5d145019b2ad5f25e13629aa78b8aafd50a58025461c526b6a96889

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a381de263725e2db0c718f711ac696625c6d7f912717d1d93a9faa5b9b43d30
MD5 1cdf385a91077a5eca44e892b180c0d5
BLAKE2b-256 6c59ac8a0137c82254c7ee236148061cee6c0ea396f4babbd363fd3e952d37a3

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a328fee69b6f3cd783b58ab823ef18e659d7025a75d1b0e232abe35914e170b
MD5 0659dcd4afc4aeaaeb777b9e15dd4b66
BLAKE2b-256 2098622094d9ff96c8ac10529d3fcb42c70e5813495fc33ffc5e1808652ea183

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b429829f3984cf1f0c92ce221a3a2b50edaae7e8d3a5731c42dcdd3c8a748ea1
MD5 33f87b3146c1f40c15cb7ca1341dfbc5
BLAKE2b-256 604aad2d7b6d75086d61e73221875c4c268525e3fb06f0077bf5db53f5bc8fda

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0edbb56c6002d2bfa57b74c235f782724bfeb9864b6f6fd6cc14a15e20075dfe
MD5 9016108a73500a171dac084df7b8e683
BLAKE2b-256 cc9bab2126d8d076cac2fe2a8fa064fe1c082ed351b8a5504452338808bfb7f0

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