MatID is a Python package for identifying and analyzing atomistic systems based on their structure.
Project description
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file matid-2.1.2.tar.gz
.
File metadata
- Download URL: matid-2.1.2.tar.gz
- Upload date:
- Size: 149.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3bb3b4bc47e03705d2466126ce0dda6e02903203f0564e32b67012ece310091 |
|
MD5 | 4e3654ebdd210d29fde02343d7888eef |
|
BLAKE2b-256 | f5e2dc0c8c61804186f5b85bc3cd280c0d5470df5cde31d6b338022e756d5afd |
File details
Details for the file matid-2.1.2-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: matid-2.1.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 261.0 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d29aa20bca849ed4b8657cde7a6b31fae059fc1565849c0ab2b582f7ae6d8cf |
|
MD5 | e9b722d035a2fba208d413b7277a3431 |
|
BLAKE2b-256 | eaf9d95e1cbf4d2107ca048b37083fd4fcc5bd34210bf75530932320e5e333f3 |
File details
Details for the file matid-2.1.2-cp312-cp312-win32.whl
.
File metadata
- Download URL: matid-2.1.2-cp312-cp312-win32.whl
- Upload date:
- Size: 250.6 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83f5263dc4e12d3b09248b296d5a786d653c3b8a5479fd5a91275cf8ee99d89f |
|
MD5 | aab5519acaac62aa9234f51ec548c607 |
|
BLAKE2b-256 | fc498feb8361f7be798ed6f90ae8e0073f83b32db39e3497ef4190716d311065 |
File details
Details for the file matid-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 053b3ee29799061f3f85901db402f8b6eaab0347156c4166de8a6cae774ad1f3 |
|
MD5 | ad5fb0d9130270af4646fb2815756ffa |
|
BLAKE2b-256 | f9d2fce0255998ce1c7e438e3a2729d4a55c887d5279db401d61095a11e82a76 |
File details
Details for the file matid-2.1.2-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60f524b76a7de90902d42c9ad7be80619794ac7e3fed386d9e7436e6f37ffb20 |
|
MD5 | a5ac62d5d29d40962b65d8ebf610cc27 |
|
BLAKE2b-256 | 1370d74ec518a36ce79667160f3e05af681c9432da691f6568ee9618ec929680 |
File details
Details for the file matid-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b144a8883b7c8533d59348176a35808455d507fa9752a24ae1cf1f3dcb72d2a8 |
|
MD5 | 1d8d1a93d5da838a2d1fe7570af3b454 |
|
BLAKE2b-256 | 07dc8e5f986f21265f08ab11a8303957a7961fffaf71ba559672912fc1acf466 |
File details
Details for the file matid-2.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18bda4380a7e096f8486a9ffe65d77fe01a7a53f75c1c6a21d2b384de79a578d |
|
MD5 | 8b4e63b6a4308387019cdf191bdbb086 |
|
BLAKE2b-256 | a6fe142372d8145fe2f0fe162755cecd0000b30ed33f49cb0d9c2173aa5a82f3 |
File details
Details for the file matid-2.1.2-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: matid-2.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 926ac49455dcb608eb07a14a14b7401661a5c5c025a917acddfb7fa2b194fccf |
|
MD5 | 46bbdb0b81a0faee159ecc8f80371681 |
|
BLAKE2b-256 | ab3a46ba510c2e101d79e4d0334902ddd9998db02f6bd324227a7c3951a70971 |
File details
Details for the file matid-2.1.2-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 283.1 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29d89693059d5c9bee8001308f9f3f40215dd33a45ae6ce3d56462a98adf1c73 |
|
MD5 | 23d6710416f54cd6c4818b1b45767b83 |
|
BLAKE2b-256 | 9ed44a379664b7308e19d5586ae4d61a73aa6417efdd8581eca213786a778701 |
File details
Details for the file matid-2.1.2-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: matid-2.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 261.4 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 601103c38f2d7238535db5b92f1a5f8fe49e2233637002fe69d544f314216831 |
|
MD5 | 9d1c5c11bb17acba72ec12cdd8924001 |
|
BLAKE2b-256 | 62f009fdb8c8d24778a03ca92eb1eb96f39dad502ae44194810156b979d97794 |
File details
Details for the file matid-2.1.2-cp311-cp311-win32.whl
.
File metadata
- Download URL: matid-2.1.2-cp311-cp311-win32.whl
- Upload date:
- Size: 251.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e6fcfe146970b270ee3b8ed55bc2cf28f3976eccfe684448871425f50a0adce |
|
MD5 | 65cb8f53e421a2409b92ea88233600dd |
|
BLAKE2b-256 | ec0a0a712756a47d0c83ad3bf60a18b9b5749061f09d230b4a8e19fd00e5ab1d |
File details
Details for the file matid-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40850c42b9f6b4bc56b265433b190c0ddc1bbcbaa659aa97bacab6df5263f823 |
|
MD5 | 31e95a5338cc4758c8214161e7554220 |
|
BLAKE2b-256 | 8a500e8951c8835361222e0b64036227ef7732c92592e9a7ca4777773be2ba1d |
File details
Details for the file matid-2.1.2-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02cb79b86c51b5f95964d93504d3c6a9f08d27e6b76cbd3d1905148aacc0ce5f |
|
MD5 | 676c5b26a2b64ed5e7e84ec260ef77d0 |
|
BLAKE2b-256 | 0f9cdc28565e404e64d679ecab3b0c5345eaa96f05e6dc829e3900414341647c |
File details
Details for the file matid-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2cf746bb992de37970b62fdeecce5caffeaab1376b0d7b6516af3b8cbce3815 |
|
MD5 | 41d2f1f079b3da5f035e798be9bb6c49 |
|
BLAKE2b-256 | 2813f2370c90da7b1a214a78a26ac8d09cd8190b6aa9862bde15906704544c78 |
File details
Details for the file matid-2.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90710968fd6c803d9562cd5e4b333b5a3b935554ae702df49eaf3f8d09cd419a |
|
MD5 | c441abc5b2cb4485e4306bcd63ebf6c2 |
|
BLAKE2b-256 | 6b6875c56102ee36b53e01ab9d01f881c9addbc35215ceffdc0332bb269ff38c |
File details
Details for the file matid-2.1.2-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: matid-2.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 276.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e58173c06944d699c3742b9e5e26c122253eb0ef4f713a96aeb13a497992298 |
|
MD5 | a660e9947ba9633f448093cf35cf658a |
|
BLAKE2b-256 | 3b730e77ff1d46d1da48d4c2e5cd5211087e6e87417936a25c529ee2395e4c21 |
File details
Details for the file matid-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 283.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70c197b935db11f6e523ec3cd0fdb47049bd0433e7ac2fce76243ed07f502f7e |
|
MD5 | 15e27a7b15daf1bc7a5c8b90371e29ff |
|
BLAKE2b-256 | e9c3be576470e59250024b25b99ae3cd1c4375ccc71b8801df59b77d23d9931c |
File details
Details for the file matid-2.1.2-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: matid-2.1.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 260.5 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97cd02193bc1e1e69a29689d896fd8748d14f9ed4f61d1add677247bee3ddb26 |
|
MD5 | 8014ce643e191b90f745fa867e49d250 |
|
BLAKE2b-256 | 7e529250d6b3fa990a9805851b35cef3c55c46cafa3701fb4a576ad5c53dc02c |
File details
Details for the file matid-2.1.2-cp310-cp310-win32.whl
.
File metadata
- Download URL: matid-2.1.2-cp310-cp310-win32.whl
- Upload date:
- Size: 250.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7101078536c8d5a403ca7a7a32a46382f5112bbb652adef1938ba7bea2f4001 |
|
MD5 | 52faeeaf456872257429eccca533d8e2 |
|
BLAKE2b-256 | d59ab5887c986d84b13431a330e44de54214cc23d07501e1e8eb4f3f7594b6b0 |
File details
Details for the file matid-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96412148ab3b86fe9d24a0125c6d9facb5fd26383909af648cccf64db9e24fe8 |
|
MD5 | c18ef71d6a396343a14a59d5ddfe85a1 |
|
BLAKE2b-256 | fd3093abdd814b4290e6b14b5910a6230250c4db925792fcd663d5c65aa83e9d |
File details
Details for the file matid-2.1.2-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4442be89d5e339fa33e138afe1acbbf7216ed7c93dfe4670b93bb720ae5be433 |
|
MD5 | 767ed774afe6ea7f9663ac0cb53d20a7 |
|
BLAKE2b-256 | db821272e73b8d79954c3d2d22343b37afbfa7580ee3d3df1b8ced1ddfde0e5a |
File details
Details for the file matid-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6ecec6fa618072d9ca165716b1d3822b8af0b8822eb578dee2f890d3797f4d2 |
|
MD5 | 2386a45cfaac535b93e3a694b649286f |
|
BLAKE2b-256 | a2651e7fb7c9bb18575a43997ee4131d4aced63e8d91f95efe506e14bc07a294 |
File details
Details for the file matid-2.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebe6497ca52fb2f30a20f8879e00a161baf3222bd6fe113f4ddcc7c84c6c4e62 |
|
MD5 | 92eb6c753431cf12f8859b7f9d2a692b |
|
BLAKE2b-256 | cffbb38ff137bacbec845cd1a6a6bf02b731cdd51ee05a6f0c34ca553290f89e |
File details
Details for the file matid-2.1.2-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: matid-2.1.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2a1f9949072580f925f74f7925c609a68df91cd57da26893502fc5355ac22ad |
|
MD5 | aaefce47b7ae42abfd21210a688c6395 |
|
BLAKE2b-256 | f226db77bf4fa2c0c504f3dcb9de574beacae2af549ef8c6ffc56b044daafbfe |
File details
Details for the file matid-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 282.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce027ac927c77d958f70b7960370097a3b06ab73573bbbe3a21ec585bc8127ba |
|
MD5 | 435f1b2483138c785351df1ec4481590 |
|
BLAKE2b-256 | 330605206e0c344f98318e3235db0a19ba0f0096222bccea7e98d047cb630d11 |
File details
Details for the file matid-2.1.2-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: matid-2.1.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 260.4 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc017bd813ca904ab22f81c620da2b961d56a87375dfe0195494ae1b0c885e62 |
|
MD5 | 075a06cf6a98b4ecd9833cdbf2371849 |
|
BLAKE2b-256 | 31d8346a935710071e06e57417d16bccd2d0e3ebb058ccafdd14f5b63e7cf569 |
File details
Details for the file matid-2.1.2-cp39-cp39-win32.whl
.
File metadata
- Download URL: matid-2.1.2-cp39-cp39-win32.whl
- Upload date:
- Size: 250.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aea902e6d047932fcf968ee247e07de88004181208882e196d9103e041aeab3a |
|
MD5 | 0008dc1c5e0bf670864a90b4c7a37460 |
|
BLAKE2b-256 | d4bf8a9f9c0bd3cd27ca646c972d7ec310f398e80c024d00f560a0b42d5a278b |
File details
Details for the file matid-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ba262f1b423611f720e191eb5d79df7c07d8187bc9450b814e49a929584e6f3 |
|
MD5 | 5cd4d9a2b24fba43931ea2fd3cd2bcdb |
|
BLAKE2b-256 | c945f8c6a0f6d9c9c741895179b0eb88906d6cdde447191e1743292b2bf16cb3 |
File details
Details for the file matid-2.1.2-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0e0b10eba9dfb08e727edba34e9ea695445ca7b06bff64a13fab0a77506cae9 |
|
MD5 | 0360ff85c441cee985f5b988333a02c3 |
|
BLAKE2b-256 | e86c145d3fbf2cfc42d7096b4833b41313ca0462efe532e8d331e234193ffe47 |
File details
Details for the file matid-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49db1a7e5902182fcf434a9b123551eb51c38477623cbf5d98fcc81a7cbe9179 |
|
MD5 | 02a25d334c9438e0b71bb108b4228c20 |
|
BLAKE2b-256 | a101701d612c85be17c917e728b01432203dbc0342e7f03392281a1f233deb8d |
File details
Details for the file matid-2.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b271024f921af39ebcffe73bc93856b74ed7e51dfdf1710772e7e2ad29593cf |
|
MD5 | 3401622f7322add9c7a3cef706fa41b0 |
|
BLAKE2b-256 | fb123373084121d5278b3d4b59521cc78edd676518084daed4d612ee1890f2ca |
File details
Details for the file matid-2.1.2-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: matid-2.1.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.9 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7629710cf68dadd3a93b8d5275f4fe285cff4a8a0d70da4e553f12e8dae34a8 |
|
MD5 | d871cceb67922d907a41a01e0b8f3080 |
|
BLAKE2b-256 | c8bfd3beafd2c1e211124af18e5f2a5e552a6c5e1360ceabe72afc82c91465e4 |
File details
Details for the file matid-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 282.7 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f946f0b08f44eeea4dfce7ee974916784b9ac59b3939d3a9a754ca4985d5afa3 |
|
MD5 | 44132be32a1d3645c7f2587521f623d2 |
|
BLAKE2b-256 | c4ef451ffba65a805ff7af91a0e250d21911193ae9d9b80062603b58d5d24f96 |
File details
Details for the file matid-2.1.2-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: matid-2.1.2-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 260.3 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b8d1ef804b4b2059b20edd578af84652ae2f718eea681b99b7596e6454fa1ff |
|
MD5 | ebfa1fe0a6b8762ccdd316eeebd4c95f |
|
BLAKE2b-256 | 24cdc33999a5fa0349a8f8479370a131990ef79d780801cc529a710927f34091 |
File details
Details for the file matid-2.1.2-cp38-cp38-win32.whl
.
File metadata
- Download URL: matid-2.1.2-cp38-cp38-win32.whl
- Upload date:
- Size: 250.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa3904747b8e7f7295df18987a53e7785317c8e4f603026ac3f9f2036f6bed5f |
|
MD5 | 3f5a143f5f5563edfab80bee9bbe7ceb |
|
BLAKE2b-256 | 339ce8de9d234eb4b31f4f3fa55a84d32b32d12f5c3fc08fa66c2d15ad27497f |
File details
Details for the file matid-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 122f0c2abe3f75a2194be701c0778abeb0c97e9b8a6be58618735f732afc96c0 |
|
MD5 | ca407028117d149183110dde56f53fbd |
|
BLAKE2b-256 | 69fae1f9558a31a3cb1699135efc4ceb74be89e06c49924ed6127b2b110a46bb |
File details
Details for the file matid-2.1.2-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 984d8749eb10685de656b1f9f1e42d201047ef7e342345633fd7d21d7039d85d |
|
MD5 | e464bb04a8e52cf8aa7a4507d6fa9aaa |
|
BLAKE2b-256 | ea5f213eef3b5d4eb061ab31b4d9a814d12cfc482307b705247fea9ce0850c78 |
File details
Details for the file matid-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df5dcab5ca8c9af73127a89473d6a1fe745b7923294150efb4a18cb6712f2f71 |
|
MD5 | a14a68f8e6785370c78e625e86cfef95 |
|
BLAKE2b-256 | a700e9d57d0417ca4b52fcc3eb313220c0192a51cf0aa2d4720c64285e0cbe5b |
File details
Details for the file matid-2.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: matid-2.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91e312f05c4bec8b95ca8c121fa97d9650e66ddaa3f0930ddc49aa8501191883 |
|
MD5 | 9e783483e53d3eb2be398e3d211f4bdc |
|
BLAKE2b-256 | 7ca471061325709a4c8124a4d502d514eadc3da18d49a3875e080f7cb142c8f1 |
File details
Details for the file matid-2.1.2-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: matid-2.1.2-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.8 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22b43ecad9558c7b6b1d0f069f91dcd1bddaeb6141488622a99ebab408101f98 |
|
MD5 | d81e9f0392e2ca7a89b1014cfd818bab |
|
BLAKE2b-256 | c38917a3ba2086e509b437fd54319738d0a8ac75dfa083b47fae7ecc383cee4f |
File details
Details for the file matid-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: matid-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 282.4 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59131efcd350bd7783b9883b33ef3dee10354a9c88acdc68505ef6715fe42ecd |
|
MD5 | 0884b9ce4197262aaaf3f70ad5b24a67 |
|
BLAKE2b-256 | 8c58b4fd53d6a20e68f01d51db5a7b5f03ad6c0fb9738ca0f9384b7ad68505b3 |