Skip to main content

MatID is a Python package for identifying and analyzing atomistic systems based on their structure.

Project description

Build status Coverage Status Ruff

MatID is a Python package for identifying and analyzing atomistic systems based on their structure.

Documentation

For more details and tutorials, visit the documentation at: https://nomad-coe.github.io/matid/

You can find even more details in the following articles:

Example: Surface detection and analysis

import ase.io
from ase.visualize import view

from matid.clustering import SBC
from matid.symmetry import SymmetryAnalyzer

# Load structure from a file
system = ase.io.read('data/system.xyz')

# Find interesting substructures using Symmetry-based Clustering (SBC)
sbc = SBC()
clusters = sbc.get_clusters(system)

# Analyze each found cluster printing out the indices of the atoms belonging to
# this cluster and visualizing the conventional cell from which the cluster was
# built from.
for cluster in clusters:

    # Get the indices of the atoms belonging to this cluster
    indices = cluster.indices
    print(indices)

    # Get the dimensionality of the cluster
    dimensionality = cluster.get_dimensionality()
    print(dimensionality)

    # Get the cell from which the cluster is constructed from. The periodicity
    # of this cell indicates in which directions the unit cell has been found to
    # be repeated in (at least once, possibly infinitely).
    cell = cluster.get_cell()
    n_repeated_directions = sum(cell.get_pbc())
    print(n_repeated_directions)

    # Analyze some symmetry properties of the underlying cell to better identify
    # the material from which the cluster has been constructed from.
    analyzer = SymmetryAnalyzer(cell, symmetry_tol=0.5)
    conv_sys = analyzer.get_conventional_system()
    view(conv_sys)

Installation

pip

pip install matid

From source

git clone https://github.com/nomad-coe/matid.git
cd matid
pip install .

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

matid-2.1.1.tar.gz (151.2 kB view details)

Uploaded Source

Built Distributions

