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://fairmat-nfdi.github.io/matid/

You can find even more details in the following open-access 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/fairmat-nfdi/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.2.0.tar.gz (152.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

matid-2.2.0-cp314-cp314t-win_amd64.whl (478.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

matid-2.2.0-cp314-cp314t-win32.whl (462.4 kB view details)

Uploaded CPython 3.14tWindows x86

matid-2.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

matid-2.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

matid-2.2.0-cp314-cp314t-macosx_11_0_arm64.whl (297.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

matid-2.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (303.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

matid-2.2.0-cp314-cp314-win_amd64.whl (473.5 kB view details)

Uploaded CPython 3.14Windows x86-64

matid-2.2.0-cp314-cp314-win32.whl (457.7 kB view details)

Uploaded CPython 3.14Windows x86

matid-2.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

matid-2.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

matid-2.2.0-cp314-cp314-macosx_11_0_arm64.whl (291.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

matid-2.2.0-cp314-cp314-macosx_10_15_x86_64.whl (296.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

matid-2.2.0-cp313-cp313-win_amd64.whl (470.4 kB view details)

Uploaded CPython 3.13Windows x86-64

matid-2.2.0-cp313-cp313-win32.whl (455.6 kB view details)

Uploaded CPython 3.13Windows x86

matid-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

matid-2.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

matid-2.2.0-cp313-cp313-macosx_11_0_arm64.whl (290.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

matid-2.2.0-cp313-cp313-macosx_10_13_x86_64.whl (296.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

matid-2.2.0-cp312-cp312-win_amd64.whl (470.3 kB view details)

Uploaded CPython 3.12Windows x86-64

matid-2.2.0-cp312-cp312-win32.whl (455.6 kB view details)

Uploaded CPython 3.12Windows x86

matid-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

matid-2.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

matid-2.2.0-cp312-cp312-macosx_11_0_arm64.whl (290.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

matid-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl (296.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

matid-2.2.0-cp311-cp311-win_amd64.whl (469.5 kB view details)

Uploaded CPython 3.11Windows x86-64

matid-2.2.0-cp311-cp311-win32.whl (455.5 kB view details)

Uploaded CPython 3.11Windows x86

matid-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

matid-2.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

matid-2.2.0-cp311-cp311-macosx_11_0_arm64.whl (291.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

matid-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl (296.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

matid-2.2.0-cp310-cp310-win_amd64.whl (469.0 kB view details)

Uploaded CPython 3.10Windows x86-64

matid-2.2.0-cp310-cp310-win32.whl (453.7 kB view details)

Uploaded CPython 3.10Windows x86

matid-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

matid-2.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

matid-2.2.0-cp310-cp310-macosx_11_0_arm64.whl (290.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

matid-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl (295.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

matid-2.2.0-cp39-cp39-win_amd64.whl (469.7 kB view details)

Uploaded CPython 3.9Windows x86-64

matid-2.2.0-cp39-cp39-win32.whl (454.5 kB view details)

Uploaded CPython 3.9Windows x86

matid-2.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

matid-2.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

matid-2.2.0-cp39-cp39-macosx_11_0_arm64.whl (291.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

matid-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl (295.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: matid-2.2.0.tar.gz
  • Upload date:
  • Size: 152.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0.tar.gz
Algorithm Hash digest
SHA256 df2c65317cb42cfa3f05b4f5bb2eea8af9bd9a105a021fba4aa0c3eaf6c2a98b
MD5 6a61745a2062ca19f5b6f8c3c22ff0cc
BLAKE2b-256 bfd22262baa5fff372f542ed3ecde677b6422b58df4f18fe05cb74622b007ded

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: matid-2.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 478.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7a3b1a389768eaf052ea28fd3c948709059938ca95ca3b46720c02eee841444d
MD5 c97a3a99efd73791710333e7f6cb471d
BLAKE2b-256 c4ebf773cde1cf7c8368c3cb032e4511b6e49a2c9dd7fd4305eb64c0649d7817

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: matid-2.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 462.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f2ee4b8f543a3e463ba656a82c770880c26061a5bf62c3b3288204c69d3383b5
MD5 f1f5177e8c11b7716a1a2f16aea2363e
BLAKE2b-256 257317615aeb9e5d055dd0cccf6f9b28343d7f3cb55c73bf4198bc91e4c4173b

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66363896b60ab4ed761242965fecab7addd43a6c1e6d7be2886572b0300511b2
MD5 bb395a341ac6b4fca5bde17ed8cf75ba
BLAKE2b-256 090335ca9e0dfb9a23f19f1064aff30bdc250ad73859dae77e501147e2f98850

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13e93a567320073e7ba950b1004ddc8ff094af22f42806a6aa4aabff7dcdafc0
MD5 45a9b3ed3f28cb80d70d8f6e26a5e201
BLAKE2b-256 759e2b4e3fef1459290576e781ebd384948f026f1fd87be68f37035c371a44e6

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9ba6616b488d008732dc996c81427bb6ebb7f9458e194e8fae36f2808b7d1dd
MD5 84485e62e6359d00d640bb6600cc7ad9
BLAKE2b-256 6bcaf4bcf4fdda677b8ee7b267e5d5edcb989a95944fa1e5e21ab896ddfb3fbc

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b6e3651570917fbfa189bc5f82d2989afbddecc865a4199853901c42b8cc9cfe
MD5 58e4fad9d4592cb7cd707025b44efccd
BLAKE2b-256 a69b790f0f1215efe1d497bcd1ec7fcaab1a72c73aea452d42efa87b71cad7aa

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: matid-2.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 473.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 61578c98d08adc01d3a4ac7bbf9efaf4af63c429df5c7284e6fe957003dbdd6e
MD5 16d5d2918bc548dc083ea77820a9388f
BLAKE2b-256 49d1ffc5140628a6f5e9f68f9569f62417dde4a0b2d873f78d4a36f40c7890db

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: matid-2.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 457.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5036e99975f5e71071bd1d006b3aee9c23af9d2f65488d1fbfd8bc72d46a9c11
MD5 b018750514e800402898e18b4173310a
BLAKE2b-256 1d3649ad7463840aa5b41c2dd26808daea09bdd3c6892e819c02a3efffa3202d

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a603c403c92fb2675c7ee3acd71e54f13dfcc4aa64d8fce25ed1d2950e0046b
MD5 6a35c00cec496c8a7e167c9da77c6618
BLAKE2b-256 a781b57b88e6e17d363be0d982a8764cd07dcdb9bbcb1c093f7585ed209f03e9

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 332aa368112840e0153f2b1b15cbba47b2ea3c23998866f39e7395584e2b73b6
MD5 032c6b74b2822b485acabac8ef2be8c3
BLAKE2b-256 91901b7a511e95c36faef96d66b59ffd00e7be5642f0d109df248d66b1238a7b

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c65aeec35ca5f126c2b19d35b1b5037cfe21d34ff2613ea8ea44675f1b817ce8
MD5 b67b0a036c059c9f04fc9c451f9aeba8
BLAKE2b-256 f42c88aaa4a87008e2aa834f361e3bf6d62bbd2a95fe63653650a301f2be25fd

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1d1a77cd07f07e132eef24faa2b12d62243bf9ddf5eae27146f33fbbda3121a
MD5 8b8b9bcefc45cfe01273adc291b3297b
BLAKE2b-256 69d74dce50042a8e257312d2054e40742478c3290f9e1b54adafb516677ef6fb

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: matid-2.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 470.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e9ddce1fb53fe3223170baf7ed23d1e15097346d50901d90b380837c62d5f06
MD5 f2f479d3c677845512b330fc6ca4dddd
BLAKE2b-256 f4389230f5d5c6fec922f254f47c99e0e47591a486a01835e0d3a07c7ba5addb

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: matid-2.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 455.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5e9fe56181990a56e9948b9ae18c30491880938a00fc4f522256e9019d25c4b5
MD5 2dd98a08f1c90e414586591069b2a4f2
BLAKE2b-256 4db721cf701f04a9b0068df999c1814c1d791564cf7e79600d628e273222af1a

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3b0525acb2ff58c0edabd4c32ebf28f434661c7efed81a35b56bc481883226b
MD5 7dbd95d2e412a77341ae9420ac1b80ed
BLAKE2b-256 35d99b70145ee185310b46035aa367a0b2ea816272acbd451a71622d25784329

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 058569133534f575c624bd14d30f12de43257d4d717f34e343a6d563c6a101fc
MD5 76de023310d382acf761f63f549e079b
BLAKE2b-256 778811cf52cc2c58f7df95c82931b6103a1d381b667a4cddf411bc391f3bc68e

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2adb90ea02f9436a0f356ca0cf4d026ed8fd324c18f66dd9736c99a021b1d51
MD5 445cfbb5fca3129be120d09afb653e1b
BLAKE2b-256 80d0444ccbc61462717fead800841cd69a654a535f5c38a0c6c0929123e1efac

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 13ac3526a307e195b7ff1ceab99782a6a0fa10b55d780af0bdc5ec5779ec1c8f
MD5 a907225071c1b86654ea798a555e1cb9
BLAKE2b-256 2ace334e398e2861a7163f02a5b6353e28a449ecf7bf54af9bba522a2a7dfee4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 470.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c47aff3b3ff01d8ad508ccd54e80d90c6a46c67a71f3338da37d37cb0bcf215a
MD5 48a9e7540586757f4689062afd60d7b2
BLAKE2b-256 d15f0ccafa0334817e8e98dd0959081a4d0210dac447ed5c525c9b5f73d27654

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 455.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6757004bf2faf2bd646d96ed89fcdf535a2116ad9c64145d040c2f72df86584b
MD5 62ae6d7b3033ddc6cf2b46b36dc4335b
BLAKE2b-256 9ee472d111101bb6155d7b3d823600a745676d5ace49943485885e0fae8034f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3d17d780f18ca6d220efa13f7afc9767eb84d09e1cbf6ef4f08af8ef48f0e06
MD5 407a76c7cc46770c7aed9d6a32530ec2
BLAKE2b-256 e8fd62a9f48e0eae2e5e1b1d0bb222e027a10a159d5f69dc5918e4a82f0ccaca

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2c607f5532b4672eb0e8f65fe06e78812fdf684417c8eaa128178a6bab630a3
MD5 a054eebd59a59d57fad7f362b6e4044c
BLAKE2b-256 6e41874440210e7755eac1b835b9efb3c301c67128f545f35da669a5b7c8f51e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebcc14401a4b25b61a10746ef6506501ab2424c6ebc759cc4a266eae7acfd191
MD5 4bd86705e203215300a3bff786dac8e8
BLAKE2b-256 6258daf130569e20b6fdb2759f599ae1ed9656b8eb71e010fa328c3a2e7c3b71

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 52edeff152886736cd7a4d10b9a6644030e1945911c3ef08974723b1d4295ebe
MD5 1f04622e931ab95a7162c4d213aca755
BLAKE2b-256 a50f892b9443a321eb2ebadc22e78d86b467c69c0d68256cbbdb711bb2e2dfd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 469.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b2f50916c421d9509fb4df8e0626561ae3dea9b6d969b140e992b3ad70761e7
MD5 6c14a6a4e7542c7ccd5ba732c2a22d96
BLAKE2b-256 57343f372658d46a80f55f5a6012718672e9e1e4dd9b4ad90c7931544377b50c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 455.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 798a3d8387fbd8abd3294543a6fb4156ff7840afc5f559dd238466729729028e
MD5 4eefd4e9db8c1d420ea0147ac26c426b
BLAKE2b-256 e35a2490bb8e6cd9c3d2714ef2262000988749861dc6ed7fe7207d8022597264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a5cc3affff9639cc2ce115ddb5d78493c65ba630c74cadbf874beae19f0c861
MD5 d24fd586d38713f561cdbc503f618073
BLAKE2b-256 3d107ec66e83c651024ef4fbdc8e7c654ca2ccf8d276a8e1beaae8d683aa542a

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 610d6844d04577394afc40927caf4b1aa3cf5328b0f2f4302faefecd9793033c
MD5 ea954962af0aab97ab4e4e736b58ca28
BLAKE2b-256 b20a15509464acd99356301b8bb53f0e3113f3ebe2b07dda0813b94d99f64fa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ec8b51e621d870acb59e45375e19ecf6479c88e0e2512049abd9fd988be1577
MD5 e1295c219da522ac630ab11588b5dbba
BLAKE2b-256 aeb57944bceb2b39f6ee81179a4114a096c7bbee568ecc6349f0c4e6e0c790b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eaea2d04dffe5d9b6c41f09cbbf6898ec1b5f71d0a3e5668a2f9e4773bc81cb8
MD5 76a084ad3ccaee6c3cb0e40b86c435b2
BLAKE2b-256 01ec5eb03776d750286ba139a4cbf4a4e0892ae71e7a85ec7ae7b56fe0c1b952

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 469.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 047994003ef1062e4634ecdfbfd70aac43b8d229002579b5e2b88e79b9002f57
MD5 13c4e2e6762dd64988f5d61432bff732
BLAKE2b-256 21346551233dd9bbe72c5e98e66e0fd825ab193c14dd235c308dbd04a47adb5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 453.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5194ed0a5b34d166edf84db916c317d5508a91c3c497ac8f3403545596f49732
MD5 52c73a58a6e19f74650620e6f707431a
BLAKE2b-256 cfb3c165cc86c591c15720ca9a9711d1002228a77e4aab34b5a5714e7f6356d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 392c6a318487f8e25761d9a74efe6d390d88dc269011312fe265d7e95e122a78
MD5 4edd420ae7c91f0c7a9259a7ca82116a
BLAKE2b-256 9f3a229ea4d1b6a6417e7dee43bf1ab9ed3e21c9f18e061c666d496291b9581f

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b26bbad8e9a890dbd9fcf23a9411d442837de9320ecb03a26056513a0213ffb2
MD5 c3f0a7b65359c47514ce84be15002145
BLAKE2b-256 ea376eae99da2bac1cc3d6de5db8c46ab3fa122966f85850a76478b6aac68619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0060046c244f015767c7120d5df8474da2208a21a2a200ba1cd6690a83f5acc5
MD5 1b3faefc1f311d4c1809c479c01b5b58
BLAKE2b-256 4f8aa6da6e53a201916284bfaf4c9a0dd086a22c3ba1b9d5b3d883d1a90634eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f3eb7c36d42d296f55d343cba650d7aac97c98b1275228d1a267f3920c3fd97
MD5 f163ad5447ee88ad41a7931669dd5356
BLAKE2b-256 5cf4104fa830689ca978911b5e67adf8ccd437f855fb692c0b0afcb391367a5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 469.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c8b48c7e27d24c33bd3b6b2a3f4222b942736a471a3fd5fa497b12790152c605
MD5 0805e8dd56dee4949076d670ef92f542
BLAKE2b-256 07f697fd292433ebc6aa284af4297d2f0a114560346a732b1a188ba1df68d994

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 454.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3e1bfc8ed8136bf0a9b8d86506a26d49867d57385bdede67f53e507341a88cd6
MD5 df15fcd0a381665d42ecc9939f5c57df
BLAKE2b-256 d24092918be163cbc4b7c7e5206bb2da8c32132e7f2e7b1124f277543cf1fa5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65ef13a41cbc752f48c835b706c4a185a05218dd153e56f3ca7ac85d8535d42a
MD5 43417db0a37f5a05f7de0b6be3560f06
BLAKE2b-256 e7f0860b2a835ae3c584b2cc0e9ebcc9304582a4f15e855d0b0143e368e85d57

See more details on using hashes here.

File details

Details for the file matid-2.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for matid-2.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d045c779693591524459ff5d0511f345132b8ba6939fc34240d4cce6f1c46be5
MD5 4f6e7df5ad6e05c11d5e2b40fab1bacf
BLAKE2b-256 321cc63b75a4ed346f38059e4a689865b1701198220e4a80a767677084d07b40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 291.2 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f763562f5e660fc4c5ffc21d27f3b7dc3ded5053377da93510472e4649473309
MD5 5e56f22218c085a2db1d67825b72fa23
BLAKE2b-256 2f669ba12114b164da3a8edbf0683ace2da2339e5711d786a9561a1bc00d8971

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 295.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d32056b5e7e4e00afa60e65039d3a2d4ebe0427bb24dc198bbf3aa9121a676e
MD5 0e8cd28ac285e67e41f7ad551e76c184
BLAKE2b-256 e8c200da3581d46af43334559a3e3d96ee06a519036cae497f286a19e1058a62

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