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
import numpy as np
import pandas as pd
import time
import matplotlib.pyplot as plt
from phasedm import beta_test


resolution = int(1e4)

t = np.linspace(0, 20, resolution)

y = np.sin(t) + np.random.normal(0, 1, resolution)

sigma = np.zeros(resolution)

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

plt.plot(t, y)

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

sig_theta = beta_test(resolution, n_bins, 0.0001)
print(f"Significant theta {sig_theta}")

start = time.time()
freq, theta = rust_pdm(
    t, y, min_freq, max_freq, n_freqs, sigma=sigma, n_bins=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.axvline(best_freq / 2, color="red", linestyle=":", label="Harmonic Period")

plt.axhline(sig_theta, color="blue", linestyle="--", label="Significance Threshold")
plt.xlabel("Frequency")
plt.ylabel("PDM Statistic")
plt.title("Phase Dispersion Minimisation Results")
plt.legend()
plt.show()

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

MIT Licence

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.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (581.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (611.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (678.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (585.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (474.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (437.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (408.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (581.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (611.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (678.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (585.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.1.1-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.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (474.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (438.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (582.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (611.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (678.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (586.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.1.1-cp312-cp312-win_amd64.whl (245.3 kB view details)

Uploaded CPython 3.12Windows x86-64

phasedm-1.1.1-cp312-cp312-win32.whl (232.1 kB view details)

Uploaded CPython 3.12Windows x86

phasedm-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (581.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

phasedm-1.1.1-cp312-cp312-musllinux_1_2_i686.whl (610.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

phasedm-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (677.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

phasedm-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

phasedm-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (473.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

phasedm-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

phasedm-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (437.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

phasedm-1.1.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (407.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

phasedm-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (354.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

phasedm-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl (369.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

phasedm-1.1.1-cp311-cp311-win_amd64.whl (244.7 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

phasedm-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (581.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

phasedm-1.1.1-cp311-cp311-musllinux_1_2_i686.whl (610.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

phasedm-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (585.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

phasedm-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

phasedm-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (474.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

phasedm-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

phasedm-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (437.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

phasedm-1.1.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (408.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

phasedm-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (357.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

phasedm-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl (373.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

phasedm-1.1.1-cp310-cp310-win_amd64.whl (244.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

phasedm-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (581.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

phasedm-1.1.1-cp310-cp310-musllinux_1_2_i686.whl (610.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

phasedm-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (677.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

phasedm-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (585.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

phasedm-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

phasedm-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (475.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

phasedm-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

phasedm-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (437.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

phasedm-1.1.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (408.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

phasedm-1.1.1-cp39-cp39-win_amd64.whl (245.5 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

phasedm-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (582.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

phasedm-1.1.1-cp39-cp39-musllinux_1_2_i686.whl (610.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

phasedm-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (678.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

phasedm-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (586.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

phasedm-1.1.1-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.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

phasedm-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

phasedm-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (438.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

phasedm-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

phasedm-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

phasedm-1.1.1-cp38-cp38-win_amd64.whl (245.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

phasedm-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (581.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

phasedm-1.1.1-cp38-cp38-musllinux_1_2_i686.whl (610.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

phasedm-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (586.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

phasedm-1.1.1-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.1-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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (467.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

phasedm-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (438.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

phasedm-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

phasedm-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: phasedm-1.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 a541148b930177fba069d8243b272c7dd3771d05ec0f3f684bad055c417f76d8
MD5 33861719615b55aa128290b3e8c41e9e
BLAKE2b-256 a654274a868658de9a02419d928db88a24026cd2e19eaac26857e2e61c49e7cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e419e736cc6d73cf31de84a9f799c652bda0c466600dd89fb20a6d0c7b892f1e
MD5 bc17a23a976aae99781d8c467da80641
BLAKE2b-256 72d5ae6c34cb78f9eea40de7963abbc0e30cc86baa262bc93c2169d29155d5fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb462a704dd9d27a1d15acf5514e9f8d09b80932d253dbc628dcaaeffa04e2f3
MD5 c11f30530b352646d5d06249a882916b
BLAKE2b-256 8d08eec0e2525eae3b3ee2815d39c8ec1f9b20ec13fed1d3477d50687c14c539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2824e478e6a70614b41f11a4b9c27ab1e269f7a2d835c239f8917bb1dbc82bd0
MD5 fe1342b6aa9d7b385734687fd42b78bc
BLAKE2b-256 11ec1685e2881357e461fc6ccb2f9b435701c7a0894a84ee12fb140b01fed4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66ae8cc13c931d13dce442c9ad3b378b59d1f343fea82efef815a64f84109177
MD5 80ed6c0f610484b531e7342baa3caec8
BLAKE2b-256 ce2983936185c91ee4bb60ff86148bb2f4e8d98f353affff8daa934cf6961251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc56b6197f18a01959f216c0030abff208ec1c7d89f35a332b42f7bf8cc05c7b
MD5 6a93e78821a6af919fd8e38a1551ca7e
BLAKE2b-256 e27645a2807ead6e55282b3e9af9138df4bddee49bd2e91c567c33a56f6c15f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 970377f18120d0bb76218275d6287b0e768b630cfa2fe0441d2c34f8752aa446
MD5 3870f18923fa0d51d18f51635f46b157
BLAKE2b-256 67bc80852224764b4cf8e44e0f9d99bcc07334656753044f011294a99a550079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 786ffe215515fbd2671ed9085457fe1aa07067a225806a9357c095f90837ea3f
MD5 7101969bbe6d80b281cd0eb91f27aaf5
BLAKE2b-256 27e3cf6171860dd60e8fe13db986e3162e9cd83b242bafa2a7d4cfcc0bef82fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 731af7d6746dd3f20c7aecc65b6c5a05f98b82b6c75eb85eba77b372b19cf3de
MD5 46cb9b1fbf5bd5f553650cc06d41d71e
BLAKE2b-256 649a5d54ca911ae0c553f91e02bd2ada9c01ac990ed5302d353059e2e5891e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f07da776fe94b1885854885f40b47664c0a9b3ace8c3d0aab757ceec64463bf2
MD5 3cc759b6fe5c21d76d1a4cc15d2898f5
BLAKE2b-256 62cc7cd7dc875573a3d324d143abcf175ab3d7cb788d4e5dff79a380dc3ead20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8ca8b93eb06daa10abd76a9b664df427ef9f61991f6c98f22427c2c61d243ec
MD5 d26bbaf420101c8c62c5b591f009300b
BLAKE2b-256 e96007f6a40f8dde4cfb8cd4afe4a41b1f41ef78c63914f0d3c8716ec8627ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42bb28e33ff5bed0e0970e8a09c71dc6c3ed36232dc80c9104d0a1aec7ad0dde
MD5 1af006e687e80e471efef40ae2753cfc
BLAKE2b-256 42a53b5d87abc9f5974f4593c216dd189b6b38e04b419428f822b4f366b13ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7dba9f0c0849e8fa4d987f6ce67a69ebf0f7af7de91f69f61e87e134603384c5
MD5 2b02ae073261f866160ea5cbbbeab272
BLAKE2b-256 98cc4b537156cee5eb6cea52d766d7646867897d5cb6d215abeaeae323dd58dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8453e2427574063cd69a7fe01a55cc3f7017db03e0e1288c749c5cfd65ab127
MD5 6d0cd5fc0291de32fcf0307dd2c256dc
BLAKE2b-256 8fb9e99cc5ee523b599d124d05f10cf458dab4132130407ed8bbfea9f62b058d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a49ca4e7baaa27122808741dd20fe424467fc4a7d28b1ab6a6557fb3560279e6
MD5 9ac245d438209541d8425f3e61d59453
BLAKE2b-256 40b5e3a70eb72a6985f3b355ab406bdca44439a27c97926039e08acfca6fbb33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ff407ab8492fe4064106e7c8735f82aaac88ece658518c68473dffbfff576ec
MD5 72ac77b6d74a12d57ebcd278796371a6
BLAKE2b-256 d790f089c65e9aa72f0185856b7404d9a64e470ad743417fc39f9f6d060b0302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc86d9369e6a6cdd723b1f7d7d590bb4bf82569005f902fb4563ed7d5f8b94f6
MD5 866b6e7f3b214e3cc2d441292d1a184d
BLAKE2b-256 b5b5c8280a0e1e698514d0e8223f7dcd5f59b708650807cfec93042375a6564c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47252d3262cf5895154342d51a32a342fc8de2d7650ce54f081a9e459c821438
MD5 37734d5bbc57baa5c22b635fefea01b9
BLAKE2b-256 b65eb6bcce64c818b97de0389d22b63c718e21c326f8e0dc5a7b7ebc46608017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51d9a94e6ec4327f6b8bf19491823128c721f293e478ad2b5258e86c49c48d2e
MD5 72a8f89731cf758494cfcc68c4d11185
BLAKE2b-256 1fe0f7d6895279b6f2dd24063e0b63c6851b6b24e926fc31293202a6bc9d567a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f5852e5f2612bde4a8803b8e234db6a995c90d814bfa2578e3c30e04e2bb20c
MD5 41765b0c3396ae78445b5e539ccb8aff
BLAKE2b-256 743e2c1ee61764545744c53ec0b83340edbbe0912b565ad5a0e4e0bb3bcfe544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28ea44293f1138425625d30105bd14608842abf40ee8d34829f113fbaecaa5b5
MD5 11e4da2de6755935f1a48f239460ae33
BLAKE2b-256 511b73031f7bc9b28579f2ec79f5e35408b70a7cbe86e5b21146ad021fbbd72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c41676880ff732dd18b8d31f2809ba5c87e2322967c748144eb8b7d45730c80
MD5 5872989f270745315e74ae94893e8002
BLAKE2b-256 3bbe3ff6ec55a149ba8f88af345509965f364a8911aa15963b58d6b28bbfeb2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c9a2f25c7faf9cd64e7bb86b496140a02eaf7dbfaaa09a8d390f620c998cc9e
MD5 b0a4aebdce3a39a37fb88f7defb7100b
BLAKE2b-256 7c7a4006899b2ff9ab11b4d0899de27189eba29e544bc8d3ebc2968274b9b3e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59db282fab3874a5f7cc1e10f8ce4a6555bfdcc183191f2bcc79cdbeeec510bb
MD5 fd9941207287429bd71ce37c09fbebd8
BLAKE2b-256 f5793b523bf214af1602802383fc3e8f5d13bdda8c404c3e1b960c0b5eae1d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d628b5fbb5e023a52853655c5cac038641a0b33491d01a9abe5012d9f9c0d39d
MD5 8469ba283537fa379e7a783dfaa94167
BLAKE2b-256 b057586417b9307ca286ce650f3fdbb43c74dbb1562e6476fbd09d21e561a6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa371daccf008651a11b159529eeba1aefd791eaa24128e2c7ee1bd19b06a898
MD5 d5fcc9c9ae9b5b1e18a737401789922a
BLAKE2b-256 a9008cf585bc862049e98f1d298bd77f5701bd4ce67508d1734434ff5c5e85e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c9e7d95f8e3091e99e18eae64878513e2cdd4af2d3aabdac8635926f42232e0
MD5 5c5dfb54c8b8c38445e39c87caedfd82
BLAKE2b-256 86e46ca5edb5ddc572ee883b8df5f51a5ac325d7c21a40756e18dd0f3876b5cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ea1594531aa2d464d63ec2863d9c7ee5573533d906c5f96664f27cca77cbf82
MD5 135088bb46e50cf205803257d988f6b1
BLAKE2b-256 7ae4cfe26d49b19b875a980bd36a78d19e6418574ea00d9732f5c72eca98c70b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6292fa37e4d3486c209437d64a92e7ed746a7396826affe5bba55fde4d6bcec3
MD5 39284344683b8250662fb8f44b7e2318
BLAKE2b-256 bf324a3c77159a1f3c98145619056f93226cb947f08f91f618cf988d0b8a5d6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 245.3 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7231e7b5a29fe7662894c712df9fffcf094576d9abe05cbccb775f46a3b061a8
MD5 465dd36ab734d6fdfdfbe8ed35b8847d
BLAKE2b-256 f8ade145772634c453a2abb7801e4ba68afdad131b09fa83505350a3fa1c3cf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 232.1 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6ead660e20570202825a5c4f71a32a4b557ac1d993236caaea051d8193e585e3
MD5 1fdbaa8ebe3fd84ae9a5d8e89c0e7439
BLAKE2b-256 38e80bf3f9d49f7f7cb0e50da7815536a828c6f4d3801d64efb010fdcadcf2c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c11dff631dd989774690406be63da97b3dff723f64fad18c15db9415f8293add
MD5 23537b7f8efd8e50681a320142146d13
BLAKE2b-256 ce178a90c97571b1e8a360c012a3f4d00c895cf1f371467dbff401630fdd55b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9744130365314df224f46564573631b364963e0fba21f7cc120294f8815467bf
MD5 eeb9afbe265444bb715ce734037ccb10
BLAKE2b-256 e42ab21da9bcd241aafa256480c0fc6f0ef5310b34a97fadb36fdcc41271b51e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6440c5886b70bafa9ed9600557ab9ad9260116b44bce9070e578f133a67a60b6
MD5 24abd7072fcdfbd8055873b04331daf7
BLAKE2b-256 03b2335f86ef03786ebc11bc7157543f62e0609ddc55c60aca1a9f93e4f3a262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c34ea56fe7ed321d91c983ba1665aae7c3ebd4ff417d22df92f27c2e5b5e4d39
MD5 575035b3df9df723b4ef4db15824f169
BLAKE2b-256 94a35395be1a22ecebbf439f7d92b4453a0ebaff9941443986d2c0119bfd9ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c7f18adf2329f1b690e00ac35ef095f63efbcc25548917888c56de7282df51b
MD5 e0c7492bf64fbb266154de4860f05992
BLAKE2b-256 ca3bc044f9ad77e546e2e7766d9e9c75de625b761d6e6547e4326ef0f0d9297b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58b1c46c40d925e203da743a20f51c912063e8eb8ff2cd5ed50d12c46e99611f
MD5 bbf98031ee70cd09c9ed9ce9dd9c3d63
BLAKE2b-256 f0478dc52fcaed0c4ea882a28f70b654e675e24d7db299967d6476f44e323713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21dc5f19931f33375bdbc4c6935713eab0ebbdc19b7d8c8d5e79b1266f9f0e22
MD5 d9be5ef65ab2d2e981388fead1bea81f
BLAKE2b-256 c4d2549da0927cdd3511c014c1e73e8fdc02559d6b443c53037b7485e92bea33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 518f377e1567734c894d92b1d2219cc1a118fd62378bb543a4fe5d7b8c0b5ed5
MD5 1fa95478c222180016bfd84ecc2aa041
BLAKE2b-256 fea60b7f343ab0b973492e8ddae0278783fb499c5cf9881bd5a7fed9dd38f067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40d0c5275e92a63678f06bcc72dd632c95f49501c5f133eb06fedf75ebc9949d
MD5 116245888c9aaaf660e0041e034687dc
BLAKE2b-256 900fdb1c39625bf056fb51e81798c37049cc28b7e0aa25b5a5c38d904f4e71ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df5a2d43bd2d7f62b14e57090e8202bf66d4ab4da8dbb58a7637d7aca25a451d
MD5 8e9a796741aa05be87706c4e2978ca10
BLAKE2b-256 1d424b902c6d67ed8bb9fb09edf0e769c5d45d8e45f133417c4c2447d62d2733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af6daa55d0ff38a086b65ec224fae3ea19c45f0b06fa5573c72966bda83a49c4
MD5 28e285a1814d94f09bbe3169b85adf33
BLAKE2b-256 ae7b92aa49669564e2174acbacab5d5b9db895273e016af4d92acf52968477f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7044a5643b7a8f502ec806f7baca63954cdc2e965917d098927adb1c86a3dd8
MD5 2cbd4d9f4a7113ea3d764e13118f220c
BLAKE2b-256 44f19be73dd576c93642654ee929354ccc4b4c8844607a4db052f878dc0732cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 244.7 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e2a849802259829242f0df34ccbff11017acbc71ebd52bfdea5f50c4dd28c507
MD5 d478b0450275b5b9692e0f9353056c5e
BLAKE2b-256 178c808b31856e327d79d0bf184976d11a096e595d1a47bfc4d861e00a88c64d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 842d3c928004276a919857467c84e780a29c410876ed8c334c4d4e4fefca840a
MD5 c006664e00c7b3c905989a38672f3a5a
BLAKE2b-256 e1c2166b7e998b2eb5b41a40d0ab2a304bc85cf134938de16ae9ab268628c0bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c53757436e25b6cb6e41b7c2bbdb9a1fceedf5fe07e3533aeeac380e538f796
MD5 a9d926cb9f439e006f58ed235d8988d6
BLAKE2b-256 09df0bda25567ff94e3444104ffedd25f92d79b5e56841dd3c0e15841cc1b068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbfc27b564aba5cfcdc9731613038767749e951ec3cc5709bf07f10262e743db
MD5 4e5161a671a2f51e28917a717829fcce
BLAKE2b-256 0c9c19200e2d3e4a5d4671bb9ef9a5d1fad61103dcbe477f5f19bc27a68557cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3079f839c64650c960e4fe7e6f1af9a423ef8704834c61bc73fa8a1d922fffe0
MD5 6ccab7fc91e86681f109422470755622
BLAKE2b-256 88481de0660da59f3623ebbfed9e25affbda549652061c5c04fb7680852ee4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59a434e197aafa9544f0a2952b7129d9346b849bcef368c19e95872cb8f21398
MD5 5c64821e2fae5418b7f68242a50bfcce
BLAKE2b-256 e0ec59d140617354f0d117446bb352eedfaddbfd736edf173cb56eaf17caf2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be138626f42bc982ab6a7aa32ab87888fb9f3bb55391f5624e767a0171584b22
MD5 959b026aa4da1e37e84d813f39b0a2b7
BLAKE2b-256 3fb770d031cccb7f3c1b591064c55c84d1b93a1d1649ac3a81ad4399bdcf110e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86502f8425340373134649f7afbc4c1ddf9dae23348402b00d9e51b708d10611
MD5 bad33811644da09bb8fd2f72b02f8e75
BLAKE2b-256 8c434964416dc8174446fcb713a385348a068af5ebf59f3f4eb8b06ee00f358a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28b200d9350dc1a2ea4683070e59f4f95e8401d1d1e82b9cb4b1a47eddbdd1dd
MD5 5d3dcabd79be407df71658457765d097
BLAKE2b-256 355f06249c166d773ab4f025f5c78fa1f79d62099eef92aa761e1b9324f990eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8015966ff4c37af1de15524076b389237c403e60abe303c191df20c0cee47e83
MD5 db93b185efe1b37340f3aeedb8864e63
BLAKE2b-256 c08a0d2a60d77f70dd69a0b806c02c6f06f4ace42544d9170098348328d4ce43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17253fef8e31e19aec84d53a6158c26fa1f6caa01597ab903c63fbb207be143f
MD5 67c1c82c60cd81b1192ca743db4cfa29
BLAKE2b-256 57f1584075ead64320a2bef663c76f7b3d67f6fb27211416e5c54aea7e8285fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b1170f0185cbe933d2b3e1802f4140e72852273edf4e0ec1afdbcca615920fa
MD5 cc4f2b43b7f52a1276eb618296d3f892
BLAKE2b-256 59e68830866fc3556e26d1e15f44e7d867f95072c0ae802a357d51a1c0392241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43ae7452eb0ca55efd35bfc128bc28da921c0d90e767e1f7397b8b4be3073850
MD5 5006bf2123b632fff7eb4c318b4b2b86
BLAKE2b-256 d4e8dd4e01d3ec08bbaafddb0b53cfd8aa6b3f554d293ed66d9e80fcba81e6b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b7aad2874155ca05cbbd82b7f98a2d9b8ba62d3a8123684e91e820aa702a227
MD5 b12cb4564e4dee4cf42e31b38969a64d
BLAKE2b-256 2c6148bf23ef9343b13d2cc1ab15569cdfff2ec125badfca3338a3501353c275

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 244.8 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 beffb43a9acf0649234099e56214d32f65733167014ce6602cbe3ad625b52b3e
MD5 e42139da69d3ecc292ccb6559028d8f6
BLAKE2b-256 77163d04be631ef15957c2731c69da97f031edb5b6ee0ba80818510c9a3d9707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 28574903f7b820a1d6a619ff64ac7f4f6c60542cd38f440efc02150d523c3294
MD5 5ff755e5beabe2a89298b443c1e46d15
BLAKE2b-256 13d902fd198c0d7c061b383aa291759f86a0cf735dce64d2435da7ec0c273275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8601a0ba20ffc3335d0254837ef7093368302066ee973610ad952ed159416073
MD5 ee2a3bf205ebf8327543c67501bb47cb
BLAKE2b-256 c3c4644d93e8080b455312ee3f5b7f6e07c9bf1b9936611e9127087e8754b644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28d989f868d6839533f11af868596bb4a33507f97aac05736666a947e47880b0
MD5 8c998f4c2e68b9fb866b0848c26731b6
BLAKE2b-256 efc73e77fa2655c19c6bbb46efe6bb1924cca7a6e7f21b1a1583c286110db310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e98e6861dd91d36f0b54c48372a09828fb5c7c6ed0b9b156a83bb6353077e6e7
MD5 b851996e30beec9dae1634c7e0fb1bc0
BLAKE2b-256 63a669a71231aa3a986b9029174a121321ae77711307f7e212ad683c70869685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5161e24ce4dc2def9cf1ee598d21ec44f1bdb4d9428ce61f81dc2810e54268b
MD5 6d341aadfca07745e38c54227a5b714d
BLAKE2b-256 744752cdf799065916f4a495a18dfc9a2541e21222ca8cda07868fe7390f69f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a6f77f0b444955ae6f3f8108e743092c09b844c36c7b23da5df3a523901f9c5
MD5 55e1fb889cda13530bb70b656fb8d94c
BLAKE2b-256 70aaeff6e17995618e9a6ec4ad33022fbd6c3426f6157128a57b5067d88fee97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 740f0ad78b625a0012e88694351153fbf07a6c2894ccf18b06789932fd01eb39
MD5 8997cef97bf2269ad22d8cdd9ef5ddf6
BLAKE2b-256 d342ab2a6c28a1e303091acd0d12e2b810fdaa56a6a851abe55f7fef0e4e85d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf2d787d3335bacc37f40771823552dd22aecaf4de04fa5fa6cb94f0f0234edb
MD5 be7d55dcff00648f7bfda06285479f29
BLAKE2b-256 65d9139f996bfcec2112f8d8cdb7c9ef7d52734af6e7d1988b87014ae8dff4a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 301a2a563d949ea7b128dc111abed10cc6205c80afe6eb7dd9540020d3917420
MD5 191781bf8aafe6ce0e258e85e27359d7
BLAKE2b-256 12e0d5180103368124f2490b1f56b18d1ca2cd704504b3e28addf2e7678a3531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65eb524d442912421934bd793429c64f793827eb310c8b9eae6be0097ff546d7
MD5 d0a0e59b3a1c60ad540f2a8773690146
BLAKE2b-256 8f86320249ea71547b2b9f03263dbdffa519e58a7ba3c23842ee4649171be167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b73bc48581c340375e4c8008a052a9794e3bf92acff3ae7ed9560e81ba03f47
MD5 f962486f1d3e9d994db6a5fe2c345905
BLAKE2b-256 a804f6d85be22d6ce6f81f5c0271f9d1869411f2268fff36ff316fff399d2067

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 245.5 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9da0a6124485d3120dfeed36159ffd657211347b0464262e6e9cacf29c1026fe
MD5 3c4094c51182cfd8c714fe99e0390429
BLAKE2b-256 b9a84abe57e1540aaa57b2a65b7c4fde6d22c7959ba74a4bbf0115ca1630a27f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 028aca10270e378fab098fe7654a43032ec57ae137f332bf8fdbbb0d1463ceb3
MD5 b682ebad23d728f45d81368e6fe264a0
BLAKE2b-256 40b6355a517832afee96d10829b95702ea7cd6b4728379981b706ac66031f253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 691ed028d4ef474b7e53d1218ba84c696a79b56ec5c551e53abd51d015b44070
MD5 1a2ff1cc470db873ac26e447a6b01997
BLAKE2b-256 583bb36a03b6500dae7cb9928b37ea586f9b5f81f3662914dfedc897a6d90ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ef3b0d32f104fb5636dab6c11ac5ffeef8a5d948ef6f043ac317f0f9ab1c919
MD5 e25f94085ad735c14d06580a8c2fd2cd
BLAKE2b-256 0a6905a98281aa53bf598f2bf7344892e0c0fe9dd814bb61318c823fc4906a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44a1628270813110b9ab926d6b994be1b3eed8c4ab6e32dde9c5238a334cc729
MD5 e72670639ac1220cf65c9bc50a144341
BLAKE2b-256 cf2836ac442a79bd55af4ea6167fa5d0ca8633133838175e602812e4e79f90dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0375f6c64a3bb8effad9ffdb04fb36e3734d5011f529d5edc4dd626184008669
MD5 35c0f1a6fc731bc85eed446079d7356b
BLAKE2b-256 6289b495a00360bc1d25c0a335c6b8a50720695902a4f43b9643ac236c908426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b8e3acf87329543515cbaec05eebedab78e184abd852349a2133a8872abdc4d
MD5 55f794cc683f9fe21569d4d7868e5230
BLAKE2b-256 1f3e402db9afd8890e789549ea53a38b29fb772fc1ae8301e80a630b27618ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5fd91a83911bb1a12bbafefda284794c7b8dbdccbd8cbe709bcefd8ad5ae9c3a
MD5 1a5b554fae1451133085b674d3521187
BLAKE2b-256 30c516a1ac632452838f748ad61b73b4e103fada05d04ba5fb34d45c18d80f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58c14d2577ffa6b8a78a5c20ba9699127977983b73d25984acb5a86f9dcb9996
MD5 d6488e3515fa12e67d165eb86e42a02b
BLAKE2b-256 291340beb3b998da791629390f1bf942938ff975ee3cb4802cd506ae6373b4a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc20c6e0d5aaeb16907834ed8608cb03819142dcb1339c7e07b02c3599d77968
MD5 e5c52231180cd51b28999e0628f0d79a
BLAKE2b-256 75aad4f86eafe2553c9820d89287b5ca1182465d8955520c10420b22b9daf0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22cf82d3f434d6b533a465a7fe0350a85d3d37945457692a2c1935a15361de20
MD5 ea7ba999bf76e4fa64d16511da444cd6
BLAKE2b-256 ac65e50c57aec399a4ccb2124409d4e378b846a999a4af678c11a6ab62d6a3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bdb56ad867a0df865dbbbbc760a07236ae523fb3d06b80e9dd827150eb438e6
MD5 91b289bc4a7f7c3de32fcaa062007abc
BLAKE2b-256 4943bd78de1b7abac445b221875a4c886ba31e8b53eb595a0b5d8846ab168c5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 245.2 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fea3c4bb11425f9c0aa752179fdf1f36fdd5583c3bb99b9eceb0f001baa91883
MD5 394766bc10ea137b69627e1a8e17e45c
BLAKE2b-256 2d965c064044ab3aad9319fc480d3cc274d85dc82f36d01ba39bce1d08eb3c1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.1.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 36e6b431e9ddfef292782cbff4c983d3a79163f349451b420389d1027b6ff71d
MD5 e999ad0b8531d4199a79699eaa9425c2
BLAKE2b-256 c2541069bf98b8fe0d05385d51c5327be34c3abe3549ae05ffa56aa259e645ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b9f6ed860257fe2bda0575ced2d95df315e99244203d4dacab7cc5bfd44ccdf
MD5 d071d267c9283951627f645cc8d5ccc4
BLAKE2b-256 5c6c13cf2062d81c2f0f813fcbb59a33cc835569900add77c498169cb47d5db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94ba2cdf83c17761adc89841e1d926533c4fa1fbbc13eb64f02485595d8b6e94
MD5 664006adfe2eb52c680a202aad4b16cf
BLAKE2b-256 00dd9d2eeba669b25fe16450bcfefcf30adb3c9b115d5c3489be1242dc6f8524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c018012a60c48c3b8515b9ec6298c59bb4d767d738efefe047f5a4c66b738952
MD5 ed15814737383b58cfab45ca78d99310
BLAKE2b-256 19a993ca8e436d02027570d5c0482dbc01a39c59c922d4e1b9aa0cf0c9d906b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6cf4359bb31a1d0c7b62ceaba9e19aafe909d6d666d646ab2966a9d65a15200
MD5 0fcdcad919a5f4c41229e705df992a09
BLAKE2b-256 2cfdb0b64341a3a1a26c655963f2d223649b0dcdbc71a75f2da33ec1c6f2088e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83a110b71e2658ce0899e42fda1deed241f0dc8c1c2a4bde93e468f5d1b8bd67
MD5 3bed9a23935214c811ee852d7dae75a6
BLAKE2b-256 71c6f723111a21161160e46fa4a3ac04c6995444f29a38fafe7d99702ee77d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62fea59ed5889210884c2ec99f33c05b8673e44befb9526bf6d582ffc7263bf3
MD5 7ecf87274dcc916c7f2e819bf54c86d0
BLAKE2b-256 098f3006c14c021dea497ef5ed9a6f1aa68c8e20ad7c5601348a523dfb20d8f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f5b1e7a9c45f8ab972eba47c9c26ba2d47d370cfc4c9ac4b462923caeb730ea
MD5 3345c19004262ea8e1f88f73cf9670a2
BLAKE2b-256 bb8cb49e5a84bca75bd2fadd8e5948016c77ee82cf787c672379d0f75a2e77c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e16f33a721a3ec2245d94abf65c2abfc299c4afcec347a2f1cb225aca544573
MD5 1e81d1ae456327b2c828c16fc0d192ca
BLAKE2b-256 2d50012488baff9b542ff2688eda268ef2edbd2c048f3788920251940de9a26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ad6840bf5b341b8b6db38542ad755c276cf0e065c5d79ef7b1bf6d5510b9714
MD5 22f7915fb31d8e5b017d4c638914fa37
BLAKE2b-256 b21e456c4c77d49e0c1e233f6d7319934ab823514b4b93ae67eb501c72d82951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 246c9512c00408eb5d6c0682a5eb650e4b097635d98a0e8c607621b8046213f2
MD5 1409ad84e8a70a01cc46cc17a20ee5c5
BLAKE2b-256 43fbb2580abd40c9b49530549afe237bef1fa7e46a2847abf2e35eb85d70766d

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