matid-2.1.1-cp312-cp312-win_amd64.whl (262.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

matid-2.1.1-cp312-cp312-win32.whl (251.9 kB view details)

Uploaded CPython 3.12 Windows x86

matid-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

matid-2.1.1-cp312-cp312-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

matid-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

matid-2.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

matid-2.1.1-cp312-cp312-macosx_11_0_arm64.whl (275.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

matid-2.1.1-cp312-cp312-macosx_10_9_x86_64.whl (284.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

matid-2.1.1-cp311-cp311-win_amd64.whl (262.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

matid-2.1.1-cp311-cp311-win32.whl (253.0 kB view details)

Uploaded CPython 3.11 Windows x86

matid-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

matid-2.1.1-cp311-cp311-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

matid-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

matid-2.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

matid-2.1.1-cp311-cp311-macosx_11_0_arm64.whl (277.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

matid-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl (285.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

matid-2.1.1-cp310-cp310-win_amd64.whl (261.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

matid-2.1.1-cp310-cp310-win32.whl (251.8 kB view details)

Uploaded CPython 3.10 Windows x86

matid-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

matid-2.1.1-cp310-cp310-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

matid-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

matid-2.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

matid-2.1.1-cp310-cp310-macosx_11_0_arm64.whl (276.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

matid-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl (283.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

matid-2.1.1-cp39-cp39-win_amd64.whl (261.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

matid-2.1.1-cp39-cp39-win32.whl (252.0 kB view details)

Uploaded CPython 3.9 Windows x86

matid-2.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

matid-2.1.1-cp39-cp39-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

matid-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

matid-2.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

matid-2.1.1-cp39-cp39-macosx_11_0_arm64.whl (276.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

matid-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl (284.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

matid-2.1.1-cp38-cp38-win_amd64.whl (261.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

matid-2.1.1-cp38-cp38-win32.whl (251.9 kB view details)

Uploaded CPython 3.8 Windows x86

matid-2.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

matid-2.1.1-cp38-cp38-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

matid-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

matid-2.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

matid-2.1.1-cp38-cp38-macosx_11_0_arm64.whl (276.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

matid-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl (283.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file matid-2.1.1.tar.gz.

File metadata

  • Download URL: matid-2.1.1.tar.gz
  • Upload date:
  • Size: 151.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1.tar.gz
Algorithm Hash digest
SHA256 480bcaaf51cabb95269c8e6fe65290722dae3c785c37f10ae8bed6ccede505ee
MD5 1edd7d8897b715e0743530cc733214df
BLAKE2b-256 17fd06226815e621ec99e4a430f6a8d66c62936fcd0a1491133eb21d73846f54

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: matid-2.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 262.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 707bd640e879b180e5ea8301a65d66a8472654f850c3b1a6b83b2517c9dfdfa2
MD5 7aa1c4dc3c77dc8ab7765edaad1d33ec
BLAKE2b-256 25a7e0e60b92235ae9f27f2fcb165f180679a750e6aac6563ff23b7974117b27

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: matid-2.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 251.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4659996afb210d1c86cc8c5b3cac4ca1f32f065612accc5cc3c189a19a45e220
MD5 5d18e434bf0c03e25587d25d29781636
BLAKE2b-256 9df6cf30ac83edc353a4bf4de21fd51f71915bb3a5f8883bfadb5091c22a142b

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 839893720ebb28d89ad96c42357a8e5ca5f46af607192bdbd2eaabe88baaf38f
MD5 61ea3b7c0c8e44eb9c67448cc1fd50b4
BLAKE2b-256 6ccfec05bbbabd228001427761f66c93a2c70936ac88d43303125e6ecca29f6c

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae34010ff9e55b9280b8b6d1b21c4b7f3cce168463c7821be1e00b1a7857e14c
MD5 ea0bf8cbfc72d460509b337dc02f9c9c
BLAKE2b-256 9d1646f74b6ef80f154c51dfe1545748b9eac24c4102762fb0b99b543fa7b621

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664fda4789545b95e6e92c833067872368cb0b50833f61250087478f99ef87f9
MD5 27d453dcf6187a4909cf49b40a2ca6e9
BLAKE2b-256 e2b7d547303fb1c36580d188b15b0f888da55710c5fdaf91090f08edca6ad1ec

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a18519dd22f464afd2dc768c1d9f5d2ea6fa43c172a5c9e037577054dc3ca63
MD5 5fdddb583d3502e50706c1e01652d654
BLAKE2b-256 60e0bf5af31de6a01bb6228a382eba9c66f8b63fa63a0dffef733001fdfc017c

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a716d339904d401c6f7757aa7fa55d0e835770609a378568523c0fdf7b7994f6
MD5 e9d7e77e2e6572386168f6b437c351a9
BLAKE2b-256 699687c0243ecd8f9f5e140521d4a68ddb96466fcb1e7dcc506ba67d266d8caf

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15182f6fc89f984538a96e646c8adf6f477fafb9bf90e84dd12a9776b3fa9430
MD5 84ca582fad393a48271ae6910167363c
BLAKE2b-256 71c1229916ce591d05b9039ddc1fba3ddbb461a0ac24691ad01813e77c283c6c

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: matid-2.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 262.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a7933c701d9ca8c878605e514c49d09450777d41eb9302257101a527f75879ed
MD5 0dc7da8df32818abd0b8b84c298e0798
BLAKE2b-256 73d2fd59da6fe3ce964fd3f1819fbcbe5501fbd3599cf7265d22ddd3f0600db2

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: matid-2.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 253.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a89b0d75ccdb6e32389c6e271d04973c9c7da9e9c2124441c0ff9de0a332d165
MD5 2ec0b842e2433af182aa3c97f4b6f76e
BLAKE2b-256 493bf73025d699cf46f61c180befd56200c6bb36a2302b4bd663d58d48ba4ddb

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4da254cdbe3f28eb3139c4a8b6180b7a99d8ef4505107b8968db64d0b7526009
MD5 436b1a1b914626b600b635bc84432b8b
BLAKE2b-256 1e1c6d410fd84c05bdbeb4b0f948e3e0ca8200107181d8ec89489b088174cad4

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50516f3838d9c70e4926f2730f756bdb14f3d9746fc0cbee4655111cdfac55a2
MD5 790a7ff584656e3b7144238c0bad19df
BLAKE2b-256 524c06dafae92231cf76730844765fcee35f4db3fa51abdc4cb683838ca39bc9

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a08420437729b4239d18d95aca3045755205619d4aa295856332b7ade823ae3
MD5 bd1008f5561f3f34544868187b11c9fb
BLAKE2b-256 15b935534d2eac1d6bd11e6428454e184b23825c6a089b17ab56981091878341

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9152e80a7f9e2a37828cfa74c1c004a71a00ea69b8f092f1ae718388243d1d9
MD5 8f1704550f64bd43b86d437ac18764e7
BLAKE2b-256 537012394f01a59e52bcd27fbe8f48b4f5b309ac585d5fea56f4163c4ae42e2d

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a23c222b51414f36ccccd696f7cfdc5a2beacbf4c5d51d5c7c1acd2f98a42875
MD5 b957dc27ba79aead006284d2ba2ea9bf
BLAKE2b-256 1113cc9f135331546ae3abe8333ac11c6a39cbc9cf06eb6d18d7bce3ac63751f

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea1002c12485d440962e2cd9bd4b1d9ca1e604825ba2c0f4b8bcea74e9ec5c97
MD5 be6e7cd73642a77574b8b00c147e1eab
BLAKE2b-256 23eb0e3593c7d0e228f278c978b5379d58a1837b2935cfb6a2995ded51936c6f

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: matid-2.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 261.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f4c002c75a742426061aece2fd9d97f3657ac3d81e838b17502f3fd62d6190f
MD5 a99f06c62b2f350047278c9f1acc822b
BLAKE2b-256 6137e40220fdbfc0d85e9fa343589001db76fad96bebf1b985f09753bcfeae69

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: matid-2.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 251.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f996bf7f4f0f72a66d67191d8f6a9bb1e1c65b0609d93605470b5f458acc4249
MD5 929947bf3c905f3f3eccc3107a8e32d4
BLAKE2b-256 5c26749ababb2f9060e7bcf4f0e13d530555c94fae9129f0a33e213e44234ef1

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35898fb64ab08b1db8132a3af43dd1e4e8b6fa2e1c7b03b305a5d0fb76c00c67
MD5 9ae9f5a37ccaecab467d77f94ac5a963
BLAKE2b-256 740862825d1c73042b94dadae6bb042efd80352f52078aec66638bb2dbec976b

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd78e7469d16a3558bcf3ff281eb5fe62df46b428a4023a8c2823de3689b7065
MD5 e62f4e0d7cf5a545aa0fe4d828b060bd
BLAKE2b-256 1868389a959778643f26bc4edd9159dea6ec90aea03808f2d1248fbc8cbfada0

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 993432436f1b754c46291fbdbcb55811fe817b12984baaa36fe291316673f2ed
MD5 66cd05c856528e29f1673003bb45de92
BLAKE2b-256 620e49a52280a4edbe1163920a31d00d9ddc40a5c661454753472b5bbce55e9b

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b94aba8be4ff052cb9aa8780eddd2741938b790e9f910620b3f9213f13cc6721
MD5 f310325cd757d82d64a31be09798e84b
BLAKE2b-256 2c688fb01cebae5ebebf7f5eb77b2b846516500d1938a7319270ee6aba2e1bff

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86e8fbad2181dcf50c1f9ec49b1b09309f222fe1901cdf9de368dc4fd5cf7cbf
MD5 97aa6316fc149f070f0f61803b125cf5
BLAKE2b-256 0eaf61c8619c73b9d2be775718214050a67f9f2196992b59e07c3694702b69f2

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b830ca6905f583e16bf4a25719b2e5f56d316df5919dfa6ec50562a59de114b0
MD5 7be50a645561fc91479300935ac4d9b9
BLAKE2b-256 4e5d770e60f0c328d2804e7908f773cfa3ff825e8bbf098d382ca3e66a55eff2

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: matid-2.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 261.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f70eba7e64a55e9e94fb4e20e857d3f05eee3899c5629ac909bed08977f00968
MD5 1d26e27a88455183f28e7dc823d0ff38
BLAKE2b-256 d26b47dab1162a68b23f5b8d59dc122a5dcab13c8dff9fe9b847315db2330a3f

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: matid-2.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 252.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 80ad181f807279fe2fa99122d70fcd0c0e52b1fba61773d54816ba616066f1e1
MD5 873a495d6995550799d1aa96482296c8
BLAKE2b-256 238749cc55f4c57c07d9d325bba27b6260fe56d7c463f05a9399cfd35e5b8c91

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e39480a0f53c01b688ecbae47de1990a03bf33037783e357da6dfb1ae9caea1f
MD5 b612cdba78e879e5f1910c6871956079
BLAKE2b-256 a4fbe0d1c8ab53e05c35e30c87d5f695ada66dafe351132052611d2042aa7286

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac1f8f81e3df329ebacb7775b660f57d7a1ccd3d8a282dcf3e88ad70fa3fd5ba
MD5 bf11a8a9597b8f0c26c292c082d1511a
BLAKE2b-256 9c638d4e0671e215b345005d1836aadf8fc5e9cc87d7ee60a721ba08f240f308

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a47b91960fa6edd09ce68b24a678cca16ebbb6ff1c49af0b1067b72c68d2c03b
MD5 3647ca2d9f90dd29985bf2fd99d29ae9
BLAKE2b-256 d90b340dad54c827399959b029a66e5f818b8005f177c883fac3ea8cf1670fcf

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f0c7bb7f2ca6826140def3827007418ea3302ac7ff55ddd4351e99192f77e16
MD5 e4576052a0211d90b9d9374520c5ff71
BLAKE2b-256 b327eb1aa60269e4d991b95deaa30708764427e85f76bc40b8ba06759086542c

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f215a0187484728956ea69c620bffc8128a22926ee53db551f3de36744edcda4
MD5 20ab400f4d77bab901e119fe48b37004
BLAKE2b-256 83320821cffcb8328fc53c4cca04502a04c2c769efffa7d155fe20cb6629bf2f

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bec74e9272deab9747f003efe797f3a12800ea7764407546ba64c4b15ce4e047
MD5 6d581fce2aa174386e9248ad8701f4eb
BLAKE2b-256 217e44a4d216aa2c543d9f3440d64f714bafeda4a76b09b891ce1aaa99aacd66

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: matid-2.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 261.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7f7409b6785a83665b2173b4748262b8b9b15286b06b5c71b50db22847e6274f
MD5 3d9a224bebe9ef1c347080f919c436b7
BLAKE2b-256 3b245a9385a44c722c951a8163bac7e6140d1e3191eef43ae7571c3683234d6a

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: matid-2.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 251.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for matid-2.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0fe933fba18cf5ce6efaa944fb77735554f561a2a900c129cd52999680f11286
MD5 389dfca55a2cb870e31635a850bd5e5f
BLAKE2b-256 027c592e7a0d656535f16d0094a03f3ce8552f85e2c1636dc00fd545d802d8a2

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3251ddce06e637444c70276e8f6069c4c27c352963b710738fe5c1b1ca5a8e82
MD5 a82ec0a4e48023d5ac56ad4013ae9a82
BLAKE2b-256 49820c02ffc9d75ae8cb962a0d4464e073f5af9f1d04a653bee4ffa816f3d463

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b44845c7bbf71ea4a1be0609594fa23d3e19c2827a613fbabe21d0c71a6a9f03
MD5 5be57d2f87fb638ad25c6af355f688d2
BLAKE2b-256 e6b268e9ae0902e07d97cbb733dd29fb01316f0934dd132c432ec757185af422

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a82051cd6d2226766b3ff66636ea06dae1b2dcc7c242ea88221656f4af2e808
MD5 5c0230e006a0290fde5614b91cff42df
BLAKE2b-256 314865b6ab4360b55fd69ada2ce4b249d66e726b024a6b28316795021826fbac

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab0926ca5f7eab22a86da836157c6135612f3d0aa22484ce5ef6d0f24addf8b7
MD5 f9b24bdcc0ff5c4305b4e4d940fc2500
BLAKE2b-256 8d287f316ec3cf81e8638a8c6db3b30ed326307e809505bb0010cd3fa077a8e1

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49485c53f23fbd051e2dec74ecefef6dc47fc247bf04f4d55a0326b5c57d1cf2
MD5 ec25c91cb1eda5cfff858ca92f6164af
BLAKE2b-256 61d3ef83541707dab243666b0e6f31886c085a54c9084e1b02c4eade76d51f0a

See more details on using hashes here.

File details

Details for the file matid-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60df96df8993e7c234fc96045337ef62b96c83528a5e87ce6f292d83028e22f4
MD5 1d718be15d484ba0c6a86c9f3b42e3ac
BLAKE2b-256 d4ce5b37c85f2a9892e82bdda8ef667415273bf81116b8a1989d0a3187249ca1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page