Skip to main content

No project description provided

Project description

🌈 pyTMat

pyTMat is a blazing-fast, user-friendly Python package for simulating optical multilayer stacks using the Transfer Matrix Method (TMM). Powered by a Rust core for maximum performance, pyTMat makes it easy to compute reflection and transmission spectra for complex photonic structures — perfect for research, engineering, and education.


🚀 Features

  • Ultra-fast: Rust-powered core for high-performance calculations
  • Easy-to-use: Simple Python API, no need to write Rust
  • Parallelized: Automatically uses all your CPU cores for large wavelength arrays
  • Polarization Support: TE, TM, and arbitrary polarization angles
  • Complex Refractive Indices: Supports lossy materials with complex indices
  • Flexible Layer Configurations: Any number of layers with arbitrary thicknesses
  • Incident Angles: Specify any angle of incidence
  • Wavelength Range: Define custom wavelength ranges for your simulations
  • Numpy Integration: Works seamlessly with NumPy arrays
  • Perfect for DBRs, filters, sensors, and more!

📦 Installation

Install the latest release directly from PyPI:

pip install pytmat

🧑‍💻 Quick Start

import numpy as np
import pytmat

# Define layer thicknesses (nm)
d = np.array([100, 200, 100])  # Example: 3 layers

# Define complex refractive indices for each layer at each wavelength
# Shape: (num_layers, num_wavelengths)
n = np.array([
    [1.0+0j, 1.0+0j, 1.0+0j],   # Layer 1
    [2.0+0j, 2.0+0j, 2.0+0j],   # Layer 2
    [1.5+0j, 1.5+0j, 1.5+0j],   # Layer 3
])

# Wavelengths (nm)
wl = np.linspace(400, 700, 3)

# Angle of incidence (radians) and polarization angle (radians)
theta = 0.0  # normal incidence
phi = 0.0    # TE polarization

# Create the TMM data object
data = pytmat.Data(d, n, wl, theta, phi)

# Compute reflection and transmission spectra
R = data.get_r_power_vec()
T = data.get_t_power_vec()

print("Reflection:", R)
print("Transmission:", T)

📚 API Overview

  • Data(d, n, wl, theta, phi): Main class for defining your multilayer stack.
    • d: 1D array of layer thicknesses (float, nm or μm)
    • n: 2D array of complex refractive indices (layers × wavelengths)
    • wl: 1D array of wavelengths
    • theta: Angle of incidence (radians)
    • phi: Polarization angle (radians, 0=TE, π/2=TM)
  • get_r_power_vec(): Returns reflection spectrum (array)
  • get_t_power_vec(): Returns transmission spectrum (array)

🛠️ Advanced Usage

  • Arbitrary polarization: Set phi between 0 (TE) and π/2 (TM) for mixed polarization.
  • Large arrays: For >100 wavelengths, pyTMat automatically parallelizes computations.
  • Complex indices: Supports lossy materials (complex n).

🏗️ Project Structure

pytmat/
├── tmatrix/         # Rust core library
├── pytmat/          # Python bindings (PyO3/maturin)
├── tests/           # Python tests
├── README.md
└── ...

🤝 Contributing

Contributions, bug reports, and feature requests are welcome!
Please open an issue or submit a pull request.


📄 License

This project is licensed under the MIT License.


🌟 Acknowledgements


🔗 Links


pyTMat — Fast, flexible, and fun multilayer optics for Python

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

pytmat-0.2.0.tar.gz (15.6 kB view details)

Uploaded Source

Built Distributions

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

pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (475.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (503.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (551.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (463.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (326.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (294.6 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (475.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (503.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (551.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (463.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (326.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (294.6 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (476.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (504.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (552.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (463.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (429.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pytmat-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pytmat-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (327.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

pytmat-0.2.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (292.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

pytmat-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (474.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pytmat-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (503.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pytmat-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (551.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (462.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pytmat-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pytmat-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pytmat-0.2.0-cp313-cp313-win_amd64.whl (183.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pytmat-0.2.0-cp313-cp313-win32.whl (172.5 kB view details)

Uploaded CPython 3.13Windows x86

pytmat-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (475.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pytmat-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (504.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pytmat-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (551.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (463.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pytmat-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pytmat-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pytmat-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (327.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pytmat-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pytmat-0.2.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (292.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

pytmat-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (261.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytmat-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (274.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pytmat-0.2.0-cp312-cp312-win_amd64.whl (183.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pytmat-0.2.0-cp312-cp312-win32.whl (172.5 kB view details)

Uploaded CPython 3.12Windows x86

pytmat-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (475.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pytmat-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (504.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pytmat-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (551.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (463.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pytmat-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pytmat-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pytmat-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (327.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pytmat-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pytmat-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (292.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

pytmat-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (261.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytmat-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (274.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pytmat-0.2.0-cp311-cp311-win_amd64.whl (183.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pytmat-0.2.0-cp311-cp311-win32.whl (173.2 kB view details)

Uploaded CPython 3.11Windows x86

pytmat-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (475.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pytmat-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (504.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pytmat-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (552.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (463.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pytmat-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pytmat-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pytmat-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (327.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pytmat-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pytmat-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (295.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

pytmat-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (263.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytmat-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (277.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pytmat-0.2.0-cp310-cp310-win_amd64.whl (183.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pytmat-0.2.0-cp310-cp310-win32.whl (173.3 kB view details)

Uploaded CPython 3.10Windows x86

pytmat-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (475.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pytmat-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (504.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pytmat-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (552.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (463.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pytmat-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pytmat-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pytmat-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (327.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pytmat-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (288.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pytmat-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (295.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

pytmat-0.2.0-cp39-cp39-win_amd64.whl (183.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pytmat-0.2.0-cp39-cp39-win32.whl (173.9 kB view details)

Uploaded CPython 3.9Windows x86

pytmat-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (476.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pytmat-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (505.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pytmat-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (552.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (464.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pytmat-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pytmat-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pytmat-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (429.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (328.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pytmat-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (288.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pytmat-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (295.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

pytmat-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (476.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pytmat-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (505.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pytmat-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (552.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pytmat-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (464.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pytmat-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pytmat-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pytmat-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pytmat-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (327.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pytmat-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (288.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pytmat-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pytmat-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (295.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file pytmat-0.2.0.tar.gz.

File metadata

  • Download URL: pytmat-0.2.0.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0.tar.gz
Algorithm Hash digest
SHA256 539635b479af75bc3da9bc2e627a627e3c9c8bb762a795b52c0bed0e494acf14
MD5 9f6f1c91b156d6028e06c2aa5a729455
BLAKE2b-256 52f4bc5f6aa209b06cba80a82fed5f060945843a7a5466f800f70d438c29dfc5

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb587a7f7b3419f31adb10269ba38525be2556b3190a34581949d4ae2006694e
MD5 78d30b177a781f1356109cc55e377f3d
BLAKE2b-256 02b41e48d0dd932887c12a00bc7a1f70193247da8bd4316940c61e782d7dc8bb

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d68ab48cbe5e62031318ac6aadc96c5d173b046fe09ddc34b7da7b97538d0b9
MD5 f1b5d9dd69f2577964a33d79f3740983
BLAKE2b-256 804eb6210a629847dc11ca1a3f9fc437f6a5a99f9b3bceb72a742984becb4bd8

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c250d244d7541b1c5a25a73258a821f6f2ff6f30b631c282c6dc24d2899d43a4
MD5 af591e2c639c5983f425dc22a717b680
BLAKE2b-256 7e7919a7f665b7c1e835dd2f0170bd2387b764af6fac9a25437bcd7f1adcc92f

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d0ce1803025633a1fa8408c34227b630a23d8825f12eb70d4d4bec40541622c
MD5 268b5c9ef9b8bd9d505df440bb1e9aae
BLAKE2b-256 0344d09f29bac7dca6f8735a9608a7affc90f952d0f8eda35317d5fb36abf6f9

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f88e51d9f119e26df56fd989610346f4d61c089f4bdc4623716b25bd6d41714a
MD5 03d5bf68738b8bd23577d0a7867edd92
BLAKE2b-256 4a769631eae4ca02fdb52af1eefda761eccfd019984484ab07ddc701f34931cc

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 169299aa5fce244361e83b68b79a1ab2c998b4c253cdf70fc05f85e89761ade2
MD5 cfce0f12a420faf6fdec2dd9dce7f05d
BLAKE2b-256 4133b3251a45aa4baa9211bf0b09a7aed75d7912a82cb0069d2f2003e5765c5e

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 caa3c34aa22ea1690c8d84e9bbacbc563815ec2b7972f6f493555b5916b2fbcf
MD5 4ebe10563c6011fdee2c3d812ec1c24e
BLAKE2b-256 7f3c112f9f615fab2428563abecb89e51eb3678543932fbb96e1253a2acdaa62

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa6437cfdfbcad82a52c93b8be67e65391c38d9f4b0c041fc7187346c29488c3
MD5 e5bcaf0eb20b2663f4501141e460aa0d
BLAKE2b-256 93cd7d7a154a0d2061925eb2499b37a1298282c6011ff0f722d49ac728d3bb9a

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0671b3453286f4dbcf7ca4ffb240560f6e88e0ea9cc68f6303f001e48328ef2e
MD5 f70c12c2b413a28cda01834b02202b04
BLAKE2b-256 4d0b00fbdf6712c212c15bcb7af31d119017193604a1b27d2d3d5e257eb9c11a

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96a6dd068b8fa4155dc2cd846981a0a463ce9f3adfb604a013235f2c6e35f296
MD5 ea7f30cad9acf026d58dd9af9748d64d
BLAKE2b-256 62e824c160803f7fba0f152f21f85b273bea4c58f62e1655ff1eb4e394dcf6bf

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ba8d97b74a1e9cedd8150c825ba3d8421afb73dbe15f655fc8262c07a265d0ec
MD5 3218a3beb0aa6cd31e5d30afcbcbc8dc
BLAKE2b-256 911b1a31264a789d4acd04f607374928d60162fa21df745c1bea712728b7570e

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6085c01dc4ad0e05c6d7f9f2f5177c567caf618d1676b55375a4cef2fb883c38
MD5 9a652ae90fdce197e92925e8181b763b
BLAKE2b-256 6b38e91544d389881bc21d4e88b8d7ebfad759c7138259f4882d8dd6d7b0004a

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 babb8ff53a2cfcc5ccb18d8a207e4ce418c2105c93fc853ce152f39c90272efe
MD5 86e214aae52437d29e894da65e0239c2
BLAKE2b-256 4bcadb08e436566fe47ae2ed301aa9a2864d67c5b7efb7cd72cbf14a22382614

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aec8d47d2a63b8196e79ecbc2ab61b32bc0ddb3f38fa41555a003d20e2859891
MD5 37e58458af95fcdae376b67a51120199
BLAKE2b-256 853ad99c6acca12727076b49ef95faf675bd3e2fea7b1a2c960dc8abe3f9807a

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e2b72065246018c56c5b4c6267badbaf299c4934f2f293287b9ed6c454e94f8
MD5 7592d520f1958a540ff0a32e0b151652
BLAKE2b-256 ae768d76483bcde20f4f65abb01e5174f46f2cd1459841c48a9df7ca824d92b0

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90f79390e7b44635eae9877c32385f6c7d3e0fd47818076075120b915f2a0355
MD5 87b362527e455cd4e5898f3565196ea3
BLAKE2b-256 4c70f956c1568a8b2a273f23e2748e72241e2498610ec264080ac28dabe867a0

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7d53d2f9ccf0549c1a7428bafcfb0266d099a26f79be9f183281447661a7b96
MD5 325a146cac048d43c07d1ef9e5ef5195
BLAKE2b-256 1150683a0500ad6bab0decc4ce833c70e7ff92dd39dbc5daa6625d11721e7e5c

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b66509e8de1d3d0085df1f0573318448714f7bb34bf3862299db80bb1cc8a20
MD5 5468d34fd63682c34429451d800b1690
BLAKE2b-256 428cdfe1578186f1007b2a7b4bdd099e1acc605fe658ddd979ae4afa8d8abb0e

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3c1f0b2317d8878ee2c38d3df791d70d2aab29b7cc2492db9fa492f41035773
MD5 3897cca61b4984ac4eae29fcab1870be
BLAKE2b-256 ce294994a8b3fd5451326e01fc96ccb1c28291538ef821ad55f777e2be8e766d

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b09ee9cb9b5307b2a57b67884cbc934b0a52d2b2c6f3341528012d34fd30c92
MD5 aeba2ffd853a506330c5457c486d8d3f
BLAKE2b-256 765a2ac685965386fe1f34953d290fd18bac78c16955299badca2a2d7f6b0711

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcec96958645d496076302aa24163803e4f5f6e18391eb45313c433c5b56bfd3
MD5 c2e94fa84cb3815ff175fd4453949b65
BLAKE2b-256 9e9fb32c9ab2b4ecf2a5191c0220fd8f1f2e251d5684c83504f0941f82c52630

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a4e69b2bfc3da05fa1c9b2cb34f58e8ff9bd56415bd56528d16f06a3078e7f94
MD5 7b6fdf1e2c250b4991fe850594e021dc
BLAKE2b-256 fbedffc7942187a1b927a22c01cac53ad64713f0621844ab02b09a2366ae27a9

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63f3d117702ae21295c21f3e33e2b9d319bb5f1eb1ccb4aaabba0774b9a518f5
MD5 4ba50176a6a0c0d6af53f0548def37de
BLAKE2b-256 5abe2cac35b667bd8dbd265a9b2f597631320d15232b6cbd1f95b0551c86da6e

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cce37d29de59713f0d8d2a0d65eab7b1818a338f6748553e355b95d96cbd8661
MD5 78b2cdfd124056adef6c0f626cd180ce
BLAKE2b-256 0ebac8f8c60959815a1c3f7694009775d347ad7840ae9294ba38af2321030378

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dcb9e514fad1512839724ae01a71efa045d534fb59fc82aa07614977fcae0260
MD5 b85dff68c570cc2f06ae2b3aca6b8eb6
BLAKE2b-256 8de2d97ffca3b5a83011433f926b3ee8dc422652f9126a8bf5c8bb9c0c17cc59

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f5f1f5eef7cc2510575515bfd8e65b10f7f9835cb4351f985f454025f81a6c6
MD5 8e74ebdede5877272c5e18acb7856172
BLAKE2b-256 77d7301dd600d9b813dc77241090253ca692a2f6fc61bd45ec2ceaa54b10dae7

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71544512a47a080370e8d41c7210d792f588810332a8bc03b4e1f3652648eb79
MD5 75b600258fca0eb9ab6b5a842b27d27b
BLAKE2b-256 c619df48f35595a1d4dcd8ef641457dd36f0c226ca244932fd3e1c1271ed32d2

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 649f3f3c96fb7a105a7b0705cc383930c89e1ff6c5fdad3a14ca5d749a7bb284
MD5 178f7abca827c6083d1a77dfe5300990
BLAKE2b-256 f7a72f98fe799f0bc5b10552ab7eb08372ced2dcd68b5f7404a7e3a506d38178

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bce99d14395e18f4766a27597b3de76ae9a32c069da4dd944839e04d9510e13
MD5 102f4bd014f244d816f60d224acf31da
BLAKE2b-256 5d97a877c60569e2d31234c17338b4b585032565186f84dc4ec5582e6ae1664e

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e6768b1cefc73cc141b722b289efb2cbf3a5ed2bce9a37f3e749bb1c2d0aed5
MD5 ecd611fca5adf72551a76625e909002d
BLAKE2b-256 c31af2dd3109e2f382390e2483e4550c101e0990b9a33a1d9cdcb4945b2d2b3f

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09641b3d51aafb147fa4a45274feab6de450f1ec702a632e3644719d4168eb4a
MD5 1b709c21eeefd52c5b608a5ce3bc1526
BLAKE2b-256 8d545a7bf23d038160a319b3dea09d23230155573da7e98ec9d6d4fe5feea670

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7164981b4c20842a4b6044c46e69aaa54baac1378816c9bbdeee688e3107e198
MD5 62145ab1da8559d0f85c0ff0463fecd7
BLAKE2b-256 f338d2e8d2965eaaa5c4661bfa41dabec290a1cf3253b29ad06d3cca76947aa2

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1f52447269c2279877a5d05145c2261b005cf5d9829024e8b4358d0a8cfa6f5a
MD5 5e1010758d91534ab1e46c475bb07f1c
BLAKE2b-256 774cefb1532a8bd6d9658733b93b739bb104a877c1e6d1d3c84c948ff6c5ce13

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7454832258c6f94e28ee9e5208af7b8ee7e22fb8643189c3db047bf2dbbb34ff
MD5 1a52d92d20f8520f1732cc21a8f81dc3
BLAKE2b-256 714c3532814b43e7f801ea2d6f1930d81646fbaf83127de58c764d69f8326d4d

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bae5aa5e666a9a2fcc578f3f357a33398423c91144d05f4350bcd5624cdf7943
MD5 b9d8c1e9ef24e522dfccd3275e089112
BLAKE2b-256 c6bd5ee1e23524f48bf00fe1ce581df4edf6841c3c91a7eb8fc34561ca87d662

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1247bbc512f7eb3acb9dba8d794074b5f522450f9723430fc09ebb78247c3dc
MD5 50650ed06e7077465604b42006484fba
BLAKE2b-256 246aef231cc602c757a060f06733ded0ebe2766a5555934348be78fdb1e6e840

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1649122b1d4bb9eccdf233e1dfbbd8991ade078eeb85ead90981eb4b79f4136b
MD5 602e0fdbd147da51c826e39ba1410339
BLAKE2b-256 cfa5c3cc5bfb364b207d1c1123f8ae3d6df8cdf0ded0255aa8055674758d26a2

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e9a34fb99a57f1496386f9e32ada498842c0d975d2afda959b010899712e5f4
MD5 d1eb4273b4951e37bcf30bd9ae830aaf
BLAKE2b-256 97f36a1e73dac4bf43e7fde8d4027ff62a626dbc95839da3cbee63354c125e2c

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6977a0d24aea616859082d209d106a625436634480244897c913076f9cf1659
MD5 ae471b858a4f50db8b8f1bbaa918604b
BLAKE2b-256 3a28ce80c94f81a335e694b5078baab889d36bd2f41b353f44b1e37b2923df42

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67c3c8a282c85d756d009e1426c375893da8e7e1405ef94e243c0391beb9f710
MD5 2ee01841cb41247f92bb0cfeadcafd61
BLAKE2b-256 ce46113d69a3306d710148992488cfc95da19010160dc8941054a4a008920390

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29f322415268c6a868014898a6a8554f305362e34055a9fb5c38d20b370dfdba
MD5 fa6adc9455dfb86832f8bb25336a0aa5
BLAKE2b-256 82e607937e81c71277d138d71f58d74ef84b439e8a017272bf0736c2e21219a2

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 183.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d2b8481cfd818936239392591a6772efb7e8d6ac80a95e775b465813b7b292cc
MD5 50bd712399c2cf15d0161250f6456e08
BLAKE2b-256 b99aaa0c22da39cfd57ddbbedc58e3b8a84eab709d00eb30e7472609700f767d

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 172.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6df4ff41574e8e6d842d05c2f0ae79d4316d8e77bef23ec61ece84e5f4aafa60
MD5 5b656b3b63ea1ec5b1795c1064921c56
BLAKE2b-256 be1ebecbfad320ada9aa51ff6fba2c37f969126c165fab71f07e50b48501988f

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42bcac99b137643dbdfd04d30722f59574fe6e404efa252fa17cc5779d9fd18b
MD5 f1630564686f98b084ef87fa43674370
BLAKE2b-256 9c8c525266a3ad496b1131b798ea445ff3900261313aee7b126f964d395536b2

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ff9eb6cc73df100c921ec27c4c5d36a24b8ba0dd12acd377e78e168c50b37a1
MD5 2e8280f00dc5170ce3838d3e52a16874
BLAKE2b-256 3eb910c881e82d6b57fa09fb79f60e736f5b401b0ecdc4d65e00bfac9fe4bb8e

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18d15daee3eec136a9b6ea49d5c761d29f4e5ad7aa6553a7082eea386957e722
MD5 e313c57fb1bd3ff90c5f14dffb0779c0
BLAKE2b-256 d5b4ed12092f97944b7117c81d7d85bf23567e0450ff9b5a837838a4824787b0

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 471daadda6dc5d8e3385a3c78a8bc4d526c68f998092e95cadcc80bb9fc5b49e
MD5 1c02a14bbe53d55c4a89899b323f037d
BLAKE2b-256 05ad1f8d2c9e534d4b4caf0146552704c7f8a71d90e7253f9bc4ff8fac353c53

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c672f7c79af85e10bb9621670827fe505d21ae92ba5107718bca6979324bdded
MD5 0c0f926802042f296f2abde25c195bdc
BLAKE2b-256 c5c52f5041a956b2c8a25af03b5de40aa7673c1e41d86fbb5f1d1eb84018d8c3

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35f0acc09e863ace0e36619463bf6da74ac8eeafcb302069d7fb1b0ceea326a0
MD5 3a7b73ed85c0be8aabafda8ebebbb6ef
BLAKE2b-256 1a651648efea886e758eef41ed37057b90048990970cbe5729099ce716d209ea

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 458f3825caaeaa200cd414e216a199a20f2cb156a8f58a062b1dfade722b38f2
MD5 e078145a08fa8507e042fdd497715a6a
BLAKE2b-256 1d67277616f8ad35d53489f1e155fec479daa4b049fcbfa9550105a4d9fe2904

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d17e3fb4c426d927e2901023ac1b252b4bb2e3a8e73d305d2ef8aea1c859f3c3
MD5 1732f34e84560705e4c027159509caca
BLAKE2b-256 3d3fc66bdf7ddc8a1cc078db56cce268b31cdd3053d297844fe8a1e8427b8c68

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81cd358076c0fb8ea718925fa367cdfef0c6c831bfe3068c098a1dd2390d032e
MD5 7728a78e36c10f6448752e94b26385c3
BLAKE2b-256 227146d89b50b945c3bb5823054011afbed07fbb377066c03990956fa8d372bb

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3bee4f535c4c5f36c5406d3f533812c35e89ed6299a560d80ee77db7cb85d47
MD5 535622baa5d737ed18fa5edc9105330b
BLAKE2b-256 b3b0876b7034c53b85fea3c74dbd81f8f029dbd2d57be6485a78408794927da6

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e8e96e5bf4195b20c6b5365b5810a9335767279df85b912c9d04d40796d3bba5
MD5 17175534320f2e6367f04909e21bcb39
BLAKE2b-256 b9f91b885f816eb3954b576ddd9a2552584f1426061002cc4daab054b19d10ca

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c06d080b12052fae9526c89613db51cb075cb8d93dac1afed7aeea4b90a3cd19
MD5 65790b4fbd0d9559516916d592693a62
BLAKE2b-256 578bfd9669039662821debb47e78782c4f14adfa621ffd2147b4be61bce342da

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67bd82ecfecfd425969cc23470dcaffc35fafd95d9b73538eb813e6eb6c1f18e
MD5 51d175e013f8a143d9d40f48e12a3026
BLAKE2b-256 9b59eba8701224ea637e13b86b9eff0b05d9dc0f05f1b6503110b00832491c37

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 183.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54a14a6e5450dc2207a79f3162c6d7eb2347411e1d5356fe4567001fa261774c
MD5 fdd027e826bce5216f6612646c3002de
BLAKE2b-256 ff0a7f0a964d1fe62415d7cba2c66f001b63ce42e6bff7d54a7c27b788cf9e0f

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 172.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 680546d3e502d5f0adcffcd62769c4769071fa98664bd89206b936887faa2fe1
MD5 3506982893f0e3b2bf329cbb5026208c
BLAKE2b-256 f07fc71932fe95e7e7819d7aac9e4e8c904540d32fbea53e56889e15981a4394

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2be1c93ef592c0861ebb8ae707e411238d494f2587e06a9c9a6a9ec960b7ebf8
MD5 ec593e21bcd420d12b23256ed1571ce7
BLAKE2b-256 b774994a4ddd8017587456b4cabab8540376e3599a4de278ec831ccea1618c75

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f831907aafc078588fe0e9dced15321a89dfa1979341f60b3b234f777e99aca5
MD5 6006a4f87dd484f61e71fc6d4b5a07fc
BLAKE2b-256 29d2cb9900c942d3fa570689ff22389e9a0be90aca149d93a05499bf86a11144

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 caf4eb3a2e3ee5929c8db87e08a8f16d151c92d605c0ac8030713020e5ea1054
MD5 2a677345cc94cd74d919decdfde23124
BLAKE2b-256 0280e5680282764ecbf82ae7362f98209102a6f905ce39b61a621c61a4b72d2d

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b2ef09ef262bc67e2dabe3b4b00d7e2bf4556132a169866f1400f681494002a
MD5 0c637148605229e07400bed7709b52b7
BLAKE2b-256 df27377d7744e33323ef3a375ee8be3ddbcef64fd391e0a1de673847b0851dfc

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9eb72f3b4ca329ba9c5029a0758efd0d502e5d6258356d55527232849d5b5c75
MD5 aa769307a47499d45856e51f148ed86a
BLAKE2b-256 990f0f7940a44ca9c8962517357a4b7bf2144dad63afd4723b2a0281d169f8eb

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de93d135a005fb99d11d6ce562f2211e22031f37af86ae82e486e4725c1c9dc6
MD5 548afb2a1fe102312bc2ed49222999cb
BLAKE2b-256 506d08afce917967964b294c846812ab6b689afccd6a7078e5829c227a89d0c3

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f57b6534edb811b3c632ca6381b376255d983cb47536e7491b429e55f36199a
MD5 48e8a6676ab4e70efe1e9ff0935f427b
BLAKE2b-256 fb1990ee7e7d095750dc5dc17d56757e2a51132824f7d43c39c68ecba00e1bf6

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0d5ac577b197833b383183fcca726f36fdf6534a9ac5225c8d85684de7029ee
MD5 0a28d8779838da2fee7c26d498403e60
BLAKE2b-256 7391b5e750e79c4c559fb21d663b2d4547d4a7c7495e4fae4e99ffb1540680f0

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 75c0ae7533f2c5d4a8474420f141e5ce21b7c7a04ddda69f6797d27acd966ea4
MD5 46836edc332bb207e64986b8465689d0
BLAKE2b-256 9fe6fa17ada671fa51ee1e2be2c1ab7aafdfe1f501e72b98773b375ff1e5668f

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b0c646dfacd7fe064891b5d05109d8da80b4b7e6f454a60298b55381c2d221a
MD5 c3379b3b23f8564f21bce9202f0732a2
BLAKE2b-256 87a48ee49be6310f712296244c8683d1cd378c19da8c30744d6cf95cdcfd6f65

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8eccc8603b8b119757c11973b32b18f8ac3133c968df4b75f98bcf8d5506d60a
MD5 b2af8229b4d4a018bda731c5d1fcd450
BLAKE2b-256 2b79530e52043c514a5569b2dd6f292969cf0ae3789af8e37975e61b6a9efdd0

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1476e47fea29d0bfaa250c7620ff081a49b3e1930ccd232b958a51dcb99c6d8b
MD5 721e6b72e1a9317166e840ee96592c51
BLAKE2b-256 5d75bdc35b836bb764c1b5f94516887de6fbfde29c909c3182884d8594b726db

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8fefed17cec8f8c4dc33f7ad38c9bd9517c4892552e35e4061e3b7d67d00ca6b
MD5 a324546bdfd36ce71f38bcdc5d7d725b
BLAKE2b-256 0f141e73e77cfebb0843855e6a0c06ed2ad042cca32bc34f6b74d3be8562d004

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 183.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d25a3784f9c219ca50a10df50070f087d48192534e13e05bff3658d2b251c35e
MD5 e184143cfca4bcda2a4e692b3c85fb5c
BLAKE2b-256 dc334628977f9d829b0370194d1b01334ed2d414d9e93e9a5c9fc32d47894093

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 53035c52ee225f9ca598b709f2885ceaf214dab5c61992729d0abf6381e65608
MD5 1734fe466a13035fa3d3ff55e19a1634
BLAKE2b-256 c311e75ef728ce225ed3ea2224ecfe53429c3db4d62a6819febbb08db739a3fb

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ebf868741ff23aa295a7643e80a4fdf6ac3347f7b83719ec4b46527649166e4
MD5 cc04b52305757ad2803049b902c3a8f3
BLAKE2b-256 9acf4e5f4c6b0489c7abd1407b32893e3fda00bcab9460c450a2a8ff69ed743f

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47639c83c46e9647cad0694d1328c6d3f5c2f87344b75c77ea342d8971dea7e0
MD5 3df7380cc32133020351acc040fdc543
BLAKE2b-256 022bcd93f03dc425ae64ee84037d934188da70751d34d14b9cf8c095a8902767

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72cbdc54ca35696fcf76d8cfd5dcab993c7e053d949ed177b93c417e80d9fe66
MD5 51d6d94295d960a689899208ec5bd328
BLAKE2b-256 05c9ed7e9cfa997f2b5722d1bc92abdd7880c83329028614dab4ac9eba94f9de

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9bb99d2f41645f43be6dbb1fa7980003737f856ac3f50a992dd9d648e5bbbf1
MD5 5bccb7946ec9d17682b01ca9befa52ae
BLAKE2b-256 fa511696a6886cd8c3ee40b4e9bfa45793aaf97c44a79bf22b823eb70643cdb4

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7516276657d1e75a6e35d5a19972d8e4e14a3b0ea73611dee2eafae51a291ba
MD5 8d509d5f41f4beb0ff4a9a70092a049f
BLAKE2b-256 ca87ebfcd0df5c969385b73af640e9c3a8e0644ddca083655d3051ac1ee2cd07

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb1460d51ffdd2fd957ba13de5791f2b340082c8ad789dfe882a30e81a928337
MD5 a2dbc904c13ba99009556e3437cf1706
BLAKE2b-256 c45d92fd5197220fa1881db06874a2991240def942bc7d94379a94f04c67f789

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29eddb034ff6506537c49d157257481d2906ae6baec90c0a3de966116c97bafe
MD5 94bc0eb62d763b636eb9964e96162239
BLAKE2b-256 77833ca041e970d56f7073d8856f949bed035fb87d445b15f0859b1f92ca6239

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f24fdea73e25b570328ae56e3892d2e315aa5e6d9c35eaf010f2ecaa92751b9
MD5 c3f533e9a28d7d20c9c7d280b9a81d51
BLAKE2b-256 a3ec5f6dd832071ad5bf5358f294c804fa9c8659d4566dc2c3819c579ebb992f

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10aac3772d4615038609a3db884af39bf3f274172ef73f717b4ae5e2af206420
MD5 fc922907818e29d9a7d5723bda0d1732
BLAKE2b-256 fbfa626deba486edc8d8e156308338d9eb9fd94c32186aa90ba6a4fc1aab1fd7

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e581e9dcdf04f59af2e70a5d23c32f8f69cdf08f3cd93758013d68678c72dad3
MD5 b81a5feb99c81b4a5a0e18334776a7d2
BLAKE2b-256 9a1f17bb5684f829203349d27063755e5f597e9713c8c528589f063c572f6d26

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d2129b26221cc7c4c2eef38ac02b40ac40ac984320d1c785584cb0060bcf25d7
MD5 77ec2f268d2c37cddeaadd8ecbeef649
BLAKE2b-256 3c14ff6fe4e0af9b0bb9da9579212c5ea0a51bf143f6dac927e7271052e11e82

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f87274b18b9b65681b498d660421314198178fe167958a041dfa267b77c59b82
MD5 401f994e6156a25756c79b3b36149af4
BLAKE2b-256 ec10d6484cf8b6c3a7e927f792aac84047236ca01f0c45e32e1ceb5810d51bd9

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d47a3f15b14ac894860bf2542de7ccacfcd2957a210df7ecf10328373fd47adc
MD5 1851f5a26d25bb94710c4551c687d98e
BLAKE2b-256 57419509b6ca29939a2ad1f54f98a8b26e0c605b43c38f52e3475143dfca1889

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 183.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c6859e4352e7616c8c9a6f3f501bb83cee486c7760b749febe001d1b52c7349
MD5 dd0b368f7309782b7f30dee9a9d75bfa
BLAKE2b-256 b0b0d3e713e8f7fea1dfefa13321438201064d022c6892f65a00a92f01c43505

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 173.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 98b291efe6a6b1883e0a38896878218d5f67a7313357de6f234d8af11b209402
MD5 373a4aef1db7333e9fa9db16de4ecc9f
BLAKE2b-256 c539ef2d0bd255ea423a1f021f0a0d5fa1aa686857ade0b53c58ff84fb0addac

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f84e5dd6ffda82683d1e61c95e4e0325c1b8f0e1393ca2798297d257d2ba21ef
MD5 c97c06bef8526516b89b0e230236b41c
BLAKE2b-256 1028d46c801748e488aa7a3f1ab60fac8fc40989819f17942e2178252ba41a77

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2eaa88c66743fd486c73a19e8024c18263f07b30f917aa81883a574ddb6d4be
MD5 b60b20aee8dbc9139215a26abac9d111
BLAKE2b-256 b67440b67cccf12743e40715502e8095a2964961177e49e418bc216a79572daa

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1700c1f440bdf00cfb3948628e270f75be2885e890881909b48cc446e791bd75
MD5 377ffd1a650e0c7a87087fbb4d8b84d6
BLAKE2b-256 e09debb3689966363f11b097dc69bf99e7a80bf2b6475d240f100aef55cf2ec5

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8dc13d847d2ccfa6f1311097e5e49326e2ef898cd6907105b60be709f522714d
MD5 d8c0fea688b9c921b1a4c1c58889de06
BLAKE2b-256 634f941a9a850ef0a40b6f9946ebcdc61106f63708efd530d743afc4b7ba303d

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc5704d65a3690c44c56e443a267bc7036d5047ef3f29a1d3476c092b22f5c6f
MD5 089444e4c3bd39821119711c5c0eec88
BLAKE2b-256 1b77c9e0df49fc9890002f5676a0278541a9c58b475cef148a123ffebd9e1317

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5da62c875202302f25821392fac106f1a4788ba6a5190ab3fec0a60290863378
MD5 6cd69ca9fb1dd6b86b0b69b9ee52f64f
BLAKE2b-256 2f42c38ec7470252ff6b5a76394b3d4414224ac4975e0b3649cdf75f8b823276

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32d10ac5708bfa80253bed0b3be5c81c4fae49182be7c95814ac305ed6f8d32e
MD5 d7571389464fda61acfadf673d43f619
BLAKE2b-256 548e6f9b5a1098c8a6a1d6e1e430834aef663ea287e964b9f45b3673f41da910

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a0334cb883c941222cfa8c6de1ce14a8591055029f8a4e267c689b1d51a6f39
MD5 8cb9e77d2951f240b5cfbdf4d2d79eef
BLAKE2b-256 f701059fafc0da1933736dfe38228105a34e666dac28e5a9168074b020fb7d58

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb38ccf3917f0e794fa156ce581745b8b6bed823a0d83891f07482b871b72d81
MD5 538af8ceeafb1b4b3641086a304d2d51
BLAKE2b-256 7ea800dc72d7d8404c662d3bdbb715366f19880a6d0ee3cdcd012d1bfca0599c

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4b41055b8dc007177a3cd255c641511c416af233aba209f65d77e89bfaabce4
MD5 2bdeecf8d1d402ef5bf5c77bada3363e
BLAKE2b-256 0d55cebd4012c18c0ddce51a72e5f9b8ea9f7df2d2f462db5bd420480cbb6a8c

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 56f1e1bb8502618c27bc897cdf5ed23479651f0a541a90036c0750b8b34be9cc
MD5 4a52d77aa501b73f0d36079eb01dafc8
BLAKE2b-256 eea70f0e8844cdd916e7c4b2fd171398c270d76dc8929513114c4254e9e7d40e

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 183.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4c1aa2f569c497733891a01a9ade93fd79717a5aea759a87b7ee40636311cd3f
MD5 b6a5fb7d5e75ea05b78ab6f07b8d4f9b
BLAKE2b-256 d9a9b6f04f426095dbcdbdd5658f750dd20ce5e52aa4349b277720711f44821a

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pytmat-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 173.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 40389388cea602c3c61440e25dc11c727fd875c0fd6aefe0db920c4bb8dbddf1
MD5 c9e805860d0ef788b9e2673ec5470656
BLAKE2b-256 689845ecd8d9af9347946b2c5ba9b16b5f97411716fbde3a2fffe7b88cf8a6cd

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 811913e126efb823de3109094b89bac2ec8240953f97e4b79adea469ea8803d2
MD5 b57c325ab6da75fff4cc3ae2f22b5037
BLAKE2b-256 d6ad75a9d0d38c91e93d33ebdd7153d65f60e28e4a4419e0fbc48fd3a462988b

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14678d57b92fee32a6c5e3b50d2e87fb85f26f7222b7ad9492d6d9f2fc7111ae
MD5 81c360355e428a9ec2c1f33f2b4f0b5a
BLAKE2b-256 1d79074deaa18a7959003b408047aa953522a8b0998dc9528faacdfadbd50323

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e63dcf13c681457d38727ab9840b8a21ee542b3c3c73582289a1b69ff2550c5
MD5 b568b12f96b0280070d78f83f6817a29
BLAKE2b-256 5daf90ad176da943d4375aafa1eab5a4ffe37ea769563eaacf153c5f053ffe3a

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49a2f1eb3459e7b3fef4c12591d10c173b475cce162c75cc226a9907008a1caf
MD5 b59cf3bea341e780394a726bc7c86882
BLAKE2b-256 01d4034d573cb5e851015427b8356c0dd316f0ce95ce09aa087ba6bf5a1602d9

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de4fc417b99d872769c11edab7439b0e05d655856c5384b485ffd0573565851a
MD5 fd8de6510abc8b6f3841e6eb112d4836
BLAKE2b-256 c2544f3246db4dd8a1f6bfabd234df8da3ba2f077b0606d9a260937f76a327af

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f1348e25d8ed697f710fbfe3ebd2c1f194208ab7f96393e1a1c2a9454f0a686
MD5 402ca1d0d0aa9d2cd4a654bd2c8e5f8b
BLAKE2b-256 d01ff8c8d2b35771d14a941b7675e5692c99d9183ea94b82288bf8a6ef21383b

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b62f5ad770502cb8ed040a5686992e696366defafa37d35cb562bbfc41b084f
MD5 15fdd59d5ecf7ab4a08caa13c5d86680
BLAKE2b-256 468966d6f964e555eda0872018c184e110fe30127502058905e24b05eb8a4c37

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74346a98790da5d60ebf39b25b7ce7443c585bd33731dab578a8073f44b542eb
MD5 d475a51a6a2e4bcf664757396ace87e7
BLAKE2b-256 7925d37dc6f2c810c418776ebf9fc152c518bd459468377f96dfe9ef2f88cba1

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9f22a7e0aa9c3fbdef9494319d931bea8f20a3500f8823e296a81d6e5d8c91d
MD5 e25839330f7c2fc4c44effd0c1d509c5
BLAKE2b-256 4338ad53bfcd89b126373dfb55f7fda1ef977ac6d127714e9964716be197ae29

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 631ab4b95e68f36aec9ad494d45d53329457a068f1bda418bd974821dbd15508
MD5 9ba93e183551c2a085a8ec6acb0fed1a
BLAKE2b-256 447c99cf115de3438100785271c2f8f0faf4546ea0ddfb00515ebff05c027df6

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7e36ff9da51b451b22637b4fffeaea9e77241d3501082bc0ffab6bd3a9c73dd2
MD5 62dacb74ba679b1da6889718e2149b78
BLAKE2b-256 7de146ac6f566306896486f76fff62b5238a3dc956b185c0cd0d0c43a75a39d1

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e21c28fab9b27a1893f7b50d23355e78826267f838047205ff42305a508d19c
MD5 9da40fdf8550bb4fbfa86fe1137c0c10
BLAKE2b-256 d19787532130bd91b3dbdee8bb6b2ac7295fc412a444ba0969f82262db40f510

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70fd67908f2559c4b80c155512cf5c668367f9998c9a5cd21cecde9096922614
MD5 d4b1f8159aad91ecccb3289abb76eeee
BLAKE2b-256 4f3da95e3a716889a2f33e11721d7c9c81848be45588f55f77517b13155c6e7d

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4e9029e2fa5239b688ab1361e38a255772993760fec87a5ab5f82f4dd94d2a7
MD5 e81a27ca1032310a4445b871f1a85a33
BLAKE2b-256 b5559f0e4b971e646b61697540c7c81e1cfcf38d796992d738f3698dd6f59259

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5eab07cbf753156eee575d3c62bc2f9d4c2001e7ae307bd9ff19fd1716fdb075
MD5 a0d6ada9ef8ce538f5819ef68cff27af
BLAKE2b-256 b86e1c6a986c5e5e640367eafd6419318afd25b3d6942a67b3a90901fb1def87

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9db81a4d4c5789891cdbddd2e8860c0c8c046238f8fb3451a09debe532a17ba
MD5 a03c4acd0f4a14075a834db8c99f7ce5
BLAKE2b-256 c8c5e8703024582d698b605dbdb16b8907db8d56941f65e7d4c5218db193127f

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73cfd34f607e2b5faed25a015ecaa042b61df805510aeea4840a2c4ff65f8878
MD5 6cbc31ce920ac6720cf1d1365a49e43f
BLAKE2b-256 e3a0514d255a7805126a0f8046ab91c0c8ff95f5b9471a52e63e702e880f849d

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12f954b54abe134ffc6641bce55fcab1721b898249df890ace5b29a38d4b7759
MD5 21c1d63e0bc73397ab5f33a1a65cee12
BLAKE2b-256 05371133e4ad88f77ef2107823c06d8fcd073840267ea8aabb6eb18dc8f76cae

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efb7eaf41bc936d18b40378533c2148a8f27921467b607abc1200a03a0045d08
MD5 2a7e42b6c0556f176bca53b94de29679
BLAKE2b-256 d1ebe5fb2b5f7017a57beba6a566490c5337f672cca4716f80baaef0b84b17a8

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59e8d185e40366b1f81573a3ba8f5c70b7caa2899f68609b688153b94c869165
MD5 452c0dd0a18606ae73d9b7bb1d4d7677
BLAKE2b-256 9477e4bf6eb52ff3201ff3ca772cb9f1b2ada1181cea5183865ad75479a80d58

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9201aa4337159d9d6229a7049ab97b690b41dbf0946395a859fcc1ffa5b49850
MD5 ee029ee7ca511b51a33082ad6b67da87
BLAKE2b-256 35e5443976bb3c4d10985782896562c241fb54d043254f041373412314e6d0f3

See more details on using hashes here.

File details

Details for the file pytmat-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pytmat-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4c847ec2d721255f7f160b5e6251167e07581b3bdc0bad19d10ca489f1e0f4f2
MD5 bee83ac711a76ac000861589c2c4e383
BLAKE2b-256 a75f4e39c628dedd20544ca7b397ab1bebdc51b40c60591e7fdeb055803b9583

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