Skip to main content

No project description provided

Project description

PhaseDM: Phase Dispersion Minimisation for Python

PhaseDM is a high-performance implementation of the Phase Dispersion Minimisation algorithm for Python, built with Rust. This package offers significant advantages over existing implementations like pdm-py, making it an ideal choice for astronomical time series analysis.

Features

  • High Performance: Up to 10x faster than pure Python implementations through Rust parallelization with Rayon
  • Better Compatibility: No Visual Studio development tools required
  • Enhanced DateTime Support: Full support for datetime[ns] format (not available in pdm-py)
  • Coverage Analysis: Support for statistical coverage analysis (Coming Soon)
  • Future Development: F-scoring and PDM2 implementations planned

Technical Details

PyDM leverages several technologies to achieve its performance and functionality:

  • Maturin: Builds and publishes Rust-based Python packages
  • PyO3: Enables Rust to interact with Python code and objects
  • NumPy: Efficient numerical operations in Python
  • ndarray: Rust library for n-dimensional arrays
  • Rayon: Provides data parallelism for Rust

Installation

Prerequisites

  • Python 3.7+
  • Rust compiler (automatically installed by many package managers)

Option 1: Install from PyPI

pip install phasedm

Option 2: Install from source

Step 1: Install uv (fast Python package installer)

Follow the installation instructions at https://docs.astral.sh/uv/getting-started/installation/

Step 2: Create a virtual environment in the repository

uv venv

Step 3: Activate the virtual environment

# On Windows
.venv\Scripts\activate
# On macOS/Linux
source .venv/bin/activate

Step 4: Install dependencies

uv pip install maturin numpy matplotlib

Step 5: Build and install the package

maturin develop --release

Usage

from phasedm import pdm as rust_pdm
from pdmpy import pdm as c_pdm
import numpy as np
import pandas as pd
import time
import matplotlib.pyplot as plt

resolution = int(1e4)
t = np.linspace(0, 20, resolution)

y = np.sin(t)
# t = pd.date_range(
#     start='2022-03-10 12:00:00',
#     end='2022-03-10 12:00:20',
#     periods=resolution
# ).values

min_freq = 0.1
max_freq = 1
n_bins = 10
n_freqs = int(1e4)

start = time.time()
freq, theta = rust_pdm(t,y,min_freq,max_freq, n_freqs, n_bins, verbose=1)
pydm_time = time.time()-start
print(f"pydm computed in {pydm_time}")

# Find the best period
best_freq = freq[np.argmin(theta)]
print(f"True period: {2*np.pi}, Detected period: {1/best_freq}")

# Plot results
plt.figure()
plt.plot(freq,theta)
plt.axvline(1/(2*np.pi), color='red', linestyle='--', label='True Frequency')
plt.axvline(best_freq, color='green', linestyle=':', label='Detected Period')
plt.xlabel('Frequency')
plt.ylabel('PDM Statistic')
plt.title('Phase Dispersion Minimisation Results')
plt.legend()
plt.show()
plt.savefig('theta_rust.png')

freq_step = (max_freq-min_freq)/n_freqs
start = time.time()
freq, theta = c_pdm(t, y, f_min = min_freq, f_max = max_freq, delf = freq_step, nbin = n_bins)
pdmpy_time = time.time()-start
print(f"py-pdm computed in {pdmpy_time}")

# Find the best period
best_freq = freq[np.argmin(theta)]
print(f"True period: {2*np.pi}, Detected period: {1/best_freq}")

# Plot results
plt.figure()
plt.plot(freq,theta)
plt.axvline(1/(2*np.pi), color='red', linestyle='--', label='True Frequency')
plt.axvline(best_freq, color='green', linestyle=':', label='Detected Period')
plt.xlabel('Frequency')
plt.ylabel('PDM Statistic')
plt.title('Phase Dispersion Minimisation Results')
plt.legend()
plt.show()
plt.savefig('theta_c.png')

print(f"{pdmpy_time/pydm_time} x speed-up" )

Takes obvious inspiration from PY-PDM https://pypi.org/project/Py-PDM/ and Stellingwerfs orginal version https://www.stellingwerf.com/rfs-bin/index.cgi?action=PageView&id=34

Comparison with Other Implementations

Feature PyDM pdm-py
Performance Up to 10x faster Baseline
DateTime Support
Coverage Analysis Coming Soon
Dependencies No VS dev tools Requires Visual Studio tools on Windows
F-scoring Planned
PDM2 Planned

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

[Insert license information here]

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

phasedm-1.0.0.tar.gz (11.3 kB view details)

Uploaded Source

Built Distributions

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

phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (564.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (595.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (664.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (566.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (451.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (424.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (403.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (564.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (595.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (664.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (566.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (452.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (424.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (403.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (389.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (565.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (596.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (664.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (566.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (403.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (389.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.0.0-cp312-cp312-win_amd64.whl (227.6 kB view details)

Uploaded CPython 3.12Windows x86-64

phasedm-1.0.0-cp312-cp312-win32.whl (222.6 kB view details)

Uploaded CPython 3.12Windows x86

phasedm-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (562.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

phasedm-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (594.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

phasedm-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (663.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

phasedm-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (564.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

phasedm-1.0.0-cp312-cp312-manylinux_2_38_x86_64.whl (392.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.38+ x86-64

phasedm-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (391.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

phasedm-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (451.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

phasedm-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (447.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

phasedm-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (422.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

phasedm-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (402.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

phasedm-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (387.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

phasedm-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (341.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

phasedm-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl (350.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

phasedm-1.0.0-cp311-cp311-win_amd64.whl (227.1 kB view details)

Uploaded CPython 3.11Windows x86-64

phasedm-1.0.0-cp311-cp311-win32.whl (222.3 kB view details)

Uploaded CPython 3.11Windows x86

phasedm-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (564.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

phasedm-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (595.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

phasedm-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (664.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

phasedm-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (565.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

phasedm-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

phasedm-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (453.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

phasedm-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

phasedm-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (422.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

phasedm-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (402.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

phasedm-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

phasedm-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (345.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

phasedm-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl (354.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

phasedm-1.0.0-cp310-cp310-win_amd64.whl (227.3 kB view details)

Uploaded CPython 3.10Windows x86-64

phasedm-1.0.0-cp310-cp310-win32.whl (222.3 kB view details)

Uploaded CPython 3.10Windows x86

phasedm-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (564.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

phasedm-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (595.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

phasedm-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (663.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

phasedm-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (565.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

phasedm-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

phasedm-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (453.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

phasedm-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

phasedm-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (422.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

phasedm-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (402.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

phasedm-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

phasedm-1.0.0-cp39-cp39-win_amd64.whl (228.2 kB view details)

Uploaded CPython 3.9Windows x86-64

phasedm-1.0.0-cp39-cp39-win32.whl (222.7 kB view details)

Uploaded CPython 3.9Windows x86

phasedm-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (564.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

phasedm-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (595.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

phasedm-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (664.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

phasedm-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (566.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

phasedm-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

phasedm-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

phasedm-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

phasedm-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (423.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

phasedm-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (403.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

phasedm-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

phasedm-1.0.0-cp38-cp38-win_amd64.whl (227.7 kB view details)

Uploaded CPython 3.8Windows x86-64

phasedm-1.0.0-cp38-cp38-win32.whl (222.7 kB view details)

Uploaded CPython 3.8Windows x86

phasedm-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (564.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

phasedm-1.0.0-cp38-cp38-musllinux_1_2_i686.whl (595.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

phasedm-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl (664.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

phasedm-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (566.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

phasedm-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

phasedm-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (453.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

phasedm-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

phasedm-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (423.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

phasedm-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (402.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

phasedm-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (389.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file phasedm-1.0.0.tar.gz.

File metadata

  • Download URL: phasedm-1.0.0.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0.tar.gz
Algorithm Hash digest
SHA256 a5b89c6961fda3ade5707d7f7a4b264a840717b41da994e42f6aeca21e1fcc0c
MD5 50f7aad80b7a5c70e12d2d147a370963
BLAKE2b-256 d58ec01eba0bcd48d6bd38924bf719bde95d8284ad50d2f4c0616a991daee840

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b60ed597b6accef10548d74fc81062191d81e39df34c3038166b1d2b89ed754
MD5 b028dd0624eb8d12c2a9ae0d833fd0c9
BLAKE2b-256 f06d7ce589d24a4715f5c2038b62d84e39ca63f3530cf5c2358e23f1f3e51f7b

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a86ee2daeef299c2b61f2eb3286d43a331b880a09c2c10ed34bbf444146c58b
MD5 9c3cb23dc9ba0ffb51d083d400160bf4
BLAKE2b-256 8dfcab3e11866d1ff543e5b64343d322bf0a5ddb73acfe76e3fe2d6686e733fe

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 889df82d81381a3decfcb149f4fe01310bf73fd631562fc21be1588f0153c36a
MD5 6dd28dcc79114fc1db168c7661d913ba
BLAKE2b-256 62c37e97bd439a03c3dd33f0d57507cbe11f1f3f6e34d5fd21e4d7cbc93703ba

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1b2ee5957318f8c57bdfc2a7ee703ce4d8b9aa34a55cd20eac67e0282cf2741
MD5 8098543c6839a568740d178146d6d335
BLAKE2b-256 f5b67284ca264f538849d1fe6957ab070b5bc31bbf448401fa05f920e1c62378

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e8c7a806e990661137f7d60f36684b86a8cb750e91cefda7f18e08ea3b8a231
MD5 9e60587c4a42b3000c149ceee14fd0fd
BLAKE2b-256 1efdd0d340bc8fdec50ca2313edb03260c9b856aff6f828bb84f35aa7a875a35

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83eba1bd8122b76d22b115de2bee983a62fcfccda1fc9e77d723c9daabb53644
MD5 4c5c2afa41ac566245a7f6bc8d950aca
BLAKE2b-256 55a8daf6bffacbdb3ec29efb62adf6d16389421a2c5ec06e92ab2f8987b48615

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 271b792d39c7a4c28a12b7cb8110cc3a08665e81c1f836cfbc0cfe0ce847127d
MD5 1e3ecf0886de2095e620a0b5423df633
BLAKE2b-256 ec7e247c0694147aa86bbebc8c22e1462ae831f22d3af1bedb7d2b1c6ee5ee4f

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c13960df52ab8a1cbbfeee2dd72d8a2121792b97ec7b525e85f21266632ae767
MD5 2c7cbc9992f73c128e479cdd31b561ad
BLAKE2b-256 8638b1341328949dbd3ca5c8dab176644cfa8674d590b895bf207d5f822652bc

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82ad0e8f6c8f32606d73b39d82cff0df8db89b42a1b215a3279e3c11b1de1b02
MD5 ddc1f68a2107aedaf0668bbc3cde4e74
BLAKE2b-256 cd3d8fa562f2d76c08258bb40958ecbb0e6a67cb2fcecf307663abd1f202c9ab

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8f56b241adbb43ad853c93f0874141c26beb1e4cfec7f2debb2260c511cf7ac
MD5 d270bed1fb699ad67cd23907f9f4dac0
BLAKE2b-256 8ee6ba39d8d91bb1494c434b3fe067bc905a484fe696c01f27e18e601bdff39c

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b606af18442e8debdda7059ab773fb759007a8ff4682bcd4175fe1aa1bf5ab9
MD5 1c3da7d7bb0c255fbe3603cb8d903613
BLAKE2b-256 98c4220df735f21ef6ddfb44d61c40bf47dbf146ecec8de71e8087802bb5bff3

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ba37c274493e4b38571bcb1c6b205a0d0203c5bbbecc026007dfc03e0631fc2
MD5 1762c5a31f96ae55e722bca083f2ea10
BLAKE2b-256 d7a3005b2c77b6b0d692fa8a2d8d2f2af25183c419d3d6fe6d3a0a2bd61bdab8

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44e63d2b5fe33531706259acd9809ce976ec7d9be31cac9d775dbaa9a6c89d9a
MD5 f0ab69ba9f24064872dc73c939e17f44
BLAKE2b-256 f5f4cd1e46531949069697871512e40d45d9ae53c9524bb6de959ccc1df3908e

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb69125e63ac1694238a06ae36d1429878070af904d7f5045b427ec20d7e43f8
MD5 9328378e0e23e1315aee0253fc35ce9f
BLAKE2b-256 20241fcb0fe7d93684c64225c6ac70a4af6aeb2de6af6a2dddb3c8d96cbe2649

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd0f5e3ded05cdff29768f07b0b987f78cf9ef4452f4eef5d5ba6a249d691185
MD5 441e1371d33afd2821b9a9b8af027366
BLAKE2b-256 d3c478868caf4fb6e74948de15a93b1f9223d25fbe656ecfe3ea77e723bf7771

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dee3a485f8bccab0bc18b0d78ab5942af68459e74f9dc68f69a74a3475affd34
MD5 aac8e3c652d5915b5f529c2ffe307c46
BLAKE2b-256 d2b1942e39652582d60f67e08d1e52ee8da5aac5c16d8bdbe6f7a4aab33fc240

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63b3263786e2e213f8ad213a7d479c8fd9f644e4a4b360dc0de4b72ddd8f7fdf
MD5 5dc664338f4dbe4ad464468ccaf74814
BLAKE2b-256 108ea932094a2c4dd592dd4f265b54bf7a553369e9b7fa9d7a792d0627d82618

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c4e4d81583d2ed48c45c6f31941fbbe9251513175c5fa28eb0bb61540d612d9
MD5 34b9a8f68a17c4c066fe1dd90aee1024
BLAKE2b-256 6d95de927d6b70a8c5e989fbb72a36703d3d78690fec46c586e56ee10e5c38ec

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b1eef763f1a046305e79e6146e3e225192443227d64b9b1a7a44c80621c64b3
MD5 017ce5b59ce3f5cdf7cfc9be5468c1b1
BLAKE2b-256 b0ecdd64b81c7b0c48dbe7753ebb8e94b2d17436c525af4674b50f06f0c7bfb8

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18416254af9504c818ab60b2083928135758e6646c1f33746c25b4b30b0981e2
MD5 d694ded0144a178ab042464996de96dc
BLAKE2b-256 a10a638b806400c27b3b2f97338f8b149f6ce22a016004113c6adcabcc7f3574

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7431c7e234aa3ffbc3e334431bd75001d61b4f2fe2e492f888229b042fb669b
MD5 bb0004885f3b8a5f88b75be6feac3877
BLAKE2b-256 d81c70d8da60d7bbfb9d61f707512504456f2a46e61d9b85873738455f9b97ba

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86e2b3c301f170d02c3edb7af2d958df5a155126e837730f6da99f6c339774eb
MD5 abd2c0bb144abd7c0d788552683120ef
BLAKE2b-256 a4c1728bd90389e297e535840a7cf40b4c1459fd17b274741d7cde387c41aac8

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70ab0fa7e9ccc3ed4665cbc36021a31d6c8af3f388be8ede8e7925d64f97cb32
MD5 c2223e94ef2f51efdfbf2a5db85ebb9a
BLAKE2b-256 53c75a692ea25f6600a7483e433a9454fbc142efbf83c36242b1abf015c868ff

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8193bf650707401aeed7c60495129dfed93d572a7efec2f4435b6b4fb7e70fe9
MD5 eac02d70fffb0e471ecc280a86d00f2a
BLAKE2b-256 f437c4a412d80065f2ea73e4d9efe2e3c4250245df5112113bcb2bbfcfd3edef

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2466afbfe15a12a9573eaa57760d0c5c11d2c46dd42eea92b762645ee3d69a8e
MD5 cf666b244e51092e18dfda881b93d74b
BLAKE2b-256 10e75231a7cd011bfe7887e3caa0d7e753870fcffa23527da6455cf199a52571

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 410a97a40d31b77b09eebfac6d3fa7599fb8f0a4d3495017db48400c1a6a198b
MD5 492338d3d9a9e143c0aa7fa73e452c7b
BLAKE2b-256 ff9789cbd3c623c1fdacfbbfa75e9b4587636746cdd79335995c0926621018db

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2c633eb05a29b306aa7057b460824863b9615782b69387e69bf6ba779f79e59
MD5 85fb5277eb681df62ef9d340285f098f
BLAKE2b-256 6bb0639487584d9f6a6bb4034d56271f5f2b885277804ea4281be903b973591f

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c50d86d347595bf355010b000c6862f28e1372f4e13dcd66284a38a1cf958ab0
MD5 0f2f599633e7743eb86e92b3cdf2cb94
BLAKE2b-256 1fdbd828e0ff0df8916d478fdd71f11895f34674cf03fcaba2f50d7e14e9f3a5

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 227.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6c2eddbd4a28fc36616adef57ea30d0797e8cb9eff06ac1b81d71c6adc13da04
MD5 1398c0e22a2ce02122f2bf5576acb488
BLAKE2b-256 1165196410ba2552e9df86232067f7d7b920ac1d31a68ddcc5ae5f741670b568

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 222.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 16434848bcfb5db8fdf45ceaafd62cd19ea4bdd975867bb38d6aaaf68d3bc9d6
MD5 44b2dc967e0ca354351bdd137c71f1ad
BLAKE2b-256 a55a7c84e1a720d3f37784af47bf71ca1aa6dd2d7861f4cdcacf7733b67b8933

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38cf4ea90fb17d3613596a653c3072eb4b403aa15f3ff0fef140c3e896340564
MD5 f8da10ca7b0376aaf94123ef46cd9f97
BLAKE2b-256 2086854f9c706268ca8913d10feb4adfe30b8e69399b1486772832822288d611

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c195c928ca2418db9f0513d3a57087dc2a5bea373b5ca031c2d4cfa0a56dfe55
MD5 9fca033bc5edc6ddcd8eaa14a6576fed
BLAKE2b-256 05b4a0e4ad0f042e09263e8368d7e8de3e9e03b8d10c5d77b105d072199e2dcc

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2fca740772b8988854f47443a79a16be4d01fccb88f3a5a015b64fba2e56e5e
MD5 b25fe78cef210c463bd725bc74655fb1
BLAKE2b-256 be42e66f911d3008713b53e3cd6e5e91e63d3b0fb72fa13eae72ae50b0c9a19e

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9203f3af90b6433af8c619af2e30417f924f5b37901ad4276d41d5bba70d1b5
MD5 286960ff03baaedf35ad1c9a2f5971fc
BLAKE2b-256 76e0f2740c334c5a2b2d2b36a5dfa264d46a3a445eb358258659696efb86ac9c

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-manylinux_2_38_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-manylinux_2_38_x86_64.whl
Algorithm Hash digest
SHA256 f69572c61b85bc8824ec2532eb58293c87f6fad14f3cf6f9ead25b25d33559f4
MD5 dd199d89da8cd43cac05534fc5a2a0c2
BLAKE2b-256 d36427548f6459eac8cb5f2c9336dcf981d5b79abcd030c0f8d2c90b62dac519

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2886643aa5acaa78405fb71e96fcb95b5621d90a15de3a43911608de75735a66
MD5 621402aa632a2e13923ba290a0adea57
BLAKE2b-256 9e4bc1030f638f76eaedef2fe02508798b6e342457ba71956247e4a090b8bd9b

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15cf2964d624b5bbbc9c208378733d12c4c90b3665c935ecc70e8fe9f3c8651c
MD5 d3e6c4e54b2be0b546cf18ddca89b2cb
BLAKE2b-256 832cc2f46f0ec909f3cef8a4dedf80fa1e8792cf9d78dc54db67aa3a45fb548f

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c422feed700a0502c17359af1632c1880f23f163570508faeb4fb7c7dd437508
MD5 bd73cd8b20f2a5a0ec352f4fbfdd96eb
BLAKE2b-256 e429929ac2edce2653fcd47b9413ad5c4ef0f9dec23b98d2095bcee9c4f07dea

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36d1d3541063ff6cb839da5e7c4eca7ac3687401a899d0f47a35892b25949c6b
MD5 a729f28f11fcc6aa4c273343f6389e47
BLAKE2b-256 d6f755287cc19ec54fd83367d7b4afd7f05dff35b0de15644d54de697a7b39ef

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ad9ab8f68a2c19a614681872db4d926f5d9dab7fddfbc73ed5ea42b37a8f0bc
MD5 7cdcc01d59d28d54b2406e99650572c4
BLAKE2b-256 d7cd867a3529838cda3099dfa69bad87a15cd9f10fdf1923f0ef4c8042eb720f

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c77f1ac5d6fbb8e18457ddb47b129a9b34fd31e59563702670d3316427dc0411
MD5 bf6ad738b3bc25ae44fa0cca830063d5
BLAKE2b-256 ab683fbb2d4a74c5220aa1b39afa95ad6322d3ec395b22e51d49d5b3edf89286

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0957726f625ac9938a7dad49b03aa04eaed25e0326fbd1b5e48ade08f1056922
MD5 75c58faeea7ade238147d6e2f5e0ea15
BLAKE2b-256 d6948e66a5656a68bd835944582c98a60c431fc7c353d02dc11ee13ce3f106af

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 289b6d27c4c9f77c92c208cd580717ec3db5b4939ff5c236854b26da2525b1e5
MD5 d6bbe49e05eef3af9a34eaddaa170ef0
BLAKE2b-256 ccfd045b95e3ccf693dcccca90ff3df5c6b3b2ba5d2a1740e83c9481f16d5585

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 227.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 04bd5a477a4acfdac8eab17ebe22fb46f76cef21b866d932929d07782b04a937
MD5 d16b891cfc88bc42be3624579654e12d
BLAKE2b-256 540a1240d3ffb16dcaf409d2a6859eff59781c75509cb26b19983477872005c3

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 222.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 32bfebfa1ebbd58ceca48e7316d26010dcdd2b7622ec719293521ff7ce2b7b95
MD5 69764e686d6596bf75874deb22029a32
BLAKE2b-256 886a798c3e8134a5959e96b32ef036df00ee02a85d65c218ade276c2e9237314

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 003d1c9f5537f503410db377c11f4a723aba0e8ae5fa0d9c898cc493a79511ca
MD5 846b0289113eceabaecd35def787356d
BLAKE2b-256 b598724575c4aebf628ac6c0fde62c92f11c531ea1b4c19b39a8abd809ae9ce6

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1ffc740c591297bfc4e66349d7f96f6264ed6e4ccf87d11950754202d3a48a4
MD5 0b2fb2439a8c7f3bc11b9c7b05bdfa11
BLAKE2b-256 6eeedafdf96e84342943e0020d075fbd4dcc795fca0b25eeb0ffffe78aa13e54

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd75a97111dd3fc82364e97add6b5b3c2f6851742bbc70b7b5d7fa7e2782cc78
MD5 3dc52db0d97f6052727dda9caced99fc
BLAKE2b-256 a15924226ba78a922aab08296997cb6c797f89a8473bd451b9e01313f445bce8

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28ba0df3ee759a9f3006ed7a10d1525d3809776f342a6e6eab7e6d04bc0f255c
MD5 7332ea23af773b5685e53b6c18adf33e
BLAKE2b-256 5b82abc99b81c1dbb6a0ba684c0d50d103dd47d45d032df39bc9293554645945

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bab0dcc8981c8b9d96e31e38ba65b18480da1198d28a7e73af1293e72b82cddb
MD5 d70e4d9bb3da5d83d667da355a19b114
BLAKE2b-256 597d7ad13ea2f71fb2e32d9f15daf43508f2b179184fb7adc6453dd3e1702cbb

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8910549d15e116e3bb5f941b329a65712a842a8dfbbd436e1d21784029f920f
MD5 56c025ac95ba43772040d3c6edc9bb8b
BLAKE2b-256 f4c0dfa6dc211542ff1fbad0a53cd91aea596b88750004a2066918569abe3222

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b4ad5959ec22121ff242a1716322f9e26343d5d7b40eca550262b19517a69e0
MD5 4aa11bba3e14ad6ef7002a0e1c634e21
BLAKE2b-256 2fa59f79a35d54cdc0c9a09c3caa6d8cbf3806cfe692b3a323f3ecd886576a04

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 908b7e35ccd482c3c94016f1ad41999ce70f182ca132d1c6748d0eb29f7de157
MD5 e8bbcfbee85c0b687438ceda31e26706
BLAKE2b-256 17fbd7902478b10014f0c734a23bfafc40b710d0403e80a694487be0ac8cae05

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 391accc8d93d0f80d2761119b936a9a5559ff725c0bdd4042ba0c8e2403bf351
MD5 577f763efddcb6d1204fcb66d827f161
BLAKE2b-256 6a635644e66f04c493dcda377be002b60959ea01d93ba2cbb315b9494370757b

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f276ff24c8cdbf0f2b2ab1c3d7560a8c87118e45760cfb47410440e7859edca
MD5 dff21d5121f870c9a5e24684c067e7cf
BLAKE2b-256 6f1af72a6fb46610f6b98e8533365092ae2f5a17fa928d4dee40455fd1c309e1

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d550b02abcb531c0c2d3914634a0e0c03ab5897715b92fe4a9ec572435850f36
MD5 951833283476fc18b1718992e2ea0fd6
BLAKE2b-256 34ef04fa034829419e3a0c209669218b910ced5aa7e8866a9750d7b74745f3dc

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b82a5d0d61b72f013f2d9f683cd04d53c4af3acd9ad46ed4c09721e05af0e836
MD5 4bd27e9ad30e67742465a1fe4ad642ee
BLAKE2b-256 eff5455db2f8b871da208e1c34056b416513ec430f127abd16fd515657a362a6

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 227.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d7e54b696f06bcd9be4cc7c4246f258793dab7b9f124643fff10d5831ce931e
MD5 7adbc0f07ec8abd0b681f60875612676
BLAKE2b-256 2f050e9556bb14287660a5f6018c435847180b9d71ebb09b0e3437ab0a0c2b1d

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 222.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9fac06be2fef015902993e0fcd9967fd707ab1b3d9cb902f53233fb82bcbe106
MD5 661315f6d2c0b6bf2d78c5a94deefee9
BLAKE2b-256 d039b3e860adc5d45fd9812ab235c751fdc73cde974f470ca9b8efe1410bc876

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 931b25f45bcbfed8cca8666b5e12a3eb12d38f64be397633698c661b4bfef3dd
MD5 d466bb0a7687fa7b305e5b82db0b627e
BLAKE2b-256 acd0d4334c1813cc4817228c75b0883bd8eb4d2dae73028feedc096cee0f2214

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7330b09650283923611dc5268439a76351b6c6a5aa979538d984748350e86c37
MD5 260512fe730ad45cd187d73433b496c3
BLAKE2b-256 3bf9f258b8921d3a1ef7c164397842006b9780dad87f870aa204e10483f4f4af

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d97cc07efe3c7b277d468615657cf4a159639d75aa475561159a24fc4d66bf5
MD5 147bc1c84895cd39cc9c429a93bb6327
BLAKE2b-256 27b300e6d9caa86afc61fca295f56ad02cc4cc48523c9f43b06fb79c451a2f7c

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c7f44f77da8e0a7857c4c213e9c89c4ba8b524ffa6642ff25fb7df0d3afb6ec
MD5 1e6c9bfda290413af33517ced4d3c9d2
BLAKE2b-256 b3b745276deb4185eb989664091236905467cac3d4e10d9ae9e1627841d3c499

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fb91bcc3fdba32c849be6e0710405d1a78702ebe1fe85792829eca1b42adbb1
MD5 81e6780d26f587deb1f7f912fbcc402e
BLAKE2b-256 f6ca334a278106f57ccf11f39b5d2d9e004201fc9cb4a673dab7ca3828cf74da

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d34ad782b9424152b8299d62f845affe5d51df666531d8159da7d18022f3298d
MD5 8598aaf02d73113b713653374241ad7a
BLAKE2b-256 6a07c65eba10bb900d9349a1858e440cec81699023f2f05eeacbc7856914e30f

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97c4457630c74695f77b970da7715df67f8f446114efb2fe958c8c14afbe6697
MD5 11ec69f8ab906860cdad44ef4f260300
BLAKE2b-256 cba3af1369485705580f084e72f87442b9fccd3e9122b40dfa2eeaab016f8b35

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db2830e537371cd04a32685ec15d9b90178fb1b3addbae0b2ead3f4fb6b51251
MD5 53d2b6652ec84c6e348d227faa68949c
BLAKE2b-256 d2380d25217374f539f1ae4891aa1ca5d57d942bfe33e759a1a1c9957d372195

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98b4b38214328d734f06b3101f61266345c25c70af6d00dc19b4d02247d8d40b
MD5 1c54b15ba6a5bb12be40d347b4ff6a2f
BLAKE2b-256 53a78f5f96a3457479606a60a8720656b95cbb4219b8ba119ad30839e1bcfc87

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69d8dd6131c262a0aa76fc7105fa79bc285468d24cb55ee8b1509591495765ea
MD5 fce54f2348098d54425341376315dd55
BLAKE2b-256 7cc572ceb5dc646e335be44a42cf44a8434adfebdf2bcbf636a671aff6f12615

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 228.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 db83bca2e3a9a7fca4570a05f54dd8ed36fd714030a4999282a352a8713faeb2
MD5 f883247972a4bba5f6685dc46b0846c3
BLAKE2b-256 46d005170d329b84176ced11506ee0e9ba6cd550d24208cf507511dff4407ae8

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 222.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ef4c705658e8486f160795124e1a8a26ad67b7170b040f0e0594db1ffde740f8
MD5 14dd55d09c10cdc497f5fe20fee8ba5c
BLAKE2b-256 7329a885e71af494503430b4b2410c5b330a260dfec6cb12c0247417cf2c0bf6

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41e908788e3cdf057452911c32539241e1ebc45e29ac297b9ae0ab30c5eb5264
MD5 0c57d3843a270de5fdab8d96f98f13a3
BLAKE2b-256 4ca875646d0bbe6243c25b8768644b7269ff81fb3ee9803b5b40924eb56b3dd5

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31999a8595df6772a272b8579119fd42df32e2bfa907767c95e22a884630cf24
MD5 8ba08c3e3971c1545401a54c22c9ad77
BLAKE2b-256 db6377dd2be04684b6a26015ca19153309b62cb8e9d91448ad4ee79e3382c8ca

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c11a9ccbbfc2b6264a4e7b0deaa6548bfdfec6632a8d09809fb757df20ff386d
MD5 0b853fec04b6fe80a88474e55ad88b69
BLAKE2b-256 5d8d538b09b8997de5082431eacd544da77b91e7718a2930d13afe6f07bf32ae

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c4c75b3b55b2783fc26f04f679f54c68475cc45a3dd086c96a9b0589e0dc7a5
MD5 1bcd8fccb277f7a615eb350df8a18828
BLAKE2b-256 05e7ebb2084f2d8d887978610828426eecbd999519ef3e741b2508f1d11deeda

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4789d4d5c1e58626a18cb3e22b077ea402bd7bc3557157b0e5a3c243cd90d144
MD5 72501333edd259933cf29cd032b6af8e
BLAKE2b-256 0b005d7682868f851367a1e002b5f17cbb05ba101af059020331e59d1bbc6641

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 588acd226c7335ff9520e35d1c4d0565bd6206a0effab3572bd41a44fbefced4
MD5 7133355bacc217002b831a0ceef02a97
BLAKE2b-256 6947f4b54c8fff2d995e7a058163044111f629f624cd24e4cbf55eaf22d82be8

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c58064c47207f35f9ed86eaec5cad0d13a1f96906da232a5a402b27f1fdfd5aa
MD5 678d374e348f5f17facb2ae7833cc132
BLAKE2b-256 2d49715833bd9e6522ffb6183ec254a29fc92d6867eafd7fb853a408f500ea30

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 369184bcc4faeb492cb071d596fe29f39970c67f3f3b7fac42d87e39e5dba804
MD5 118aa001c2897acc5bf53de6f496eadf
BLAKE2b-256 0f403cb1dcf5ba9bb6489a4efee7b4fd02014807502b358f567ee47ee89eee52

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a4fab0741e6378ae3398a346a663ef59f98ac05968ce0fb1499226e11d407a1
MD5 f8c11c3b5b65a72751ff4986a5cde03c
BLAKE2b-256 59472cdb00566bacbd04ed767f4efc8c59900a9069945417ac98b2cb73440eb4

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92760a1fe0a3b2c89d2b43e22359b57dfd0502104a6781666c0708ffba565ac0
MD5 03ea391f9b72ab86e8d35b67b7f0c6e1
BLAKE2b-256 205271dad35282bf5b94aa14c88327f8343208991f28ca56db2dfb3d86c0d593

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 227.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ef4a675ca603138bdddf56c8cf7fa7ea5d0888e395bcf64dde35c870cfb6f298
MD5 64ebb3209843045a75513afd02b2996a
BLAKE2b-256 f351e64b8e79bfa4c7e468b7c97342642e2a5ee9d495a43a79b401aaa4aa34ec

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: phasedm-1.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 222.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b8605387e2b1905825a88cee8ac52b3a05dcb6424eb23030b294d5c1e42bfa97
MD5 82da3cd4b1ed4dcdab1d8ea77b08223c
BLAKE2b-256 72c5b75f918baade330e3af40e51f1d19dc4b26dcb9ff540cc7168103d1d799c

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 110592672c89498392f6476af6d92885c785e937aed5fb2ca2308c6d437abc67
MD5 6072a27a8d0a0548491ecee8440abdd4
BLAKE2b-256 1096d071e8adf2a54f634603fb7316606e427a2f6aa4932664a40e55f3a51397

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fbddf9202fd313a17d80f0ec1a5c866129b2b044d5254e28380db5e237fbed7
MD5 b723848d5fbd4470253c006b1131c48a
BLAKE2b-256 07b866710de242adda04bbe23636bc4b19a3e9f7a0e2ff88ac14cfea8f05315c

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d77859b610d89bfab14e8e61c42918ffb7a819990c71d0f55368c1aaeccd29b
MD5 6de2495f136dd990ff22078ac95d7a78
BLAKE2b-256 017f6f46ec48ef38adc49fe02ad2f288f5451c295a9f4c21848af01784d293e1

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac0c2167acba0416d03ea82ba6efa63178b1f06449555ea928585f3ddcb67186
MD5 db6b1c6e54e98a2d919923ddf342957f
BLAKE2b-256 f4ba6025231d34e9143d2039789dad19bb75a325bcd34f468bb5bcbfd5136716

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9d17e636449a7e98e074099357ae46518a2a0120583ef30ca937f90dfc71dd3
MD5 a4b059cc536b70bdbafb3548d6c23efd
BLAKE2b-256 0536b94e91e6160774d87b1f1ba12b3f805029ad19e9a316bf9c93cab06bbd44

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 230bed2305eddc1b1685bd55ac0fd2a89bb875ab221967bafe31323c24fbbb2b
MD5 550c019537c55da1a949ad98ee9ded27
BLAKE2b-256 560f3048b24ff7595d76fac2689acdbdd1711dce273158c7e670b8f70b7eba32

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4575ef1838b3d3448e388b9f1320f2c0c844d8d27d802af097bba7613c862390
MD5 bb543684e6b9335f06ca544002b49275
BLAKE2b-256 9bcb5c1f81141c4be490d202775d21df7e48b3d0854aab3c9dcb6b49f2722b90

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4969544203afdb74b08999c4460339e8049b5b3a5d7f74b206b41f3aa18a907e
MD5 4ab7efaea4ce337aa8407b16ac52a9cc
BLAKE2b-256 b760d15a7f72b9c935dbfe8c46cbe047872b6f6062e5f24608bd9c2687c23b3f

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43f0972cfc3079c66d3cb570e43adf2f4be68cbc3116c514455e3991d875bc98
MD5 18611472a1957b333c0f9cbd85eb8850
BLAKE2b-256 ab29a0bfa865c5f173b88da2e5e6641a437eea3a803f9eaf96064fd8be16ba63

See more details on using hashes here.

File details

Details for the file phasedm-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for phasedm-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb5429a083261d93b10311f9e10703ef71a252019777292ad7e87c8c04e34a86
MD5 6f59fcc2e3a39e3b71477763d7cec37d
BLAKE2b-256 14fa6cf3e804e6c91b0b64e5971fe1872a6972433369073127329352a4a41023

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