Skip to main content

High-performance sequence anomaly detection with minimal dependencies

Project description

🔍 Anomaly Grid Python

PyPI version Python versions Downloads License: MIT CI Rust

High-performance sequence anomaly detection using Markov models. Minimal dependencies, scikit-learn style API.

Installation

pip install anomaly-grid-py

Quick Start

from anomaly_grid_py import AnomalyDetector

# Create detector
detector = AnomalyDetector(max_order=3)

# Train on normal sequences
normal_patterns = [
    ['LOGIN', 'BALANCE', 'LOGOUT'],
    ['LOGIN', 'WITHDRAW', 'LOGOUT'],
    ['LOGIN', 'TRANSFER', 'LOGOUT']
] * 100

detector.fit(normal_patterns)

# Detect anomalies
test_sequences = [
    ['LOGIN', 'BALANCE', 'LOGOUT'],      # Normal
    ['HACK', 'EXPLOIT', 'STEAL'],        # Anomalous
]

# Get anomaly scores (0-1, higher = more anomalous)
scores = detector.predict_proba(test_sequences)
print(f"Scores: {scores}")

# Get binary predictions
anomalies = detector.predict(test_sequences, threshold=0.1)
print(f"Anomalies: {anomalies}")

API Reference

AnomalyDetector(max_order=3)

Methods:

  • fit(X) - Train on list of sequences
  • predict_proba(X) - Get anomaly scores (0-1)
  • predict(X, threshold=0.1) - Get binary predictions
  • get_performance_metrics() - Get training metrics

Parameters:

  • X: List of sequences, each sequence is a list of strings
  • threshold: Detection threshold (0-1)

Examples

See example.py for complete examples:

python example.py

License

