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 time series analysis.

Features

  • High Performance: Up to 100x faster than pure Python implementations and 10x than single threaded c implementions through 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)
  • Beta Statistic: Support for statistical analysis using Beta distribution

Alt text

Prerequisites

  • Python 3.8+

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" )

Comparison with Other Implementations

Feature phasedm pdm-py
Performance Up to 10x faster Baseline
DateTime Support
Significance Testing
Dependencies No VS dev tools Requires Visual Studio tools on Windows
PDM2 Planned

Technical Details

The main crates we use are

  • 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

Contributing

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

References

License

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.1.0.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

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

phasedm-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (581.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (611.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (677.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (585.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (474.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (438.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (408.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (581.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (611.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (677.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (585.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (438.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (408.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (581.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (611.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (678.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (586.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.1.0-cp312-cp312-win_amd64.whl (245.4 kB view details)

Uploaded CPython 3.12Windows x86-64

phasedm-1.1.0-cp312-cp312-win32.whl (232.2 kB view details)

Uploaded CPython 3.12Windows x86

phasedm-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (580.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

phasedm-1.1.0-cp312-cp312-musllinux_1_2_i686.whl (609.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

phasedm-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (677.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

phasedm-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (585.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

phasedm-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

phasedm-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

phasedm-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

phasedm-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (437.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

phasedm-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

phasedm-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (408.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

phasedm-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (354.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

phasedm-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl (369.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

phasedm-1.1.0-cp311-cp311-win_amd64.whl (245.0 kB view details)

Uploaded CPython 3.11Windows x86-64

phasedm-1.1.0-cp311-cp311-win32.whl (232.0 kB view details)

Uploaded CPython 3.11Windows x86

phasedm-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (580.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

phasedm-1.1.0-cp311-cp311-musllinux_1_2_i686.whl (610.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

phasedm-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (677.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

phasedm-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (585.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

phasedm-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (409.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

phasedm-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (474.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

phasedm-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

phasedm-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (438.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

phasedm-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

phasedm-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (407.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

phasedm-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (357.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

phasedm-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl (372.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

phasedm-1.1.0-cp310-cp310-win_amd64.whl (245.1 kB view details)

Uploaded CPython 3.10Windows x86-64

phasedm-1.1.0-cp310-cp310-win32.whl (231.9 kB view details)

Uploaded CPython 3.10Windows x86

phasedm-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (580.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

phasedm-1.1.0-cp310-cp310-musllinux_1_2_i686.whl (611.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

phasedm-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (677.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

phasedm-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (585.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

phasedm-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (409.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

phasedm-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

phasedm-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

phasedm-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (437.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

phasedm-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

phasedm-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (408.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

phasedm-1.1.0-cp39-cp39-win_amd64.whl (245.9 kB view details)

Uploaded CPython 3.9Windows x86-64

phasedm-1.1.0-cp39-cp39-win32.whl (232.5 kB view details)

Uploaded CPython 3.9Windows x86

phasedm-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (581.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

phasedm-1.1.0-cp39-cp39-musllinux_1_2_i686.whl (611.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

phasedm-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (678.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

phasedm-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (586.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

phasedm-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

phasedm-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

phasedm-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

phasedm-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (438.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

phasedm-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

phasedm-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

phasedm-1.1.0-cp38-cp38-win_amd64.whl (245.5 kB view details)

Uploaded CPython 3.8Windows x86-64

phasedm-1.1.0-cp38-cp38-win32.whl (232.1 kB view details)

Uploaded CPython 3.8Windows x86

phasedm-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (581.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

phasedm-1.1.0-cp38-cp38-musllinux_1_2_i686.whl (611.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

phasedm-1.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (678.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

phasedm-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (586.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

phasedm-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

phasedm-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

phasedm-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

phasedm-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (438.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

phasedm-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

phasedm-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.1.0.tar.gz
Algorithm Hash digest
SHA256 6f0f66ca593c733f537334e35d6d59cac9ce4f94e24ed46a506ba59941f31b6e
MD5 5b1d276734bf07b35a546eac9104c63e
BLAKE2b-256 ab22557818bc7675bc26b1694435cd34059fc60a754a21c29f2e1678e3da41b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 058a812e6a5d8235488d7045db3c1ab15b0f253fc3284a64a735d12552427b22
MD5 f20f8408b727e5434b4430c96aaa44de
BLAKE2b-256 d6bc43cfa57d8765c6023b7cc1f628ad51ec2eb6f81ff953fd7f881adc8a5669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0c9ed7310c88a6df66f96d71c86b434aa3fb29b77e8316bf2f99e6b2ebaedfc
MD5 37c984ff41cd84abcdd1da7b07151ffd
BLAKE2b-256 1eb946cd6bb040881ce38229655023168ddb2b1a87b8280ac8692b36f66ef640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de5c5f95f9ae3aa45c33ee37965f1e177b4c13db29c1698d5f8d5d930ff9262e
MD5 228ba67d4d44a97e0bd4291e02d89edb
BLAKE2b-256 72fe0f88b5b78fa56e919898263eb54a7c4f40c43742b3518ca37fda0f32e613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 471ade4530a19431e04925695e193735f587c4321e645d93151f115a0346431a
MD5 4b72be6dbb1a5e8e8a2017e4e5180941
BLAKE2b-256 5a12bc1f705ef49296e7a10e3bc541d8eedb524bf88decbacd0ac43c13f1f4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 371ec6393ead309d9d9595cec3e4a3bdf5c198ae2a8cc5e7e0cedf0e0c7248d5
MD5 e576de8fb6e36def4cc00518894e0cb4
BLAKE2b-256 0ba2ffc15c58c8eadbffff1328264e34fa6e209c4d273166c63b73143420dce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e247765520937c6f4b3db45e34e3ba3edbc8ab7bf56cdd44a9de429bb89aa08f
MD5 910a2d05d9ee947c37bd3abea8dd635e
BLAKE2b-256 1f2bba9b86f06c7d2de79d5755b05c8208ca407dd43488118977172ee98c841d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca9eda810d17bfc67573e90e8a9a023a4bcb3dcbb47de5794d943696c0a09d26
MD5 6c4a2aee14557620998023f40116fab0
BLAKE2b-256 a7976f5a92bcec8ad984bb88cdfb59d8fc05197f02b106a8bdc7efc2ab25951f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae2393c8fe409205efc91cf3d25a049373acd1abba8f4a018e918cbf74a4a847
MD5 73596e0b349294808c1ac746c27775f9
BLAKE2b-256 e013892d597c626f319c77f450ad47085894054a83ad51cfed313dd6e0d166ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 008f0151abbcab4b433a672d6351db94b08c7048d8fedff39a5d4eb0641e6227
MD5 cbf855b5c3e3620b5690001e39792649
BLAKE2b-256 91a7d103ed294ae1fc28a40457d022da15033b9a90e73070e5e1778d8b9a64ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac2634830f24550b2d5bd70f2a193035d24c71631ffccddd328bba5e18157cc6
MD5 d2447eb70b5f8419baa1ea419c33e515
BLAKE2b-256 6b051b9bc74b2a7a7abcb657370699537f6b832fe4df3668c245dc65789589b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 406bc808b55e90ac4d4e2b2b9ea373b6e2a1ef91580425f148a8cea22d86c1ac
MD5 ecc48e33acef873cfa00b1adb6d7563b
BLAKE2b-256 454e14315038f49a40f2421bc715f025b73346f1f96149610c0bc30fc0e6abb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c09500d02b56992cd70038fc945f11fb43de0d73f3ba97a559609e119e3003f
MD5 01d6da62d714a84e07bef7a26b7a0414
BLAKE2b-256 5773e801db1d373a7bd5c8d13c6befd6513694b65bd02cb74fa1c7bd650cd75a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 682a822a87c42023590fbd712111e987abcce609a8722e252cf4a7bf9d404dde
MD5 52c75d5bf294fd9447df3d5220da74bd
BLAKE2b-256 647147f0d8cab326c78f0185a32387fa220c1e9eb0bfd8105cb162bdf9d6c2e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8551e30d2f503d6e9b59ed282d31a93e82e7be926c473d7df83af3aef8c74ac4
MD5 aa0919994e408a385207195c3a18e24a
BLAKE2b-256 3e7b1f6faa6f6a6fe49e8c8298a588c244ec9355ea08b3354f7803a88dcb289c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b94d67482e882f66d36fec08d0c175166f11807930c12015df2d0d8010a6434
MD5 5c5a3686973727ad25f54c84634d5189
BLAKE2b-256 69c87cb9629f5d3cc2ff953129d3b26dbe3586e5e5c18d878ee140015ffda2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1716b506df628e287d960788ab04d8fe9df4378107ccdc7e8ef6087d3ffd2cf7
MD5 c784bc8aca01cd7e4e7663417a8fe853
BLAKE2b-256 61b5166679216a9dec3059c729c92502f5109f82d4201218bbf87c876b9a7498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc8e4e35610f911eb6a37bce8c75ed49f779203c7a689080b2b571ae59b2f518
MD5 1c2d97d3344660375f9c3fab9745bdb6
BLAKE2b-256 50fb98da2b2b7e3463efbee85a7dbb1dd69a4b9cdaa09aa1663b94e703548577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09dd6d1a8ee7e44fb8857eccb955f9a889dab63e58daf3f757b40008be2ddaf9
MD5 766c8206849de623e2bb705ed671254d
BLAKE2b-256 fcbdaa1fa38bfcadd72b7d0b29dee3232eee3ce89067eded2241cd977e43c43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a869450c8e2be48e99f14ee1563995d1772e53bf87d678fdf2d924c3a0b630bc
MD5 c9de06858d8b0d0c62491bf40b639238
BLAKE2b-256 d44f75d595a82335c10ab8330a4c76638045c98b8e430d7d2b7fb557433665eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4de473f38ecbd5f8d55d6985434aef91799e0aa5224c8269a22b9409fc739070
MD5 1cbc1e7fe733fc16f8549979521f6f97
BLAKE2b-256 7d79f7033c4975a0572ccc7ccd753722d7ccd5d15b8a75e1e79c53ea80ec4b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee319ea5f719a18b26019965317c94925fe87c4833bb7f39360d4286d8e8a91e
MD5 1dc20eb675d12048b6f0ee2560a1c5cb
BLAKE2b-256 a0cc379959eeb0a1f207e9ac6f4814568f683479199be2d57b96878c85a8c14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 097d90701e9f666faa5dc4a8d34478dd7b45ce459c0199fac557f0dfefd61f26
MD5 ccb6ef4e2b5a4bc8528b33bb20ad9c05
BLAKE2b-256 4a5413996abfc8d208d53fa3b7c479942562156610d417f1d57ab7d95ae16885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63ea93c95cad7843bdc88e3a5ab18e311985dfa735fe5bd0300dc953d2118cb2
MD5 452884a7e8eb3879a2c246c3aa83307e
BLAKE2b-256 6a928b80113fd42e3ea8f30ea69bf2578de729665a8ed8e5dea98c61a86308e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 428b4b3cc2785b3b183356487d83a662ea15f706b198b6808788b6e39d4bec61
MD5 7cb1d9064e2fbae6dd85c656421fcf19
BLAKE2b-256 e7a4cbce611c94b8d35740db83726b2787bb63ca3562035acf674174a3b671ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ffa476244bd6b9661dea9b6417b230eb5b501252de1604dbe0061d6786d74687
MD5 9824cc543dbd7b2001a0fac3df9c7af9
BLAKE2b-256 bfdad8314b32022aa6623012f888aedf580830a38c274ef096a741b319559333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d27031ed9ce4a4d2e82fc59af35d4b1922587c0f801ee33eec27b73a83146cb
MD5 d023483d0ab773f401e1d018e42e025e
BLAKE2b-256 ea61ba70bbb096ae85ad02efb8142f8fe16fb89d1324405b3acabe882cea9d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d25752179f5a9015a12a1b93292a18bad92a0c7a80d8f213d167302879fc0e7
MD5 4573c9b196ca916328bfa38f12126944
BLAKE2b-256 c575f6eb94381b47e8e6dd07cb34701d111ce065774387020598313ce6e02506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ccf6d6f3f04a1ccb7dcce4c5695a15445945fcda4b3c11c912331053ba1faba
MD5 59f957d5ccb5622322dee6e0cca26785
BLAKE2b-256 d60205018619c926bc39d794c1a6c9404d8f0299fb2d244b17a2775ffd995edc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 245.4 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5cd0bec124f73ba4905daef108951265243728fa47ab51998b36f455e70e4ef
MD5 843eee51e8a621d09b78df93d5dedea0
BLAKE2b-256 fa2c44daf93fdcdfbc5580ea96baf1712dff1eff96973043f459db81022fe13e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 038751690a47725cf4c6ac6e4373aa7cb66947bc9856d1da5e879ef98e91f1c3
MD5 840c768a08798fcc2ad12c0703579939
BLAKE2b-256 5d74143ac295b7cb05433486ed107405106c5956ea19500f05b00031573f8db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df6f34cd8e7ef2cc5c2bab8f0111272dbe8896b22ff8a7a9fea84b44036105b1
MD5 51aab1fb06ad1a7c49e78d280c63a0f9
BLAKE2b-256 b48b10c01d7cd700748519f97f6b8a54058f349066ec96124c5d95cff6d00e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bcdd49049a6428f17c198b47d47698514951163bdc790a92b4473f7bf78868b4
MD5 5eee15e593cc19058a3a50556eb37619
BLAKE2b-256 e49ead431d2c1fa7f781e44b44af33ce728ee4bd73810c933753cf21a5ba358e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0edbd5a7ad5d3631d5b506eca441a33bff2fd51263cc7fc810428e6485cf83e
MD5 612dbefa12375710ec9136d959a22288
BLAKE2b-256 03301463ab01be8af250134274f8c43aed52c594eabfe088517e9625dcf4ceca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13955f0b71031c4c9cd1071e13fd3cd87e57c53032f23d720962e0906280081d
MD5 cb537b6e6c43b719befeb4649ad599a5
BLAKE2b-256 fa103a027d566012978c4328a49d8a7926fb41fa7767d37a52316cde611b7c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6269b5d23c719c83badcd2d12ba25910fed4183dfcac596707e1c4161dbbb15
MD5 72c27e0f5be6c61926561676bd6f2eb8
BLAKE2b-256 fc0bd6bb9d5d27aae52ca0787a6a238dd66731966b21f94c387d7f8db94587bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 841a65f67d421f4a5140f2ac8e2bcee6676b113d2ceac92399e37af221008b1e
MD5 e00483bec533cd9ff05634a9eba6d7e1
BLAKE2b-256 3dd8dea8f078fcbf5cf876bd5ae5972094da6205345210eb26bfae76d6222f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce80fb6f6b418069c2acec286ed4b9ba7164d260ce426378fe5bafc298ba61fb
MD5 10e916ebba69e14d8fb0e22b8feec975
BLAKE2b-256 178749789d7568155afa0677e756b842870c5407e8c56990f1c7996ee236c063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 047fdbb00800574d156e3b2011c9d4312f7a71f65dc36321941377dfb6393d51
MD5 73180104ec8f30b9775286bf4dfd6158
BLAKE2b-256 fde3b68194c79b8cd278f11364970673c32848fa9703cc9ee48fd2064563536e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b60b2d3afba2bc49d023a6f7e375f2c815937b1d90f8121d8769bb728dd686d
MD5 20397882323e139957b96eb0e44333f4
BLAKE2b-256 d040dc83329c16ef8319e62cb05f08ca37bca4ea0bb56d0792a6b18a12921e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8379aec5203daceb863d3ed842f7663d30e3477ad82c4bdefc4f3b1c02973227
MD5 030fc753488eb55e55aa863a190139be
BLAKE2b-256 a02afc2cc6603aff68c2e657f19b7e309242d6e86e793ecdf56bfc1a0cbb0b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a0155dad3ea640d9f8c4c13094fb8eb15382add1c2035479870d7b7dc909a56
MD5 ce8d69a62bde11d74c639718150c50c3
BLAKE2b-256 c125d6b40ae2154137d15b1901fce277473bc68443d5006196dae0fc77e7b014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71f238e5963099e995e179ca8ac4e4e7ece510260941b0bfb7efa9b205e21142
MD5 6d3f3f8769e9577512f8a0160e640e34
BLAKE2b-256 0f67fe237f26a7d22a287bb3e5b017a2f349feb4e1f419c9d971bb3317cd0fa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 245.0 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2345365930b9a11087ff1656aa11da69b7f86b162709c6969fa3467f6c796559
MD5 ff48b694128979a8d561b9bae99d906f
BLAKE2b-256 6b97861985eada4aea5703a9b3fef9a299bbfc69a603de4af74c3083613a6eb3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 67329981a97de00d08675c6f532af534e20a5fa7aeca34c6c1b59af28580167c
MD5 7c074f3a845cc9aa81afa25fbc93636d
BLAKE2b-256 7dbdefd948b1bbfa01a4c369afe3de1a86bd3f2dcc750b515cc583cc8dc2037b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44bc6e7380ad09b319a422721281c7ae09b6a6cd1e498a5b8cd2faab5553de7f
MD5 bd95895a9deeb999750c1d738af0b7ac
BLAKE2b-256 030dc0bcb819ef9b9f0a3bc544c3f3446161c58c5143f6662f42392c91f2516e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0430eae5ad974ca140d176438ab21a49dbcfd33a3bc495a1a6c44e107230824
MD5 c35b968c8c0deca011a80aaa86af678d
BLAKE2b-256 2e155acb124664e6a230b2750d250962d43d1cbe3cad2a69254e236445a12fc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8ea073cd52fbb32906e6aab70f551cc8c8cb0afc4a43e5e15963430aa16826c
MD5 a127fd4d07aae479696d8a0b64678504
BLAKE2b-256 b28547461a98cbe5396f79f939981c6628bf0a8d6527379025fa6e7e9311b347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9283c79254b587014da2eaea3ddfd652f8975a69ed64696e70070242e62c504
MD5 ee58e7c151cd1421998d26b183182e12
BLAKE2b-256 5c29fde42c3b2961a475e5f14208c4381630a3b71bd29fb46a0369eb1c92ae4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6710058def13089ee7402ac12d961b6948ef933b38fa6de42bb6e79150a91d1
MD5 f54a12f1007b4415f5538faf3a319740
BLAKE2b-256 d49eb319559222dd6bf2bdcf4b16e6b650ef8d0e2ba71f5fd3cdf05a8e3ad0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9b209870bdc86a23b3f477bbbc9f6424cc22209f1b55fe594141567aea66e27
MD5 f0b5768a64f7feb065b12186d87c116c
BLAKE2b-256 7ec08590286992e588ef947222a8a4c62d3a0b35e9e676450b39f53196743dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e3a80f2c33572bf62a7a5b1786314bb64963e1b50e0241a94410537fd2cdcaf
MD5 bd1d0d5a31b2983a6458ceaac9e5ea47
BLAKE2b-256 ff42ce8d005696513793b7291747cb2b4a8c1412cb9e62e3bab87bf7a01897f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17cd47b4e249342bd9fcd499de5bbf314150a2292320d0462d8742fd228ce11c
MD5 78b9704ac32a599d2b4f4f7d6c4ddb84
BLAKE2b-256 3a0d6a7284d254308eb6371891440cc495cf2096ae7536eb4a0ad9a86c03e676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e44cb370f0ed0c4dc7d26a9290f94741ff77260545545c047cb36d5f90f1bef
MD5 e660ba205915053db1139b7be1e87323
BLAKE2b-256 fb7ab8eb6c86fb07e554e59ad01039b766272b1e70e2eda94f4f13214c8fbeb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7d614347e90e70dd5826a10b785c56923b9a12eae66a55405f35fa2873737a2
MD5 2871f39be531ca603887e19e40f7da54
BLAKE2b-256 88a3bbd4b526278f2fe343ac90f60efeb63aa94eaec99b94e16020f531b337a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e17a40e06331a213abf531cee4870abc5a71f868f234e15490bb9fa7bb7d3988
MD5 c7cd0fcff9ed7c5a798bda76faf6295f
BLAKE2b-256 0dda86626db8cdd9504a07b59546e214e50fbcdbea094954ba3741a29118f265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6811789de67640cba5253e585db436540f098240ab74309b3b05ec54c37a705
MD5 51fac08442b8d9c2b518ab97862d6682
BLAKE2b-256 9586276e94d9c5ab9150b39ac7f3296e51ec389b373524c8688d24f1bcb9b3f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 245.1 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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3caff9ddabdc0ca657bbfe4461be5f9aeb430da9eba0f6ab37af867bb45ad5a1
MD5 3d1e228b9b199e0e8ae284ac7a79882b
BLAKE2b-256 bbc42d22f40bee94947ca8ca5618c22468699ddb02e30772d6fbba799f735eca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3171d384776fea96f2815a377cd17ce765f898b7e11614ecaa5adfdb49104a78
MD5 c8f1abada3d63aa1f26c10ac5e650cc3
BLAKE2b-256 0e5e324f76c904b415db6027549cd11696859e5bb1cf3ebe63cf7d53c0fdab74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 305826862feb0459fbfc3d34f0d489e318dd2a82dcf710fdac70cf426064d8ea
MD5 0e8ed3d948e5221eea87fce423aa1798
BLAKE2b-256 f274ce3d879fd84362f05da93064d9fa6f7978d0672599f67b23fde72abd4d2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b1b690522e1b62ff6e28f63df604fd5bdcc743336c992fae4efa5c278787bda
MD5 565cf670309abefd250234b807ab7f68
BLAKE2b-256 a7e34c192143226e1b407dbe6397aaedb6eead3af87082db703312577625b2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb93264d8a5a57c6978aa5c807503a5595f66f3e4d5fadd7bc56c67fb8d2c51e
MD5 7e12a0cad039bbc6789a44a238b83ac3
BLAKE2b-256 a0b9ed576a3d095e5cd8b901fa82c6c33bd07e5103178845bf8fa443122bd6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f3d86b443d1158c275c66f5a58fe51c0d4d7542bb585d2010f888154f79c9b3
MD5 d804c24856b439cb0f02d2f2d7d71346
BLAKE2b-256 30304d17e545ee0fbeccdffd2f6f0bab39215c7ec4c79142026cadb43a243111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaed4afc718da51f2ca61ba78e4b8502086bbeb652ebb23877043fd62c9dab9a
MD5 f798f53158f3c4043defa236fcb2e1d8
BLAKE2b-256 3d9742b81a278ed43990802dda0cd7787bc51ca99bd2a5f00cf0857e9ed470e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba1b4c4a88718585d403e5482b6413264e404ba1b7ddbea911cab8bbb584247f
MD5 8214ad92808d3af296e82957dd8d30da
BLAKE2b-256 482c7d7642d7a1c7a020580d3bacd48114f415d31eff794d60f5f2df934ba3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78eb9be9ae2bb03007dc85c913933917334fb8d192fc7d302ab8fe6296da50c4
MD5 31d88f408c4df5d4e0941151b3438dc0
BLAKE2b-256 e5e1a6b89657b7acba8f44d9744120ad7bb293968c26155df63d6bd56139bd8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52e8021a3332533ccf878d661cbc98d77eba76686c3c6756191b46596aa15c7b
MD5 a73947b5d16cc28e385a80f831f7ea23
BLAKE2b-256 2e2b04627f434d77399a3eb67dec448187b5565ff76c6dd0df19571be4139d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 260785e522c521a6dd8295416bdc6381e16bfc84bfa74d913fc70097cf07003c
MD5 f2f13704423e40fafb17b1805ff293fb
BLAKE2b-256 e1af73580cdd3fa21f2ad72102f00815b6f2bdd50eb51d8d44e56210cb679771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b442691177c45584d761da3bd46bddd5fc4e80cfbce159b9a01be38c7dff7ce9
MD5 47d840b46d6b57373016e16adc97ed0b
BLAKE2b-256 c912f4f94ae6ae3afd1515681f844f26209acbd46bea83f50aab448b45d7e0cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 245.9 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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8c534e9f231d619a861157424ea259e81de9c6cb66917a9b620aa5d739dfbebe
MD5 07d204e7e9b65ee5ef9035f4efcd1734
BLAKE2b-256 c2e1426b85c24da984ebf995813ce7d80d1c718340790671a30162028b949471

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e3b231bbb5486ae23336e27b584a6a4ad5b8eb0f72f8b124516a97bf1f464f77
MD5 68b3888e13ce846f1c59db4cff7c5e89
BLAKE2b-256 2ef9dd286f32e28308e6726b2b9bca5d0c7d1177ff77bbf90f04b5de6ffb715a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c91f5d06e9bc1308f09237d2cdd4bc0915e082748105fd1d999534fb8ea3463
MD5 9b0451c3879a02969c3e07c99f582568
BLAKE2b-256 c701154fdf5e73c3b7dbfe8a3be229b071cb4b949fe22be522b953c38a8bf937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6bdf0dbaa26067e90c77fd7618b41f80acd571cbb79574d0c55f7032dec99674
MD5 f785d7d83b8585d83796fd3f610f4348
BLAKE2b-256 bc46b1a2798cf6dd7b8ec1d4db5cf61c83bac5b4ee5673374343dbb57f2662c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a86ae88d67bf63b87c71aa051b2a8441d58baeb5c17d83b01904debd9567b2d
MD5 0112b836e94153ec9722a3c926a55a99
BLAKE2b-256 52b272b0223c9826fbf0f34130ebbe4b5a52cc204b1ccd3dc5ade7e1047548a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea8eae0ed438b6dc2700deb98b1931df494f3811db676fbed5cdbd8081dfcd54
MD5 d3b7bdf314e231678a2ef80c9faa4813
BLAKE2b-256 4027ba813f26fd909898d140004b592dfc374f6311affaf5c10b4810cda377d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b2d29bb062566a50dee9de0315fbe5fd46d234878334a27ceafda2ea348dab8
MD5 e7f51a209608c1fab47325b4b85d297e
BLAKE2b-256 d137e2af0f6ce4847f10d62b9c07997738e3048f1113240284ed6194301e987b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5778643927448a20e4e76fe27b6490b21cb7761d0532ccfb9c5dfa05f90295f4
MD5 57efd1a5730c08c277902ee143461da2
BLAKE2b-256 e18254cacc026ee05b9c2f8a0b22557924c051b9268649c21369491d94cfbabf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49c4fa5ef5c6e4c3db800e5b06748979f0d5da10529026b922184216942d5add
MD5 8e9a32e3cb6cdd4a9417bdd55bbf6d90
BLAKE2b-256 2ad58b8da69cc92850d115f57ec69271d94ba3a1a618ae2bb143e2ec13fb419e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e48a197222de5cbb2bf0295cb0d96bac6cb17fc1e8deb2a2733f00ee55c13091
MD5 0e83b651e1438d304db0b6448d38f11c
BLAKE2b-256 419b6181a1e8d94d67b679aa76d2e879faab73057010db70570202bfc709dd92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a09a077dad297856203f8ef08c385526bd717a413ff295e15940c88d8819e4a
MD5 b71bd42d0061097aa5a280e2977170d7
BLAKE2b-256 8da706d631f33665648b7a6c25a3bf9104db68a4c5b1d8a4830bf89f171c5be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b7991ae75db31287b0d79c345253cbc409c68d1cb443fa720f6fff313215085
MD5 35dc3a801c0ffe63c5f30efcb0388f9e
BLAKE2b-256 33e13e156e87125926b783dad8e0e697ec4555a6351b8abbfe665fcc55f50990

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 245.5 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.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d338a9b7e7c8c23a852859b43dab65dc633c676a4961228f1df63a4f3ce1a66
MD5 42f6e893445c1502e67bce4890a12fe7
BLAKE2b-256 c484576a5fe14efd76de9f08ca065a50506fb7e5ed8dc670c965e2d283659597

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5954174f869ee64f71572fdd71195cc5be3cb2af4ab7feb7160b591fb7776a42
MD5 41c9e493e0d143dac25922277b1f3a32
BLAKE2b-256 0f1d0b1d52cc306424883ea633931ec5f4ce77254a9d3d9f60c5b837cfab4a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 561914c6d11bbd3154f29d7d8672dff389c8b42b7647b840a4b97dcf439347b7
MD5 31d0818750517cecef8431e38ff97871
BLAKE2b-256 15a958c3b6689b69efabe0beedc26420aecd2b651b295be36c1d87814f4fde45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d523de3d97ee6e0c771cef63e4f0c9d6fc4204e7c6600c5b00920f3ad8059b49
MD5 111d3a96ab386726520b7617f0b9eab4
BLAKE2b-256 b9b6913893c491f34accbbf103028e24c9567e8e9ce01c8146197a4847f52857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92a5534df464b3a01bb32319fbb5de26f0adebc2e35bdfbcb6986e1e8609b070
MD5 704599b581513dede4748ee465db00c4
BLAKE2b-256 c81115798883656b14ff99ad7f5c976bcae351146f61eb3b4e9f68d3fa6d305f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54570efda0e65e1e673870e5f97d6ed724145634986235788f3b4abd7d1891dc
MD5 a74ced1085b221b371e11dd604a7ce9e
BLAKE2b-256 910b8b539257c82db14f145cbca4c5c61abd3c6d9a1a3ab77ee2a3e99020cc94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a72995a6aa303d35dcae258d5587c7e8bc66ac2c7c3baa2bec8622c8a64cd8b
MD5 99df5d6c04c5643ce7017ce8dd2c2c6a
BLAKE2b-256 8c33918cabc5379b5baf08f8187bcf3fe0c75e1c0100cd589eb54ae5761fd368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 630701aebad0fcc0da24ff4ba587dc57a7803db7d81d3c68691991879e9b3a58
MD5 394351c8f2ed11169724ce8f619cadb0
BLAKE2b-256 093212110082b8c9e63ec199ad0119923e1074f876f1f14c9358ae10b2682fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a3f288fb05fa378d4991836b34a0403f0bc70edac15b9bfef97808233147dfe
MD5 2acb5dd8613c0b3bd5295f11b0d5afeb
BLAKE2b-256 b379c980f79fa3cf7d72d2609092c368229f5372f6e0857f456021aaaa5d73c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7984c31c1066a861fcad468df45c781afb42706b5bf65bfef5d73583fa6eda17
MD5 c22f49b81acaae35a82c7df4e8f616fa
BLAKE2b-256 0c54ad698deffb1bd6a91e0c7d3adb50e7d12212f9417d245748c583a7a498c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f18e2ba6bb2788fc5799493a9276c34c3cfdc81e83fde7f64ad483057169794
MD5 9405cc81800b1f11733c1cba02cdb390
BLAKE2b-256 8162f2e248356e7028ce655cd8f739411d5773130f8e98502503e6701f2183a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0024ce519d2dc6d0e9fcee62f1b0a078ded90d66a6764aacb523754ae225c6e3
MD5 bcbe406adf17f0869440d788a6db9753
BLAKE2b-256 df7def030431c16219265edb1318847ec92a9953439dcb8d18d8cf80dc29409c

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