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 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/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.5.tar.gz (148.8 kB view details)

Uploaded Source

Built Distributions

matid-2.1.5-cp312-cp312-win_amd64.whl (264.9 kB view details)

Uploaded CPython 3.12Windows x86-64

matid-2.1.5-cp312-cp312-win32.whl (254.6 kB view details)

Uploaded CPython 3.12Windows x86

matid-2.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

matid-2.1.5-cp312-cp312-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

matid-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

matid-2.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

matid-2.1.5-cp312-cp312-macosx_11_0_arm64.whl (282.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

matid-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl (290.0 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

matid-2.1.5-cp311-cp311-win_amd64.whl (264.5 kB view details)

Uploaded CPython 3.11Windows x86-64

matid-2.1.5-cp311-cp311-win32.whl (254.6 kB view details)

Uploaded CPython 3.11Windows x86

matid-2.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

matid-2.1.5-cp311-cp311-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

matid-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

matid-2.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

matid-2.1.5-cp311-cp311-macosx_11_0_arm64.whl (283.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

matid-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

matid-2.1.5-cp310-cp310-win_amd64.whl (263.3 kB view details)

Uploaded CPython 3.10Windows x86-64

matid-2.1.5-cp310-cp310-win32.whl (253.3 kB view details)

Uploaded CPython 3.10Windows x86

matid-2.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

matid-2.1.5-cp310-cp310-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

matid-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

matid-2.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

matid-2.1.5-cp310-cp310-macosx_11_0_arm64.whl (282.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

matid-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl (289.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

matid-2.1.5-cp39-cp39-win_amd64.whl (263.4 kB view details)

Uploaded CPython 3.9Windows x86-64

matid-2.1.5-cp39-cp39-win32.whl (253.6 kB view details)

Uploaded CPython 3.9Windows x86

matid-2.1.5-cp39-cp39-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

matid-2.1.5-cp39-cp39-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

matid-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

matid-2.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

matid-2.1.5-cp39-cp39-macosx_11_0_arm64.whl (282.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

matid-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl (289.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

matid-2.1.5-cp38-cp38-win_amd64.whl (263.3 kB view details)

Uploaded CPython 3.8Windows x86-64

matid-2.1.5-cp38-cp38-win32.whl (253.6 kB view details)

Uploaded CPython 3.8Windows x86

matid-2.1.5-cp38-cp38-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

matid-2.1.5-cp38-cp38-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

matid-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

matid-2.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

matid-2.1.5-cp38-cp38-macosx_11_0_arm64.whl (282.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

matid-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl (289.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5.tar.gz
Algorithm Hash digest
SHA256 2cae04aae03947dbac85d37699faceb73498befd9efd34c6e9191982d6f2e4e4
MD5 d21a5ef195d9be6af9a593c6f95f2d50
BLAKE2b-256 6ce384369433e4825ecdfbbe9d4238e64a240ed37e1126d90db95210c2bb3eeb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 118deb82ae4da14ee6acb523197a5cd6e6388e8419cc07a308d5de1ee70537ab
MD5 3a388af73cbffe984416db5facc4cfa3
BLAKE2b-256 2b29fa1c1a8663175243b9e23f842de1ef79b47d6b548adfb6e4ae00d847a291

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 251b1b923250dc6624aa380aef7165b1b0ac958112a2dd5edba3a901cd63d10f
MD5 45a74e84f1a0b35ad3a0f2ed85aa6f52
BLAKE2b-256 a16160068b345076fcf21ad1024fc6ca25bccb3800d2922d69598b48810b4387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3799253266b8646065e38cc57c4ab2553e56253a19f62267349cd376fe99888
MD5 bd91f8d002a15ded330a1c87f2eeb639
BLAKE2b-256 ee4a8c002dfa893748dfa9a23d1ea60b0f7c7897047175e80dd03b4217290c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b526fad4b7dc7e0d7fe9803f45350c71fcc4684ee457924a182299bc6e450269
MD5 da0060b60a10a097576c70ea2bea15de
BLAKE2b-256 b4afb735ee396d19f29d679e72be82170eb0197fed628e06fc428118adc15bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6e05056e4a440021d54c29728912bc18f3f2e62dcfcc48b28167877b8237ebc
MD5 27675184422f5b44c1a24a0143e66a2e
BLAKE2b-256 83d2a84ec02a154ee7b3c0afb5319022f73cf44985c9fc8ae4ad4c3601609196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa7b868bdcbbaf0a9df8dac75d8c69920a5a103c70fa37a8a00e56ba918a09eb
MD5 2bb9b767b13b9f254de87a68b97ff1ca
BLAKE2b-256 fe400174dbb8ce15c230b8cbcd10aa9123f4b07b7b22cb8e3eb4e2dde9393567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 345dc649cb593cf301a90560d52cc2df72de9c4dc8acd81ee86ebde89affd2ab
MD5 693dd39a5f06088dd334970464e0931a
BLAKE2b-256 7d584404bb235b7290620c3d88e5415127174989356605778c70b587b76d1eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7605fff1f829b9cc55c17d23ec41a3713aebaff7ed3c432b64f1f83211c401ec
MD5 dc444531b5178bb5ea699752a63296b6
BLAKE2b-256 9d0b7c293e8f71cb4037642dc84bf445551fb882f738f08edb652eb2bf3d2d22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e0193ff5fae4f61ea15020067c2a8ab2df340dc4c0c29a1e253e56007aaa45bf
MD5 3f1d43462abc9362ea409cb572a54ef7
BLAKE2b-256 77165b2a20a5fe2c30eddafc45ba85624eb80c46dd8bef497a68bd932405fc0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 15c879a6640810f689dcb8297ffddf7fd57256431876ac1784f973a86ff31722
MD5 6a6ca015855ce778c2f6ab57c9a8375d
BLAKE2b-256 846d854dafdf37d1eb3eadbc8868d7e977bbc88ac4cfaa56c29eb6ec0f2f58a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43bb4371c73d5619b0e9994b09c3b09e8395a393b41095d15eab2d2e5565c96f
MD5 a503b8f48a72fa7d916dd0477169ce18
BLAKE2b-256 db128e40c1786033889b8ffcb814e8666b23aed6e80e95b113194be99f7a5966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 84b77e4430bbbc7be30ffa2e4f019d74187b7e7e63e1eea01cb6faec58917bac
MD5 c16ae68ad22d309e55b45e23094f7a00
BLAKE2b-256 80187360290ea7df03595cfa250a566f4c57e9650004620e7a67e1af4fffbd41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1ebd25ab3ae16f10ba9becae9b2aef7118b28be6266e10d930bd84d2e5eb04a
MD5 1ac39a535883c7219771c01f816e898c
BLAKE2b-256 35aab0d3d00ea4461226e3ac007a6723acc4216b32ca7cf37864cecceaa89176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cdf2f803fe8191b0406bc99c3550249931a838cd60d4be66e796185d5d8456f
MD5 a15a163aff5dc57c1812acfbb9ff02b4
BLAKE2b-256 c4ac86ea93b5a9504d4018d1767503172418cc49bc41d22d343387bded932302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e14bd37d667720c6a141f9ce27c3344b0c0ac930aab5597897e2625e2e04cd5d
MD5 46ba030980a37ac5b481bf46f5240bd6
BLAKE2b-256 d80c49d0d8e3795d6a1cc71ebc42e06fad9ced3b5bc7d1adf2b431532dc55986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87b07c44411454049fabf282fd50040d0a4cf2e494127d602df95702c90e6ba1
MD5 1a3e1877e06b16e9110873084accc4c2
BLAKE2b-256 ae2300016ad8b13320b84dace1b066081237e094ff2e62ee69db9e1ab1c5f6d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 86ab3d26c1ddc87a1fce05e3bda846739a27bf6ee7e329b960e18999594ca574
MD5 60ea9d1d72591aded27212f9e13760e7
BLAKE2b-256 c4a03c9389c64c521353e14124a07b13140084c03496250f75627f918175fa19

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e8947ce574b05a28d5763c685db8a0ae6d297f2f9017e135bba4b62d723a6095
MD5 6ec76baf2ac705ede645bb1349fff6b8
BLAKE2b-256 6f6f8594178ff6ed06aeb9ad67c73db60a60bbcbefff7f51745404cd908fcf76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4516808c788783f9a45ad75cd148047b193f3bfe8c93d13b2f32f31df8f9520
MD5 eaa15ac4ac1930ed426ad4096b3738e1
BLAKE2b-256 f91978855e2dfe427e54747e4450c5d125fd0dfbe61f8b3f7802149bff1a70fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7b2d614dcf87975813665d7c91765e949102b0e846c409c2bbd663a88db1c4f
MD5 b91142db380aceb2ae278855047bb5bf
BLAKE2b-256 b6522e19ac95be24c83d69c21452d6604e5f064e7e35e17ab32a1ec01f658506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c78758032215fe010509843a0ac6e375677d2732f3d1ed34597c32f2f9f379b3
MD5 62fcd11204b87f28e82618da26277ed1
BLAKE2b-256 7371f36c3a7de2b3cf47b11d472254d002b789f1e578d30cac93d4482e499d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0dad3010806c494a8cd8fb73b831a4c1850cc4dd67a5a0ffb5990d5e444e265
MD5 6893ff43fdb2b712769265037198d34e
BLAKE2b-256 4bf1b69bebb386363d370024e8ab2d07ee875f96933ff73ebd2800b63ffc9567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1dd0e05faabe7ec3062eb067932be14e0a4021721866bd8bb32beba6d22daad
MD5 282f81c7cae4dcaa2c6527f1be5629cb
BLAKE2b-256 0bf81961332612964d08fc8ef210bcd93a14c8ec24f4e0fc5cde9a5dc37ddde7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc720cffb184ed0f87bbd02c24e55cab6a10da766624c1d559d4ddd0995e4b56
MD5 aa7007ce50d26b95481bfe13ed024f14
BLAKE2b-256 9a24a208fb251dc38a315f3a1527fa6e81dffc951c2f9c10dd4df4d2fbc6a06c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2e86823d0f8326dc3035699afc6f8c4a671f95d2d1cc217875507ab916b082d0
MD5 606d99950b7ced43ecbcfb89789af524
BLAKE2b-256 fa08681551673f8b9c55306bda1789115f2e06e63d1cb446f97b7d15a7fe7cef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7267a1fc00292c9da94f598e19f778cbe9cecf6adb85816f7af77a64ff0adfb
MD5 7702c10f4c5a364b02cd5c8b05e94cd5
BLAKE2b-256 b752a9da6f77362e1fd7f0b95eb0550d995ad86c6049708e01caf395364e8192

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fc6eeee6b47b5a0938c4c116fecdeb4f63526a0f2e7d3f645c58a49c23a499d
MD5 6abca41efb1547bd875cd36d90f8d406
BLAKE2b-256 71aa349724f88c74137d46846adbfad419c71cf4c38b4968a0b8420f52b34ebe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.5-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.1.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b6df9ae64f9a5c906f1593050868346b6d3212f27bb8fd35b0f4557a00668dc
MD5 5d08aa672a64ebcdfebd9ab290f75f24
BLAKE2b-256 cdd8f1e939f4b7149ec40e2a0f9c33b4c8c03fa8f5686cf371dd5c2b9ac97cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d957a78f6d8b4b26880aba7c751dc98b75c1799a20d72da5de9083b3ea16faf9
MD5 fda2113da621c3249adc3c53a7aca260
BLAKE2b-256 b0e5a5ff0c19faded025e1c41e864a1b19db176b4c13094d22e283c20bb4d25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 374f53e10f4c0d7e3fa1632d675f6485c432f767de4932e7a617f5b93b7c582c
MD5 e8c0cba9816a36871d5b0580b67722fa
BLAKE2b-256 9ad2ad3ac4d93035c4c623a9b11833ff7057d3bf49011a48396715984f6488e2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4da24346913f6e3bdde7bd30b432b224f266beb0071c13bb696e7865449019f
MD5 c4a6fc59f7408954e9e311a0ed0cafa3
BLAKE2b-256 49b019c0b4a68179cfd9bb3032745d575c366574498feec0b9e7f47231088d27

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for matid-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19c8089a0029fe8cf06c937ee12c236e374df6e0f761c08320f0923fdcaead2a
MD5 32a49a1b48e4b07f56a34a2cb251c3d1
BLAKE2b-256 2636dd86a118f5d21a1eb826662940dcf0c0caa0a76206e7cd41e6a47e4a0c49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 263.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.1.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e680aa35df62becbbe67b85a889925db5540b9abd061451e53687520ca2f63e6
MD5 91708e0f062c54c8d8a3955c2ca913a3
BLAKE2b-256 22923424910fc0556d43a9502f7e553eac26fa25db3a57853c520621b50aabc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 253.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.1.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b73abef60f19f3d440658843533801ae8b86542ef5adb9e639195b0b0d703b2a
MD5 58b9dc40a5b859cdfa474498451ed82b
BLAKE2b-256 b5f8df807b211c2d2c1cf813ad568d4f6cc0ca128246e756e5a1808086e11c21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f3115ef13a2ec7b04a81eb8d7afb590e1b23223f79719704f2387b1f1acd5bc
MD5 0080f33a097c45bf79c9053eeeb2c9da
BLAKE2b-256 84be2e5df6b92e4f79c048baf555fa63db06ffb8ea365d3919560319058f8c0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.5-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.1.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2132875e8545e763c6e7ce76e6c71f2a393f0873166c0bd06e63f8b70a1348a
MD5 1481586503d1119f2dbedd0a1b9ebb6c
BLAKE2b-256 1bac7002697cf2cb22bac95c5236dcb0361066347cea0fbf6a38fa3191fbd87f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a9f7d0a9a191fe35b02e0cc057abb6d2eda2e7d3212f456e48684aa4512dccd
MD5 a66a86fb85b953cc97e57da20eaee5df
BLAKE2b-256 d428aef1f7f207bebb02202b5363146abfd36b60adfeff46bb1d62b67cdc8b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for matid-2.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e25306b126631173952cc1da242ba75d365dd17fb03e676607af555cf5545c5b
MD5 c41b2420361fb421496ced8e28e5531b
BLAKE2b-256 9e468077f145e9f498236c0fa149601001e553039cfb74419f9ce52f8bc4c941

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.5-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 282.0 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.1.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcab8f46f4416bfaf973974d5c2c2def575270a75006eb5d4eed61db818ba54b
MD5 3e9300a5f63ad84d7a467c50912560b7
BLAKE2b-256 487ccb9618f258d49c909f20fcb22475f9c335b914d742ff79bf614068b4c089

See more details on using hashes here.

File details

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

File metadata

  • Download URL: matid-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 289.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc1

File hashes

Hashes for matid-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35b6507d6b2cf119013952dc1c409d451536315f257033e3b161a88b1f209f02
MD5 b8a5bdb73c8260146f72c3dcea9ec2bb
BLAKE2b-256 7101ef229fe82d3258b58f5b95f72f6f9628988823dc668262b98b17a08b3104

See more details on using hashes here.

Supported by

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