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

Uploaded Source

Built Distributions

matid-2.1.4-cp312-cp312-win_amd64.whl (261.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

matid-2.1.4-cp312-cp312-win32.whl (251.4 kB view details)

Uploaded CPython 3.12 Windows x86

matid-2.1.4-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.4-cp312-cp312-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

matid-2.1.4-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.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

matid-2.1.4-cp312-cp312-macosx_11_0_arm64.whl (278.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

matid-2.1.4-cp312-cp312-macosx_10_9_x86_64.whl (286.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

matid-2.1.4-cp311-cp311-win_amd64.whl (262.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

matid-2.1.4-cp311-cp311-win32.whl (252.2 kB view details)

Uploaded CPython 3.11 Windows x86

matid-2.1.4-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.4-cp311-cp311-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

matid-2.1.4-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.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

matid-2.1.4-cp311-cp311-macosx_11_0_arm64.whl (279.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

matid-2.1.4-cp311-cp311-macosx_10_9_x86_64.whl (286.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

matid-2.1.4-cp310-cp310-win_amd64.whl (261.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

matid-2.1.4-cp310-cp310-win32.whl (251.1 kB view details)

Uploaded CPython 3.10 Windows x86

matid-2.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

matid-2.1.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (278.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

matid-2.1.4-cp310-cp310-macosx_10_9_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

matid-2.1.4-cp39-cp39-win_amd64.whl (261.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

matid-2.1.4-cp39-cp39-win32.whl (251.3 kB view details)

Uploaded CPython 3.9 Windows x86

matid-2.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

matid-2.1.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (278.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

matid-2.1.4-cp39-cp39-macosx_10_9_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

matid-2.1.4-cp38-cp38-win_amd64.whl (260.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

matid-2.1.4-cp38-cp38-win32.whl (251.1 kB view details)

Uploaded CPython 3.8 Windows x86

matid-2.1.4-cp38-cp38-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

matid-2.1.4-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.4-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.4-cp38-cp38-macosx_11_0_arm64.whl (278.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

matid-2.1.4-cp38-cp38-macosx_10_9_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4.tar.gz
Algorithm Hash digest
SHA256 7b6c8e023bd91b1f5eba3bae7a1aec7526ed621fc4a585406d69226146cf5f9d
MD5 ff2046d6617673ab644c15588bcd209b
BLAKE2b-256 13e570781431fd4c0c5e0b7b4faedb13de61bb20159642dfbb2f41a8f93cd2cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 84b5ea300c7364d11225f220a7836f38e20d33df4db37c59022697d2e8b28c4a
MD5 d087aaf40b94fa229d42e571ad114573
BLAKE2b-256 15c608064b68f1a10348ff54d645911984cef297173dd2cd962bff6952f4b7c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ca9951ffac607e91455a117f2ba2339ba5c0ee45a8242a783da3342d0df7770e
MD5 26ac2ef48f742723493232f74b617ca4
BLAKE2b-256 6966439ce709c9650fd23e0a64783fddcdf691ca8e5fb4c96a12123286952443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38f449b6a83b0c3e0b77a6518a828e5cdad13fea50d29f022d134d782d513cd3
MD5 50bf5eeb6eb37159881fcc0fdfbf2ee9
BLAKE2b-256 924818a1e91028481937fbf3b0ef8ac75471fc922d5a70f5d421735dd1ca067a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e504ad452b9df866a75632f0aa2517417729fc19517e9b96c7961ec80e6ff750
MD5 c5e7c78b611717bf14dfc195b7516cff
BLAKE2b-256 80e8f4a46e258603e43f57f8c5ace8a97964132c311e107870d4e92474bb7106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0fc07472f1bc9a4b8587f046140a2f30e0d18ee3f3ecfa8acdfb101fe37b000
MD5 74927ad5b3d1b6c193c3835efb2f8041
BLAKE2b-256 7f5a6eeb8b2e3ab98738ca345384bcbc6a1d0913fc439e7d17de6b7e5a3508fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9a74e4e64907051b36fb4441151eaaf21e8f8604bda210abc2e72b49efaff57
MD5 6d8eadb4d9f0cb05bac8598288561ab4
BLAKE2b-256 5e109fd836e8ee9143f22f6549772a1e0961c3fab8911be65d089e6f2c4d11d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55cc00921daac066cabd4201e7705d8286c36b9f32d1db6312a72dd7ec4f01b1
MD5 ffbb9a2168bf018f79c688262f850fc4
BLAKE2b-256 c7bf8b7eac5f2d2df758905cb6a308c38e1e6d8f69f170dd574c47cd286bd04c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66cc6ef175ce317591046b984952384e6bc4a71acd26114051ddd6b20b7dcf1a
MD5 22a99a98a4feadeef55323b5cb547f78
BLAKE2b-256 b913d9391b22f61b3aaad701528c62426f983b680ac6ebd2bd5b5f5bdd387273

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fb7d223104a2c99b74bc7c4eeb5a239252500219c980ab7bb77d9da941ecb626
MD5 d0f7210fbce0bec18a832a3aba34c9b7
BLAKE2b-256 532e05324212561d1b0bbc5e503a5ba7c08da5fcf21a7b49a5220477bb35c883

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fe903d04f0960f33c5025392f1443ff8fe1a51f7667b24975b9dec7ee5ade333
MD5 dd76c9a02917160c18006e7d7b0e7b03
BLAKE2b-256 d53db6d71f69c5f8afe0e9381486e2228915b4989bc41da76801b490dba4574b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bc265458be82ffc71a7a8a2c945be60483b64f59163457198e891d499582a52
MD5 152e0dbe1ada1942015c178cc985a524
BLAKE2b-256 17c5b000e7524e067db2ec15f35a04702a4a7519fe778db75f851178df1bb09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10eaac8a6b53d9dd3a3dab2a04e504ae65f7c1ade6d747eec7bcd9fd70eb8c1a
MD5 6a064718874b7a76088ca3b9559a7f3e
BLAKE2b-256 b3ccddc2a0a9c6d36fdccb502d9048b002c74f091887ac60c084e7ee081ae437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 096f8b09236ed364c8ec9cd6a0e2ddd1deaf758fb13e0566e166d9feb796d25f
MD5 b2ac3aae471cd9717f300c9496d2b08f
BLAKE2b-256 d55abf3dc7d4ba12736f08bbf4d913b4b2ffb2783272dc452c3d514d112c733d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 448121b80d78aa41d1a96a5cca93e95e8a8a778922e2d63ddd72f8a1f30b5db4
MD5 081c1aea0043da3bcd675d2a196b52a9
BLAKE2b-256 47fbc7db19ccf399fde948d9844736b6e6b5ce7617e6b90f9fb26124ac9ac2b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cba802bf34642c687209e1c9897a67dadebe3ced28d29b160b26e7087db491f
MD5 66205330d05d85b1547582e1ac53d9e5
BLAKE2b-256 63936654405067851d6dceca9efb8b89bc1326bd6d26e682007dbd424f7cf360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de06b9bdbb71b849a2382be9f2fdd8407c48c7ff0d533dfedd1e5e46353391fa
MD5 a839a3ca9a5d1563f045a8dbafdb1456
BLAKE2b-256 c10d14532dd9beac07d44ed52b8ac80ba009f34d5496c139ef667f3ebba06abe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13f8ba440865068fa1846606a02ba983f9129e20516edcfed9b8c9fa565fdc62
MD5 7c92b2019e98beea4fe392a6c28a5e9f
BLAKE2b-256 318c4f4903d9a563714221458d3340bd0a497a852eaf097049cc9305c14fc545

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4cb417b1cd89351ea4944a6283cd423069cf12a8ab6ca09c2d5e102e8f069afe
MD5 c7b221db4169dba0850ceee286cf2d4b
BLAKE2b-256 63d051c283736ee26d20e975aa29f8b8c78c3c9adcd12bf1a6851904827cf99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a87685154c7d0482a115c617eec72bd7e20d67d20fef6514dc7c2887e45272f9
MD5 630eb68af041ba3cdbb0d18623ef31d3
BLAKE2b-256 60278b15689eddc4805bc1e3ebd22731dc93cde0266086abde46f56ee9a20224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acb79894a54f1425fd066e274e87fa61f50dfa85e0ccf108668fc33f25593540
MD5 925e174487d3b60e7849c8b6e3065d3f
BLAKE2b-256 86b952a6ae199f3d2ebc088190ce9261522284925f8bf0b8ceab272499c75b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 382ce7f7a08d8fb3f825a07760f58660e18ce99663d6b746627d9054b0eb68e9
MD5 903511b0778f18ef72caf0ba16946ef8
BLAKE2b-256 08b09cac607f019d7d0e01dd7e1eef682cd542f15efb8df5e27ae49bc020aa30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b4719a6d3a888429ea4af88a85e0a53888093f985ecfbe8e0d2de8a5fcaea73
MD5 72c3fe0991b1b34a6b2815f2934a2f85
BLAKE2b-256 57fc17c74ba0c2913400aa7a29f4497cc3080d905280702b04d33ad0ac2a1eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05e20d2278ed814c5b26fba4b03bbe13effc3bf4de54eb9ed00be7fcb855cda6
MD5 6c17e42c86681dfe718e62663c778981
BLAKE2b-256 6f966cac03613100731c6c1103277c842f181ea9027b1d3dc0217970ff3af512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dca8797279ad23b5a12031e4ea1c81cee30fb5a975f0784b3d4cee7ca055de0
MD5 9977ce0048197976e0f9f3e986acdb9e
BLAKE2b-256 8fc2ca36c2f01adac6c0dd3285eb4d30f1b9a235379d1477fc7a9495bf41bbdb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 918edddb87fc6a635f6a084a495d0a11865cadb24e55259bec7373312e0d677d
MD5 921b406ef073183397f8f8bc807d7e34
BLAKE2b-256 413a888fb6b802060cca415a17fd6d189bb858c9c9d2e27ea3808d9e8aa1aed4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f4e08e9da51b00eb0d7000bb02c6e50647e53b72fc31c2acee88da1f70a8e434
MD5 6d6f1e5a9a9e9cd16c9c35d69f3b1efa
BLAKE2b-256 3b2b5655eba81e8798053d11aaa73e7f89d7ab94f7dbca5f7564c8a043249742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb6cfd9d3474fb2a2bfabb624dd93ff9776d335f23658f5be5e293eb4b66d64a
MD5 55d0ac283421fd2f5ba2b5a865742742
BLAKE2b-256 cbb621acdca4dbd4a061f724c74688d27cbd002e141ba6f7acca9bde9d7bd37e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e1be705e5b06f2355ba589d0503de389c516aa332c7ae015b6110e5743a85e9
MD5 c2551cba94d7f05f19f412252a6e92f3
BLAKE2b-256 2c633457a305856387b20e61a5d5745f7dc3d6418293b5bb4e86060d1bc22772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6366ddbb0f638767326190666f1b69ddd3f42708090365b07d0fe6541583231
MD5 3a589624fc4ec8ea51ae1ad42c4e8688
BLAKE2b-256 abc2921017394bdb26b03c9164b8f7ca85ef5479bf4d66d6e9a9cc394988b061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a064dfbb6bce7e2bd268e3668ecab0325ec5f89fc91aa4593346063c32ad74ac
MD5 b78f0ef76f84ef0ae1e7e8e176abed8b
BLAKE2b-256 6873e80b076cd2b71bcfe9e3f32a6096d07bed8df1e564db66f54732ea1a8fcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0827b2bcd880a884888d153e448d19f44da42bba4609bfd722a32c8cdf9e6665
MD5 d4372d44b3700acf6bc560ce525e48bb
BLAKE2b-256 0826faa61e492df418135a3ef79cbb2d3323df35fc2b1a8a5a4ab447e6abbf35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27960221c5e33b05ac5bb62c5e4ceef4c471ccbe802f88f3b41bd895d4e85b2c
MD5 0b21c349b7639d6258217c2646323000
BLAKE2b-256 6f970249715b205d354a0223c943c583b57c0c15955f69f8ec5ba4c79d53bb8e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cb39e9109d7f6bffefeefbf9c2676b932002e068e8bc5ba86caa8308a4e0be5c
MD5 11edee71708b0d6cda6bbe6159bdd27a
BLAKE2b-256 84f4ca0d46dd4a10a257e7aa645955129c9fa8a68ac17d0c269b407f7e3457aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3adc0b71c9d8040030e4c0fda0e4eac5481392291b946835ee568a866a89f2c8
MD5 d01dbdaa2e4654ce8f25963cf7f7d4fa
BLAKE2b-256 803469cc3f7d332bb092d7dba5ffe1d7777f485bdbade51e2c9861f34e9ec2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 691b494a2b2609054caa24b16ce5cae86920816e333c0b5cd7cdd92d1a628b5f
MD5 a0ae203ff712fb93d8a9e38c20e07b32
BLAKE2b-256 9fc3421a79dda052da08a88d1b1b197425d7a9ed9f245e22fadbaed7882aa962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 baa3d548c18aab4ccd3dfa195b11d64d5f3cde9fdef414e35b119951188bf90e
MD5 d26c15304ac8f742f745a59804bc9ed5
BLAKE2b-256 68effac73d03af789acdc1490e3b5b8d433596a589d7f74480b9799233e01fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e1d353925201e12892013d717def914fc4eafd58471993ca6f57eab57559ac4
MD5 68ac0f5d8018ee5e280d4ec4695d8079
BLAKE2b-256 4a01a0d8fe102e755ebcb2fb83f4b9be4ae86ce9c08ff457ad0a5620a107fa58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9645523467e098a3c131e8013d2bbd45a466596cbe2d2f98532d61522c117ddd
MD5 a4b73a3fc17f66d1b2bb86c889cbdc53
BLAKE2b-256 052d19f7ae7c46edfbc93f1fe55c33bc7e6facabe152eb973cd4cc43b8e4f4cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00b5fa89aaa3d7a6884b0dcf0574a922df5986e692f29e2a762aa254cdf3853a
MD5 750452192b3764a0d2c12037ccbfcb92
BLAKE2b-256 ac5df6b86299b688e2d750cadae389d70dd955ef0e89e10a1ff093c655097047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24c8e4693ff722763defa65982f7983dd9d35034016d327d02a0a9482a49b3ad
MD5 be9d045aaf950050c177e61283b1f507
BLAKE2b-256 a25f6dc60367eb97eff298d319f57ae63d9d74e9a8c6d09127a3eda66469737a

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