Skip to main content

Deviation detection using variable-order Markov-chains in finite alphabet sequences

Project description

anomaly-grid-py

CI PyPI version Python versions License: MIT Downloads

Deviation detection using variable-order Markov-chains in finite alphabet sequences.

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.1.tar.gz (34.2 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.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.1-cp313-cp313-win_amd64.whl (200.1 kB view details)

Uploaded CPython 3.13Windows x86-64

anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (491.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (374.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (302.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

anomaly_grid_py-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl (315.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

anomaly_grid_py-0.4.1-cp312-cp312-win_amd64.whl (200.1 kB view details)

Uploaded CPython 3.12Windows x86-64

anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (491.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (374.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (302.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

anomaly_grid_py-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (315.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

anomaly_grid_py-0.4.1-cp311-cp311-win_amd64.whl (200.6 kB view details)

Uploaded CPython 3.11Windows x86-64

anomaly_grid_py-0.4.1-cp311-cp311-win32.whl (191.4 kB view details)

Uploaded CPython 3.11Windows x86

anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (490.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-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.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (377.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (303.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

anomaly_grid_py-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (316.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

anomaly_grid_py-0.4.1-cp310-cp310-win_amd64.whl (203.0 kB view details)

Uploaded CPython 3.10Windows x86-64

anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (490.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (379.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.1-cp39-cp39-win_amd64.whl (202.9 kB view details)

Uploaded CPython 3.9Windows x86-64

anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (381.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (378.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for anomaly_grid_py-0.4.1.tar.gz
Algorithm Hash digest
SHA256 2e8582441c2c240965e28fb943b36f4bea305efd4c8cdcdecd5a8a00d45eae27
MD5 e7ee69cf44c0b92a52e996ddf8d88b0a
BLAKE2b-256 1ff78714af5ae28d205c84da78788541bbe6b460f38115e034aedb60a5162086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09a6857ccbfd57843fd4e63f293085eda15a1d0ba598792be7341dfc9933e1b2
MD5 71b3c72fe9f2aac879b026acf0fb1170
BLAKE2b-256 301cd4e643ae539776658bd9c9cde7fde02c2776c61fc3eeec49ac52b5f483f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18d96ecad22f42fa2c083dbb7ba4cbdd28332338d9b64aa236f0f0d30d562f40
MD5 a234a46e4267f5082f77f96bf1d4422c
BLAKE2b-256 e3b6a278a39347eb52f09c221131d5cf141fc28f4745e2d861b49cadc27979af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f88c7af4062a06416966f8629e0e9e07d521b616ae5fa7d5d6d17bcebeb69f8
MD5 f9e79fe63cf45795c7adb5bef5d2026d
BLAKE2b-256 00f2efd47932537f25448897a57136d7719e60d20345e344a0984c06f4fdd229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30ce5f713b41bd700d55027aff97bd94e1b60189ca95d32706c3125163a13d9e
MD5 123119b6fdcf7b4fb7dfc58cdb6309ce
BLAKE2b-256 5574acfd26d58a7e5ebbcc9f2609af2b7959f40a9524018f673206715fc09ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1a42d6bbb154f77b27bc735c2e65ced1ec5b812430d2440b6e09892615eb12f
MD5 9dafa11c7d7ac3a198d7e9ee1a0d96aa
BLAKE2b-256 7e640517b1c241f9e6102ad63cfecb0fef09c1e71da1d03c4b1ac4c4874dce97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a3243babba0f3c8d50be569fdb98a944bbb6d8f63f1cc8298673b85c2d0be14f
MD5 8b01bfaf70d941b29f5478b628dec91b
BLAKE2b-256 708811baa46cda1de9af573508980ad38f9ea818e09d140a9feab95fa31ae68a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 080a1356c862203860ad1024ecda7e03e7f895392c4ac5cde7a2f3e88857a97b
MD5 64a5bc5a425edd15eb2737f6cc8d5f15
BLAKE2b-256 73d61822648aa64048357a456686c45f150f6823808aadf37ad8d16355c4d28f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc2af71c165690cf7718498a602cfa95b7463a9c3cf125a5295ca9044475f516
MD5 38bce7e4f79aa79d0eab07c11b093a04
BLAKE2b-256 133abf274ab42fcf562f9a76064cfd6205c061bb592b0a888ecde5c9001ad3ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d643a59d2c11ddd2bf909b3295fd8787edb923521a7766e305d0d5f61cb41f98
MD5 d3e59f48cfdbd7d14677bad613834452
BLAKE2b-256 b584a02c8cea991ab803062bdd9dcd3883dfae16e730197cd11b97bdf94d0f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd83e205d74cf7b5f4e186e1bfad52d1e85d44739deae2da6f85c12d32f3194c
MD5 356304a06811529cffdb61c8c2049e26
BLAKE2b-256 cc05e2c9e4b676cdcf480c1811dd8d4a7ce8f78e81823c4fb87378e28c26baec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3fc39452d1ae063ce95d63255e5755f5a75157ceb0bbf620f4f46ee74f075477
MD5 d293936fc8662aa9951ae283d2781e17
BLAKE2b-256 ec3a620c1c1ae682d03a9ede652b032ed232aa2548d0cabadbfe3e03568d1f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34b69f75d00e5402dc79e96092c8cda9f8f3fc9ffeb61a1442b1150219a910e0
MD5 8edd811c9494b34969b632abf2b342fe
BLAKE2b-256 cb64393c2bc1f1ad52ab6011366cf888b5aef9b71e693383ee5f947365365cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a878f2839f303196504f381b184106717fc188919fdbea62b745a4b9c484ee02
MD5 cbb7b7406c6514cb79dd0020b5f62d17
BLAKE2b-256 3ef2445db5f3dd07a2a4641325eb09151695e0fb1bc95f3768a62389ff16b0c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01adbd3faf60fef86de1a3ab8c70dfcf2474c44d38c84d02ca21d0c2d662bfb2
MD5 fc0a3e9d8a8c76fd67ef5c374ffc9376
BLAKE2b-256 2ae58de7cd28a3e1b3821dbe2bc56ab403371d14cc413a44f9d8b6737a26c3cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4eb1040e2d3a2b8e2b0434b79044b486e978f43b6604425ac867b47c62bf6da8
MD5 f15c32be23327744fc1f63f7cdfac0ff
BLAKE2b-256 99cad6d6755f4810084fce5627831c8c86f525b2467dd694978b001c885ed795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1216cc912afca19e73dbe32c4e11b25550e4d31bca183300fdff6b7c5d150463
MD5 adc89207c594c7c251c6e4956d9a7ac5
BLAKE2b-256 f389bd14058352e77b15d52bb831b21be3acbf30c9c2c65a5af7f596f46895db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a820af40f0c0bb15d08063c67176d78eefd40eaa3459e8f1339b58dfbc169f71
MD5 0357339f59ff968ea8597a62df28eb19
BLAKE2b-256 cdbc86142587b377eed1c11126df57ee967ccd87363a06f9e2e861d7ac8f2030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59e30125a22916a6135fada8a99c7d6c0972f59970895467403123efb8a2efd9
MD5 be82c2a422f31956f659829766bebad7
BLAKE2b-256 5b5fde7acac0a0484d45389961c4ec1ee4b66b3a5891a9a51643487436aaa3d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7dc4ea2edcde911d25c61e1d76bc489a3f9497455cca43d9b7b3b62b47e6f231
MD5 ace7a8d979057a8c08de20a23abfd0dd
BLAKE2b-256 f229f5140f5cbac2cda48577fe8edf0a3ec5c7e3266e1fd0fde8498ea70de338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c3ca7bdd8721e07e9c38d90af9202a0700903ea6b6e081fc4fb6873bf891ff4
MD5 5053bc1011241bb4bfec5d4c41b9d4e1
BLAKE2b-256 fbad50d3a51102a1ed92e962a6a04a5af52ee7d66221d3bf22dc1d7d529b1637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d46c1fc232c1a9e8ac88a77f495a07c115fc5cdb0f6e027af4da1fb8ed9887b2
MD5 cfb60db6929591f155a46e32ca63cdc5
BLAKE2b-256 5193d859c9c0fb00f69fc2a2e0ba570a5bc8333e3a1e16276c5df2a7d1561d87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 064b4e4593a2e96e23985197cbfe498d3e9609fa32febd42c2da8c7a46c61edc
MD5 b9b5822f86fd6aa75951664ba894fffe
BLAKE2b-256 ffbfa790bdac1dc724f171e67958cf5029d438cdfa2e88f78d490d2287a54cbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b80e0f5666f7d3ec9de072eed044ea0f5379692b752bf51f7b5adc9199fe1da4
MD5 d6ad2e6c6a59c35d06c0557b6839fafc
BLAKE2b-256 e89aff5eb150de8b662f54d5b061c39e6076597b5a766ae4f73f108a6299b56b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29bf3d3ba7a7cf1a3d847a892d1199dd3b5af6be8c404640c78bef417de95c4a
MD5 7a026e39c946dd2e68912a903281e977
BLAKE2b-256 7d39c99feeea31092ee671fcea69f57c2f5f7e7d12fbdf657cde46aaa0f8c32e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5dfefe182c449cf59970776bed961717c882bf7bb35a6e558eb0dbfbdafe37ea
MD5 32e45817af916ddeb2ccd31afce9b6bf
BLAKE2b-256 4a8a8eb0c8e536ed63cda45e7433bdb37311f532d56c055d0de5509a76880b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9cedabebcd690f16d0c411687e41b45eaa6044b931133908e34cc7d9f539e2c
MD5 ba3845e93e4cf061d5bd6e5fc3d34d7c
BLAKE2b-256 5ff22af19ff7d5555b10fa6ee4d8715193847c849261bdf66070909e0c56b882

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea2f96f175886d85ee752519d4cb62f37532c08578043f693a021c87e9d8f9ac
MD5 9c13ab5cd7ec95d1cfe33e5418d47f1e
BLAKE2b-256 93f7425042fbc7e75a4c68a814c949052f10b72db99164366d067f1d4ea72b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da811ec1714338a3dff379c130b39829091dd66f301a9de1b5c3789685c6b9ad
MD5 705d83bb8885d4f540063f046301221c
BLAKE2b-256 dd0212ec650ade9651eb04e0ac71bfbacd17eca80b0d9f0fba0a2d3088b481c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8755c87d0e1afeb459538ba2114e6b77e10e0dd35d9106fb4f313d70405cbf82
MD5 5463cffbd83fdc29d25b3e4268aaaa93
BLAKE2b-256 5f7d0df056193c2e1be76a218b8ea188d3b25fb1f753021e5e431042ec5b0d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 141457687f3b16b22cbb948e34e6a46210367023e548fe3c7d32b4cdd8ac4277
MD5 911c046d5ea5ea21a0f3650e4ed59432
BLAKE2b-256 5495b866a4bd3a855db38314d992802fa2559eb3291f56025e3b8e50c5c7cf83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d96cc7501483acb87125484baab4289b0e92c8c00d9a3b82188e932cb2c5fb2
MD5 042ad0f87bc6b121438b9ca270eec85c
BLAKE2b-256 eb50d826a56da6031247f06ff5c1bb420ca3139f1e23f4a33e92056327eba413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4f9c7abbf3a7c25e5d5dc44535e210e8a660cc75a81f1ec5f19caf5f67dfc05f
MD5 3bd20ad02ea735d8236771289a9f228b
BLAKE2b-256 3c3c9e95d0f68f12baaaee2817b53f03808a93b2c096c295322f2542e4e3685a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f49564fccf2813443e9658a67537a7396fce521a0269e64d40df888d39e6a21
MD5 733c38d555498aaf009a0873bbb71228
BLAKE2b-256 074e6c3ec2dea6ad89f5dc1c399793c896fa0334e266f340680870245c0124c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddb2ae42440789129f36356e55fb7c2a3ba66b134ed3c427ef572d7a27e4d312
MD5 435430390afbb991dcff3e541834bb98
BLAKE2b-256 968e0d8537553aaef6eeff227bf621346078ebd4b9196cae331e849fcabd38ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa39d9ee210879ecb4f56e64e14a17acb497cbce3dd304febfa10b74602ffe2b
MD5 0b9e58de266968e62eaa56a499b14f81
BLAKE2b-256 2394695fb238200457719ded0a19fc0d9b88f2548ce5a65b61c356485903e842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc079b4a3ad8a77c369cb5341e185bf6a770b05f3c3abb7c8a0407a021975784
MD5 8f09bdc280d2fcd539c01c91566466bc
BLAKE2b-256 2cde6f4a941ed30c9470eb3b9d7bf6c39534ba80465fbc268c1bb4d48c1482c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39884f8c70023fa3af6c1472f73267934e7b9c5811b4140604bae3c0cc70642d
MD5 b27b23d0d6bd502afa77a7cd72d2917a
BLAKE2b-256 2720c65864aed7c85e1f1674d868ec228477849d6feca30f9084c502fa1607a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6d048b2a27bc96efc3eb88fd3453cdf339f5d2f075666a8388c3bd4cd41f1ff
MD5 65ff4097441a46d350c76ce73bfce8cc
BLAKE2b-256 fadb8bc1dba240f87b12129fb74e4e042536c3838994343295c6a695161d0399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e41886f5b24109b1f7950fe9cbbc35e1e78c40586566675b85e754b97ebd44c
MD5 7d17a6fe8484459e75b27824ff1933c1
BLAKE2b-256 99964a4b2c0e3573b0dd452bae8436a6d92c11d05b2a2901426e5952aadd3371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a69ff15ad4470d14661e6b568dcde899d559842e258f329fcf2f88fc50c9e66
MD5 a23806621169fc4ef7b4e73cb78cc471
BLAKE2b-256 630b26d0a89225ec76cc9733660f61c19428f32d3910e82cd16dbe78e745b813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bb2e25752e7e447d08a482b6ffefac3bd9f4f67ac8644b234ea0744b38a36101
MD5 6977ec3ce1fcfa44b88b1bdd8f19020d
BLAKE2b-256 b7964e58ec192b7f1da1b4f29305a391130a1dae36d86649a7a282dcb12b7b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19b0ab2a6a57420cebac7cebade7804cf9263ba026b58b0a12f67e6eceb9af30
MD5 589c1954f46154fa9f0503bb6bd3b3c3
BLAKE2b-256 e9c72e4741fd743fe913d1ea5e9b5467d793c45594055d97cb27f6a50f15e858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cefe48f6dfcf4b69db976759e5ebe4394de9bce9b5a65cecaa13e52afc970bd
MD5 63de3fcd3e3f7329ebb16a311253015e
BLAKE2b-256 df7f47a24a3667e6f65cb09a8c25752783e46f9180dda9f78fca1c86c8f5a3bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c245fed351bc3c8c212685f4257780d986e92aeb9e204f69034e39eebb0cecc6
MD5 9bb713629cab27d651488c08025bba79
BLAKE2b-256 0912c0307bf3bb50055555cbb850d23db8d481f5ea16187d498df3a861a096d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ecc3cc83fbb5968633c7a3102c95717d02fe2b85fd0a145a5e4d3d8abcd0238
MD5 bcd8bf4d568dc3a9ce61fb9d605b3b8d
BLAKE2b-256 a5a57074c169b335a59e4af6fa0cfc3d2677d08df1b2c0c440445b5fef370609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea99bf5afe274ec770ab23031f35ff988208e03c4b272b6da0f3a80035c37458
MD5 00f709321b7fdf2014af574bc586a313
BLAKE2b-256 e7df0765db78988927ad656a03e7c503fc9b5c77a1a3fee4822a310adc15b16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1f59e77e79f9592ad81221c64deb6dade8d77548f25fc9cdb0e9ca0b0c947cc
MD5 d7b303497901df5c01654d124aca4c75
BLAKE2b-256 f86051d32b5e90b2f2a9def9e80b264d175b9216581348b07428c1487a4d910a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a18c6399e2a7380da9ce83d26e88f30cce4ce0913be0f8e4cf3e98ad452b01d1
MD5 5935512260323c1f8255143aeb734e6a
BLAKE2b-256 64b422b2b8c09e5f94f96c8c9eda1305aebad03900eec74f434b9db9c386cf13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87d15027c900640c926e41dbbb0211929e6c864cd89bf051d42c84a044a05b19
MD5 c830b25cefb5425d36f2f119912c11ff
BLAKE2b-256 938e2e875d567cd4790ebd03d457b883616fdec039a959ec0451a1586237799f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 abc6b19110e94e7618bfba11f02e6838715e1c17ddf17630d5f0ab2b2ecbee3c
MD5 f85655eac0e88ff3911b1c93c8e39b5d
BLAKE2b-256 6b94f48081c5bf4ab16f18b5e2058d292eac46d9855a821ddaef66fb0eda942e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37239fe11db93288db40ff807a8ac177060f6509b0d4722883e2bba9050d8284
MD5 ed7d0853169c7c88eeb840250aad75fa
BLAKE2b-256 0936899c5597869ac4918b86a44ca58f627acc33d4addaf05d5ca78a4d2af82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cddaf1b689c26153d136ee5122be529f7fa06c6b768f9b536015bf0bb9526a6
MD5 4381e43b9ad487a28edc0dc878ebe7ef
BLAKE2b-256 844e05550b3965902c715d833670f5540d001d92f6bcb2034f58278df11d00da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1ae53468c280efed229b3eb3c97b462103534ce20dd59005e8f27c9df0cd048
MD5 052211791eb1d524b15b5bb139495a4a
BLAKE2b-256 8c7c79540a9a695f42a8284c5d4e493a5772f17547add102447565918c9cd441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 021e06e12b1fb1c98da2f7e691f10232c03e59d239088a19aca04f6b0bb8d9f2
MD5 edb4a43b9314231d53029784bd05df92
BLAKE2b-256 4e7d6f82d900a7214aa1e583283538f9bb270bd807ad248d2c1810d4c2b876e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 608672aef38917cb62fc5f61a0a9a650605e849452a0e50879f9a67466ac5040
MD5 9c77bdede3b59e1f98c374c1ff79bd0d
BLAKE2b-256 bd439eba4185bcf0e3d2ecc29f90e5bebfafa1e2917b434073f2cc53884d7c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5ab01c7b509d97bc99a66a216a21e3b1452bf4ba426d9382eeaf6b26b2f8617
MD5 515ca171fbc6c9939e2623d2f65d46b3
BLAKE2b-256 d5821fde30f1b07afa1b290f3cc7e83b40fb91a1d5beffc8c14f56b2982c59b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9300c9781991f79ded9b82ef7ac8f990af6db6f3259bd79979569d0f6c5afea
MD5 b2c5c503f26acdabcff268bf741c545b
BLAKE2b-256 f577512631985c58d1e51df3e627913dc0ad4353b29efa91edc6ca78ff955d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 658686538c767adadfd1d4f8b9436f48fc9329c3fba582d9993dd0cea0fbad0b
MD5 b7b8a6df6a226f978752b737e838c93d
BLAKE2b-256 7a6448b2aeff36e4873078e73190e86a38003df91b74d62c732d20bb3bd2e7b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 278122fc125d6e4753222552e6c8efe46a6fb71fb9c4bae22a882d4ae19ca0c1
MD5 ba90d5f688d052b42edd5f9c2518dda7
BLAKE2b-256 ea1cd9034068cdbf22a860ce30a99b3444f2f278a3fac196aed644b8da0cf30e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60fd28d9015a07ce6702fdf823203d5cb9a9f39b70f4b7082a0291d810502998
MD5 0c3a2a24c4b9454c0be32d06699b1b87
BLAKE2b-256 703ede5352edadad6c89ff3adbeee2358141857febf8a9581e6d7487ec6bc220

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