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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

matid-2.1.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (278.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

matid-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

matid-2.1.3-cp311-cp311-win32.whl (252.3 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

matid-2.1.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (280.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

matid-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl (287.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

matid-2.1.3-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.3-cp310-cp310-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

matid-2.1.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (278.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

matid-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

matid-2.1.3-cp39-cp39-win_amd64.whl (261.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

matid-2.1.3-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.3-cp39-cp39-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

matid-2.1.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (278.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

matid-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

matid-2.1.3-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.3-cp38-cp38-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

matid-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: matid-2.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 6d743e632b408b141e3e082a4cf9d4f43b58fcc369b2718eae34c911fa0bdfbb
MD5 27a91dc6917e5c157aa8b6f52dae0b2b
BLAKE2b-256 7ea8f9d1d977f91505d107caa638f7ff27372c63f884335ba3d59a5d402437f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a3d7bab755a6f7e670797f7d7fd847e591437206fa5d1c74e0145f9a243f8a6d
MD5 443279c88462c0210b7025c60dad4e11
BLAKE2b-256 a4844ed7dd40fea078bcda19b9cf03567475169d8c4381e146afeea4b313d02d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2fd29c3abc50dc3ba9ed554f8a196a802b956777df467c28a2aa45a4e24ae44b
MD5 d6fb143d807ad7fb871959ee9a9fca11
BLAKE2b-256 3e5a43d70cc0884f897296372f7927a7f7467980dbe5afca3c12db4e4de95492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2d5c48e955473cc06d84b18928dc0eec8274e30383a85a3936583ac128e82e2
MD5 a2f9ff369b9513994059969b5abbb492
BLAKE2b-256 e11f50256849c0d1722ea39bde41b844b02f811f313ae9505f6cc4f88a0744fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd1291731e58e4c1463b8d9953ead0c9c7955f489f3f6bd0849191a317a21b8a
MD5 e22c78a2fb8ae16f1f84a014b6402090
BLAKE2b-256 36e721e9b6b82759d1b65247f021675abb8174519d7df5a03b96245365658e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf18f7da8cb25cde5c2ca74f1c6f88a32cdb18237ef82d517a511ce53cd039b8
MD5 fa249e11223ae26d812db25a64224b79
BLAKE2b-256 5c53737beadc6562d72aca0045e5814e89701f5f4e0fb04628aa25273ecf70ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb9b9e54b00dc82939d9b7ccbaccbd39cbe2c3aa9c7d84aa434da20034a40a74
MD5 8ef268e8cf2ace5040dd48b9b9e59faf
BLAKE2b-256 99f9707c8f2c39a2a5eb0022b2188a60a0424cecbf4d13393a2801ffa262f52a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d43f1e966d1ed6edd9ba7ac65d26e02a1b9cbe616392e9c9d05efbc89ce0eda
MD5 5a6edeb31af283e125fe5ebb9bb5b0a3
BLAKE2b-256 9e8f2c7d79bc3b81f657faf1acc444b13d86acf3f2e4c698e8c23f82bdb26b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14f16ee547b076af02e676cbdcac7aff45f7a5b1b09524854ba4e1959621b5ba
MD5 389cf8ad2de74445e88c24a93aadd918
BLAKE2b-256 acf048513ec27405096fc9958473288262664778294147e31c084c315df92076

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b94f3f16d282fc3b7b5ec77b47e05088a9e5df0c08d246ddea893334b11c4db
MD5 d6d3795b1b3049994c5e79a4bd529a63
BLAKE2b-256 b77b47418dd1ee912c179b3fad350cd75748baaa923f94859e8c7b6d2cc8de97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 252.3 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 15ac6201c92abe1eb05b05c94cc3fc3a4700999e93286197dc503275c17ed637
MD5 fa3a40bc6d2d2c1a3f49ed1292267318
BLAKE2b-256 609bcf1a67d48201f416aed11aa48bffa15847e66596aff106c8f9241a10d428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f110d3d158a0b1e7f81f1fe8c3b95afe893fb834d90db18015bf00826438297
MD5 954dc370c0f13d417943a893573e296c
BLAKE2b-256 f68b2dc420755b49b5d0bb672ada8418d10631e32493b06ebb3f3f12853896ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6823861cb606554b0eb971cff134a5d2864931cdb59984c75772069290ae8856
MD5 af178cf159d6fa4948018316e6637b32
BLAKE2b-256 874c6438ed393696f7da1c2aa17e65baacb67d273d2a1f42fcc6d22d58494199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a453cbbac7433f6adbdb89fba219167fe716e85cdc2024cb8d3f8129a934c9f
MD5 4c7a6217a0b9c2382a82efd870166106
BLAKE2b-256 0ba603f39e456eb0574df6bbb1407cedd8ad1e18b77bad687f39b7be94311acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a693d531da6fc1e27a0e0ffbb6fec32bb3e5a27424ac2d098fedebd1533d6fdd
MD5 b08a2255d628d17b920012bf61f9f21a
BLAKE2b-256 9f968ad08a0aea9f1851c641b11869b6b95d3b5afae24da8a355e1641001d430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 210a12770a6ff760fbec7d73c0cfe3107c5758cf0e5099f6fcfcf764abddc5c8
MD5 d981f857f862b1c6471b82cbd77279b8
BLAKE2b-256 9c06cf23b3d6bfce7bc5ad0fb2646907a95729bca96228166a694456414593b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 233017cfac6ffd929eeffd967e4b78881ba697cd541ccab1cd0cd9226917d784
MD5 b40718bec90f16c10b7a9c4aead4ef84
BLAKE2b-256 dd9c2648f47b8144bf79da110f8d1c9cfcd928b0f0877991fcbd076283534f32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f486df36048f39e49484b72fe74c76ba64ef5c950b1859fbf239aeadaf953ede
MD5 1b060205a516e2fa1281965944534d5a
BLAKE2b-256 23fc7fd22960ea97f680e7e26dc648f934cf2f66b78d8c856c99aba2d1b000c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 62096631b722416f728cfe2df16d78a8ad8c47f705143f263008572b2db38a1e
MD5 f2fc036b44bc521d3b0ed22eae8e63d5
BLAKE2b-256 48d4f10db3c81a75c543b57f95b53b3e4aaf62ac16341e0d690d1c3b8e1d8d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bb6aaedb6ab4db8dd81a3a37f55d59cfe1edbf47de1aaad655647759f13bcc3
MD5 369e5d9e3ffb6b24cc0df1bfafdd7318
BLAKE2b-256 1d9e075d9346edd2e644e941b085a5538ba7e35502b04514c1ce36e9d62e8c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b59dafc5b1712924b7999ee019b787c179277b98e00116c068184e2d99342db4
MD5 f4a3c911982dbf411b7e88a9ae71fd9d
BLAKE2b-256 f08352d52b7c6b5fb03e3d3958fe9966e1d94c4ab9b323f07936d1f6b13eba2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3687b8eea133564f2577bda647463be19b2b712b5eda3ff31009f0e18c32222
MD5 6d2b5774d4967f21eb9169443a1428d1
BLAKE2b-256 259261e2958dedf47edb8aebf80be6fc52c3ebfab2eb98e559e413344cf0eb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c924c06a44b9f1cb67699698dbae4a49cbd6a343186f10a5e0296de689df2f7d
MD5 2405d1d70c1666e1c2a6f69bfc1d08c4
BLAKE2b-256 953eab3d431f285f8f471adb8f0558531b54b8309b0ffd3d792c63f6c9fb8336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32ec8c0801206ae36d7801c80a43ee6fe98aa7904cfee8aa753c64e1ab7f0333
MD5 a8654597e156b85c1b1a942e1f1eddd2
BLAKE2b-256 6525536f8af3350814ce8185c258cdd9b85563358f751e59ac7282ab8ba79482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3b55bae92795dfa91328574cfb5b94b619bffd319d236ecd923fd9650b33d6e
MD5 a86b2e4f73879891670b9711a5ffa6de
BLAKE2b-256 093120348958d5a4a361c013a4551b6746563efe500a82db5c42c51ae7d7dc56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 261.1 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 887d52e1129514e180f5f55fda96d36e47a6b09538dca261ccdcae1d8a3cd320
MD5 c0cdae87d02717a07429e8319442577c
BLAKE2b-256 50563a82b402902945e97072fa92bc22ffd115f669d26d3934ac64570e6920f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 633f90f228d3c58c127fd6d629a74255bf76dc6ba979bea27a01cf74b0313156
MD5 1b108ac0d4065883af023d0bfec2b6c7
BLAKE2b-256 23e575394943a775ef44078cc5890a7ffe76f172a255ee48d045a7aa017d28c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50816e2b51f27a1ecdc305aa66afe8975ee378623add3bd962ebfcb5a1aecf73
MD5 1078b86fbc0a5fa99f8b09805f890aaf
BLAKE2b-256 e4215464a8e2cc72db5a9545461d0b29b5b4b66295a221e8696406946a9988a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e1d8b1e84353d7e8dd1ed150d2a5b4eec7c18fa481acd08d8d3f5e2f26858a9
MD5 177241e897793cb45bf8fc20fc0147be
BLAKE2b-256 083c29cf74fa4076a5453b6a6b18c4495ed1e0bd67ea3f508b5236349e051be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18a14316fa491aebb35868685f296646bd36117bc84d36ba8a0b3e1dbd94f953
MD5 ab4bd50a20ecca872bf54bc2c2ee82b7
BLAKE2b-256 8398aeb57d0213f69947e43d3dc8939390e76c95042b4041e6c180636bc2b077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4e9bc1fef459006504910b5f10ed10f4a41005a463fde3ab4466d887100bc49
MD5 869397a45db10b429c0e9c7c862c0ab6
BLAKE2b-256 3a9d3446187ef227dcf03a8e3a9f4dc8ca169718bb7c22e92a5ef48706155f08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6915bae35ef84847f20d1a4a0b4b0232a3898fa640e062e62d337229f7518d6a
MD5 df23c10dd2bd072b36faf136b9382ad2
BLAKE2b-256 f2905b7b3c01e35fd95b650fb2413d8f7a54df6c31b02946f7a1868121f62e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1e44abdb509867aa0b7b2128c68c26c0aed9cfcbc9c5e82dedf07f9edc6005b
MD5 ccefc3279f7153bd75d4403e3c5e5ae6
BLAKE2b-256 611f733cb035481160ae5f9b883586d267c57ddcebb2a1704060b93604227257

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5478f89922cc25066253bc91eeb009d3a11ea25fef3a3afe6381d29580f3f381
MD5 720edde2675a1fdd142f97eb65f5e40b
BLAKE2b-256 eaccd06bcfd1a2ac9d7a5fd7d191fcad1d8e8d26d105020d8e2af5e70032fda3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.3-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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a26e6fe14ad34180aa6782a00d9a5c3cbd41e94cb08443bad95c7c42c4789e16
MD5 af5a4c3fb0ba6e4296632fcac92d70cc
BLAKE2b-256 699db2ea7987a6b213d557a31ded2cd463c21ab798488925c8c871fd7cfae428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b25a864361506b13ca536a83b1570380c0e3c35327ac6464fd881aaba531eb7
MD5 e058d8e488e9afb4d06afa5f22ff62ea
BLAKE2b-256 6087d9eb42d9e695ec96a27320410380e777bfc1694d602fa4451134efb0062d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed22228b38b567677bf4c10f42c017996bdc46aaba794d2fcd96872603d41ee0
MD5 33520416b212c1f5a1ed00eac044e60b
BLAKE2b-256 a9a73af1b31d5602f752c3bd2f3dda9c81c9f3922691b2d856cb10b858806188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ee5142f888f486a0c44f8524890528ec03e1262de20160d41e0e6c5027cc7fa
MD5 01ce394f68fd7a73491780dc124374b9
BLAKE2b-256 4271be884618ee155970d8a244681d1201cc6027fe59e333a337bb8c32dc8184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f4f2b52def4fed196b7b9da29c25bec239d8420de2b8fb7742e69e9053ef460
MD5 adec5a9acec090fe094c46cace9f2f31
BLAKE2b-256 9aac5ff3d0e73b3ffe594d7007757bd8ca67d5132d73ab83c90c7120f52b96fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 351381f8cc3754ca04e76044aa0e678d76827880f4960e5010e4b6f543bc4d30
MD5 26a8f27a2a47d93a072cab6f59ef2cc8
BLAKE2b-256 209c5a3304550f45556b475fa465eb4b6c33bc8c57d2b7e24c9f55a44e74bb9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 973e9f95e00c588951b7f67e74a768797ce806051e3631a56a01d91b5961ad9a
MD5 1a156ad68e41fbb3b65f30d7ff2c17de
BLAKE2b-256 cb5b28590e0a693bab93fc8746d40313d714f995b4f05760dc10d48a85b615d3

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