MIT License - see LICENSE file for details.

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.3.0.tar.gz (45.8 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.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (482.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (365.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

anomaly_grid_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (483.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (483.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-cp313-cp313-win_amd64.whl (192.8 kB view details)

Uploaded CPython 3.13Windows x86-64

anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (480.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (364.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

anomaly_grid_py-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (295.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

anomaly_grid_py-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (306.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

anomaly_grid_py-0.3.0-cp312-cp312-win_amd64.whl (192.8 kB view details)

Uploaded CPython 3.12Windows x86-64

anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (480.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (364.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

anomaly_grid_py-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (295.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

anomaly_grid_py-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (306.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

anomaly_grid_py-0.3.0-cp311-cp311-win_amd64.whl (193.5 kB view details)

Uploaded CPython 3.11Windows x86-64

anomaly_grid_py-0.3.0-cp311-cp311-win32.whl (183.6 kB view details)

Uploaded CPython 3.11Windows x86

anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (480.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (367.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

anomaly_grid_py-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (297.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

anomaly_grid_py-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (308.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

anomaly_grid_py-0.3.0-cp310-cp310-win_amd64.whl (195.8 kB view details)

Uploaded CPython 3.10Windows x86-64

anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (480.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (369.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

anomaly_grid_py-0.3.0-cp39-cp39-win_amd64.whl (196.0 kB view details)

Uploaded CPython 3.9Windows x86-64

anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (482.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (371.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (482.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (369.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for anomaly_grid_py-0.3.0.tar.gz
Algorithm Hash digest
SHA256 2c789f3bb66195b1eaa142ea60a4db9e0eef97fc9f71c326d93a270eebeed215
MD5 cd3eef6c9f10c87f58fe4bf12459a365
BLAKE2b-256 89b503a124544f0e339685e4254069ca2d3b2de692b46ba5e4d4f41fea2537d4

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9994ce9829a22ae2be76fa5a266c80971f93e9088b24fb345f9ca953a0e69197
MD5 75b8815714dc6c6333867e75498b8e4d
BLAKE2b-256 626ef1346549051c54da9d47325b495682de96661baa5408143bbe3f04247976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 614b6b39113f1597d2dff295d414b169f7cc6607a4b610d190da56577aa1ec3d
MD5 574bd69af45f5c79b9c84e8dbb31dd76
BLAKE2b-256 ef33a7e365a96bd7052a29fcf1c9dda7f971bc9888f1ab670073153571fb4202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 858e2c52f16cdc8774817af90a22a092a280ad995154bc7b563c1bf76e2ccc84
MD5 ca48f3beaa8952e1b103934dab41e53c
BLAKE2b-256 2b501067fe1a71990ccffa56d5d872b5a807fc6587d653f74f08b0f78f027763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e86c1c2c80a03820e98ab07417b21545ffb9513bf8fe16efb1e6c4908020d8a
MD5 9cf3b0ba814ccf2861bb77d1f1b73815
BLAKE2b-256 26c803d56535f4f933538e33fe2aa04ee65818dc05153a20c881449d1a4d597a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1010521feb297f51e54e71d70649fe377fcf225307759302787436965f6bab0a
MD5 34cf7dbf3002b618874438918d98e981
BLAKE2b-256 2c9a4d46b4da2c21b24e687d1077cd5918900f483cf40fb7fb4fdf044eeb995b

See more details on using hashes here.

File details

Details for the file anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7385b3355c9a818b6d1ff35b6cde5a54af2e9f58298c761cb2a645dd61f9be60
MD5 9e9abfd6fd0eb7dbad7fc0fbe0eba895
BLAKE2b-256 f1d898fa47485caf63c6f917371e62f805891587700b59093640e7b714c037b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e15fba3a0dc55a7685f655fdd05585480b479d84e1aa213f09a33224bf84be72
MD5 ee4ced4fb5a8aa7deb83e32a293889c4
BLAKE2b-256 bd382c06b58e2500df0db9bf37e50b2191442b9f278b7558d7aefe4fb83031fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d12e3c0b8d36d0fe584895f094824d4512f55e02adb5ea49f69a7afd09b2f484
MD5 ef9d3820596f9bf2914cb6bf1fa8aee0
BLAKE2b-256 5958315fdf2385e3bd3879fa66b04e038da6183c0d21b2a17997fc31c812f64d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e1465465273b6b3607dcc3d37d76dede638fef926bd38be4d41b7b80bbeb462e
MD5 23d9eba4342aad81799e9bf045ee712a
BLAKE2b-256 f674f11b3d588a1e3d66c49a5758cb516e5434c25d58e73662bb24da917e0b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f5d50e410869e7a02bee7fe88eb84681c18ff6145ff21eb09f7d7917ad34b35
MD5 475462427ddc2b72fa31cfe9af36b908
BLAKE2b-256 e41a0f4ff1cc7f5bee0a7fe392af17989bce41f371d36fb91a27049c69fd4322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2baf3a1e68e9a1d11c9786a7f7b2b77f4f204e9db86d906df3537ad8429b283c
MD5 07108240b1833623037435f376a9f3d4
BLAKE2b-256 c0c9d2ef778eaa6802ec0e0becead87942aa4b33c89ac4813445e6c97b5d8466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2ef3919f96141165a24ea2977a1bdfd9aeb9155e9444489705761b6edb6cecb
MD5 92bbbcb6cc94bea0e9429e83c39616e2
BLAKE2b-256 355eba172e604e01b506d6192212c37308ac21b7106a7ca6d37ddcb94a1e9d9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37de6318be44f3673b416d813c35c5a1cbed3bb61750a37597ff86b79aee0476
MD5 13bb9b6ce5edbd7fc00504b4b25163ab
BLAKE2b-256 5e2c107bb0fa65e5e31bf94dd7f62076b976efd0970127139342c9d1835b7fe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5824fdee6442823322ef73957eb68f8c8344dd9a4ce997622105999c337a7383
MD5 5bce77b4011ddd186edcfd519b6ffc07
BLAKE2b-256 ae9eb4dbb59b3d98b7aad82f7d9258ec669fba41c2d05a44de5908a106fe2e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 75f1ff68b0ea09a0ac689a37e81883d2715d3b5c8df1e0e6db9f6319d1c69c8b
MD5 bf2edaa2866df315e6c664a6ed7379f4
BLAKE2b-256 1eeb9919f4abd60aee1ac4f97c79ccfdd49bdda2e49fb02f4c1e4f0915ad95e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cdd4e2f859b75dfc035dc4f27db0237d6b0e212d1e77dff5bfb18a12b787217
MD5 c047de955a9066503ad7e70a7af8f6fa
BLAKE2b-256 e1828f745417bd2eb9e06e353354f7bea8e6f441e953c85d94bdadf38298e439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a9b868620ff983d60ab3268b8e0e781523781244363dae5b4d712f6aac206d7
MD5 f047cb79244e563ef54825931afb32ca
BLAKE2b-256 e6095997a351eb42e179e1b2dd7b4ff40f6d11bd66bacffe31c69fcaa1f6f447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1bad38b4275d4470acf53e9364ee69c0ebd81ee3972158f11a9a454c15c6ed2c
MD5 b093181d18321fad2d61cac99d8a331b
BLAKE2b-256 f51b3ca057d8d575007d87fd6f6dfd1bbbb5a365c3264d642950401228105aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 813ddc4759e0a0283e3432889286c4f094a6355fb909b43865bf7967e583a513
MD5 0354ba233fc1c8f164bc5d0b4d28d0c3
BLAKE2b-256 a7f18bbc6a95cd9044b1ea54c85d9c860746af5abf391e24ae547d1a5b20b82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf13e11cece49b0ecad8a1bcd5bc4c595aff3b77fbfb942a8fa865eb846f4723
MD5 4999c4a965572e4db98cb4d9893f8f6e
BLAKE2b-256 39b7c45c5d86d81f68b2387600e78f8fedd1f5ce0a8583ead0c0418a4ecd727c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 070a6e397d234becb467370261dd239f5943ab9e62811411e900aa0bc50b5f75
MD5 e8d15f7fb022cb464819e9a57aab7efb
BLAKE2b-256 a3207f5a57e0bb790e5ef8f0bdaedcd1c141bd426a47c9b765e2aa31af9420e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 711b5c7d9e08bb7250eb515403edd7807272a0b96f4e58be526ef2aa7dd5be7c
MD5 90d88ba927690f65b0426049ca831662
BLAKE2b-256 7ff11d3de1eb0f218c11388ebb367ebda39e16f7ad401031c0e5d25358487693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96fc3afdb1fb2b4f136c1d7301a7aca53300f9c7e71ead12a991c23de546f1f7
MD5 06dbe3d29cc8cfe3da13f3623c82273e
BLAKE2b-256 474c59a863a9a07eb2653f3b60b175e172127eeaf9be886ea18c1ffae4a3df6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcd1b77e2983794759987f223f45928e191e3b82b525b24fdb4f797eff6cfe3f
MD5 7dbfe35b6ab4feec24523eff561feaee
BLAKE2b-256 d5103e56c5c19f2d15b3244397f583ba8cff1e4d6b15dc8615d2298c091b563a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36c9ebad8b54518e5659f0a992b2d84043855f65d8889e94b4d89a9953668df5
MD5 7ed4c872b112de77bb299488e59c22e2
BLAKE2b-256 026a457efb2eea4fcc8358d7666f92bd095f65bb28744bbcab1a3b5564ba82d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b34e3acf4924ff6d0ca1654559b783cc264c045ecb1ca4d0ea0fca801d3fa6e
MD5 9a73bf6293dcba82da483f3930fc677f
BLAKE2b-256 b98deafadb404d823806cfd9dc64facdfba993dfc7d8e32acd3463fba74b39dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cccbf3135713f9389eaf28ad72e1bd03e59d6446fe1117a6e4cdabe41acef63f
MD5 0fb8108f2f364d4d1ce2de0cd1df2c2f
BLAKE2b-256 4faba7451e8b1d4224b8596079aeb66ceae9578ecea037514eda763e2548535e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfc0bdd2bf583950e277d6100c5bef93d664e4b4af78881dc58914017ec6e7c3
MD5 48ccb242aeb4da484987684465e596a3
BLAKE2b-256 f674fd191b6883782e453165a9a49456453870520947b4ba13c262425bf1e043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b51098fc80ecb0ab67464cbd6e74116b61be748c62ab1397949c375707f93b53
MD5 19601c4e437d2188e1014b2dbe6c9c4d
BLAKE2b-256 1face0e3dab0a51520273ee55ba42cc5e3e121188df41c37857deee6ed63dcae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 526105eeaa019a3664c6fa1b5d73c5214b43de358d7387db712401a54fbb3771
MD5 5473b11232d67328976c7148eba33f40
BLAKE2b-256 b6ad6842ba79f60ba0bd2548ba5b6d564ef65dc10e6ac9d6e8352f6479688ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e6e918d98382443a1694797b401b29dcb562616eaa90a2e10e113ae82b55a12
MD5 114546ae18c202f9be9d9cf4082e3076
BLAKE2b-256 635e61b51d79fa2bfaba199e5b4533f579a2a192fcc750a6108d47d012a6cfb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 646cb4c3e794d6d6b30e907b8de77e8cd6d7ef0c91ecaa2061ab0184babb90ca
MD5 6d2d9701cf617fb745d4b7149db1b3c2
BLAKE2b-256 51a7fc308ce5d3bb242e07ed750f3115babbefac85df687e7f1053eb20f1f58e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2a03fc50b8878cd6c6156583671b9ce425ff7746982735563710a59b86a891ae
MD5 ea978634933bb3cb5589392eefcdea65
BLAKE2b-256 e57084b0490979c060bd53799609b4bb4abad4c44763f10c6a0b0010d01f396c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8237d3dcb14c4942723c513aa6b65f9a890d4d16aec5a2dc045773375a49a93b
MD5 eff30490b0284744a8d988db99acbafa
BLAKE2b-256 b838e77e4911fa62ecc5c0899414270ac180bbf8c89f36935d8b7ee99640e12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ca4e67d4dc5c10a0d442d37497fd989d546b422504363229debfdff6847ab23
MD5 2769612a990e6fed68e5378167717c5d
BLAKE2b-256 1839916c5f79c47e687c33d79bff297276d31f182adf275a0be047ed146bf0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cdc3b80cde79182918fa8d928c81e80728ba3241d2a52f8f0dac49910ed6cd7
MD5 34cbe28f281b21a5ce7f46bd54e8e74b
BLAKE2b-256 73bc68eb73a24e2c86c4acac874a3bbdc386bc452ca143209b15cd0c165d81d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 105afbc44c019bbecb5049c31e0477c812e2e11076dc79550ed078a28b27c120
MD5 3935a24ce66f70d94befe17d83edaf8f
BLAKE2b-256 a602854dcec556713788cd02f651a8e1da31d10d25368a62b999e745b2fc0ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90a8d3733a7c44d073100365146c213deebb8fe41c125552228991511051565f
MD5 d863f0be8a5879416f1527f87c768bcb
BLAKE2b-256 9268d74600f40b9a16e0d7fbb471f7c2f691b0fd7ec68d5fb207f36764294b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 022c06372d2b647ddf670d49a20b4e22b83361d7dee45214d5dd139ce13efb03
MD5 8257af18f357aa9e95c2704bd38a1286
BLAKE2b-256 7cac7016953ecbfeea5378542ad1732804ce6fb4908c0db415cf19cdf8a5a4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b8a2f512b3127a4b1c65172c4883f1e2d035f9028d7b77e9ab22f6c3b615bc1
MD5 1281fb3467c18f7842549d675476fede
BLAKE2b-256 2069e40d772d23cb1bd1d4d964317d075be017136b1e896fa9f13a562270b5f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 156136dc52fb567910c68c397f33e84c55dad17f96c99a8574f4bfa5744f8f15
MD5 64936ab9cdd9a8be8781ca6626ff575c
BLAKE2b-256 ca10c6759cb8066741afac27a0b7f0aadc3ddf44fc4a0289c7acbe1c383f3d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 095aa417b30e9a6de9df0b12faf6c148f2d05b94be789cd4f2cc329ca7b792d0
MD5 380a123ff4b82c1358f4991a86d3f3b0
BLAKE2b-256 fee2c96b7fa05b06010788cc9d4a481df50d01e5a501db79b5da1de8f9cd1a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f3e0afd3121d77e86490a6a5cbbc3f415c3e2e8279168e8868dc6342648455ab
MD5 c35d4fc162919af185606fe36a4eb04c
BLAKE2b-256 c3ee248d5f4f71a4541b06efa60b58642021814ba3df41edf1f3573cbcaa43c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05f9dfea3862b97250b19f9d18b20073f1b3e5b6d7e967f8d3cc0171a649482c
MD5 71d08628df30b09c7f740a409bf08426
BLAKE2b-256 9e9b50b8a32e73af45af6e3dc7839090617a1fa41027e35c2d56d42f4d11cf3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2131c79b9660463add737fc7f1486b0caa48f9fca9e072718e378cacb6e0454d
MD5 2be0929f5e696c46f1f3ab8234f9b1da
BLAKE2b-256 ad7fcae4bb46c83298a23c09d7fcf194ec77bed96062f481ca9d0de78b75a608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27fdfb6d62f0fb7621b2531c64de6be21c924bd13ad7e947cdd1ad4d4a7d18cd
MD5 71d46a954c0adf97ac16268c484849d5
BLAKE2b-256 69f540efd35788230752da9bd75cd4a4fb0f57e79e9bfbfc74a7b5d9bcb8546a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 615bec949f56ae8b2974196d8f53438a8d9754be7dfcaa2bcfdc5a3efc47eabc
MD5 61f247abfe4e819cf8edee72526640b4
BLAKE2b-256 6524bd85025a2ee693a3d062f0b3f6b12d4346ffc449946c6456422d0b73447b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5deacab935b745aff52af084e05df6ae6b5e8ca88650e383ed3dfb9db376405a
MD5 4f75bc0df4a16eb12fe57420360b7dc3
BLAKE2b-256 28763611bcac337fd1e1604854b0a3a57b6ef54f586b14c7ce0b0233eeded2f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4bb1d9a95fcbf9d45776996713d1dd9681f2eae219943d57400212cf8e28bdf
MD5 ea5b9e919abec36a5cf9b88fc411a4f1
BLAKE2b-256 c1534f9ec83d1955a385e907f6cc833602173215bfadf445196b65bc0ec9badc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a0d7854781a9ab8a804b81a11dfd35bc5127110484c9c4ea339364b1c7273366
MD5 cb0dd4d8fc3b2045d9c281ae58454851
BLAKE2b-256 92d66dcfb2655ef4fd95ea4c62823d6e04824aca0cf5ce5f147569e22eda0b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 204e7708b76fc30536425d26dfb026abe6f1fb5f767fdb5937be870ca9c15f67
MD5 70866cd50ae6a06e774bb7cb2e460a6c
BLAKE2b-256 a6321c84c5c53fd510b8f8e02907173579ca8e7ac6ad8fdfe63376e02bbb3405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5969ac3d57cf1a2e7d4e38d0bf89ed72fdc0da2c3a28701df2fa0aea46380ab6
MD5 5a7d4e7a018760ab7f131601bd8de30e
BLAKE2b-256 b25170fed676b5ab88b3f9f9beadef62de886c134cabfd2b2dc15363e4b963a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96cc051b57003d282115f66d513fd28bbc2e6a133b11d5a7f999e67e8d671fcb
MD5 3b1903acb3112811be36ac8f821602f9
BLAKE2b-256 8d0f9d24bd8253d0b6d2ed43067655370259ef6d26c193b4d6ea9cbc9458301f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 187b3c9eb84e750dfa9e9bc1368ddd0844f0321beb9ec8e5374824b572ed3279
MD5 90952f2e6f084d4f479833e6c32fcd16
BLAKE2b-256 b0dfeb7ce95111a646cdd9555d3f1264a986f7ce6ef85d769510f67b7e69f820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f8dd7a9d7dd4e68828656452e0ea12d9f5d12515e0b7a2bc5b517c96f4cfe35
MD5 385206b5e9a71dd36118d1821d1ea627
BLAKE2b-256 0320c9b268f3194ecf696bd7d3c79a60f88cb198265d36d0ac3ff981489ca7c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd4816e77e4239f6f8e2dc629002063ef13fb63b0a0ae8be2549048d099bcf58
MD5 8844babe46263bde980b6da402a1b60c
BLAKE2b-256 dc60621529508dbb5f126023fddb17fe0839b5f689c5fa32b0ce893a93665517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51f51bc4c0d4844ff1dfcfb997625e61c81ae1618d145e192d5d7e8057671505
MD5 3126e311508b70b36f2a679bedc5032e
BLAKE2b-256 b19c32a532ba0270bcd8e59ef2feeb61e9857c9388558ab9f4e7f9cdbf346bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d48426c09bf95f80c4b205e21086dd346c7b5cca90fe49d7e595708cc6603580
MD5 17f7de511d0ea9a8e4ca102a96b364e4
BLAKE2b-256 c1e7e723a29a71d83cf363a985082e63b888d6902a8c6de97811c9495d8bbc1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 273a1dad93d12560eb81f17ec569f8b12f34bda9f85cca97d908ff6190cfb906
MD5 e107238c55ac63110069b1d016f42a13
BLAKE2b-256 0c4321f88146c36c5549fc489673ce2a1c408e72b74cfc0d09a8b16c759cfd91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8cf5c60a73a96b89e30df3eec00bd529b774f095cf0ac9c0eaf68786bcd54282
MD5 56bde8d15b6c7a744f598db7a24f3109
BLAKE2b-256 6872e9805ab1a7f491377152b88b13f87f1f207c0d279b7a8d9dd59c71bce10d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72ca98ef4ddea41d03d08e3f8e22e3137943b1f85056383ed5e94224892808eb
MD5 5717efd992a3cf91bcf6a81b96d36310
BLAKE2b-256 5334366799a980ec6154fbc8bf0826b2044ce8cd1b425c407e692d7df7f80015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anomaly_grid_py-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a12849e269944ff2d88ab0d90e8fa16f10ab7285258d470e0b3cd4f760b0d96
MD5 0f7fc896aa8b5d272e0c182a9cc3b496
BLAKE2b-256 3c9943663849f88de2b7054152f86389cc8e7d600799d68ebdf05626bc1d51f8

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