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.

Check out the example notebook to see how to calculate the angular velocity of 10-Hygiea, a large asteroid located in the main asteroid belt between Mars and Jupiter.

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 = 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.2.0.tar.gz (1.2 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.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (584.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (614.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (682.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (588.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (441.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (419.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (584.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (614.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (682.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (588.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (470.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (442.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (419.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (585.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (614.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (682.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (589.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (420.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.2.0-cp312-cp312-win_amd64.whl (249.1 kB view details)

Uploaded CPython 3.12Windows x86-64

phasedm-1.2.0-cp312-cp312-win32.whl (236.1 kB view details)

Uploaded CPython 3.12Windows x86

phasedm-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (584.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

phasedm-1.2.0-cp312-cp312-musllinux_1_2_i686.whl (613.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

phasedm-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (681.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

phasedm-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (588.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

phasedm-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

phasedm-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

phasedm-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

phasedm-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (441.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

phasedm-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (418.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

phasedm-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

phasedm-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (360.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

phasedm-1.2.0-cp312-cp312-macosx_10_12_x86_64.whl (373.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

phasedm-1.2.0-cp311-cp311-win_amd64.whl (248.3 kB view details)

Uploaded CPython 3.11Windows x86-64

phasedm-1.2.0-cp311-cp311-win32.whl (235.9 kB view details)

Uploaded CPython 3.11Windows x86

phasedm-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (583.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

phasedm-1.2.0-cp311-cp311-musllinux_1_2_i686.whl (613.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

phasedm-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (681.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

phasedm-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (588.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

phasedm-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (413.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

phasedm-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

phasedm-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (470.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

phasedm-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (441.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

phasedm-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (419.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

phasedm-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

phasedm-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (364.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

phasedm-1.2.0-cp311-cp311-macosx_10_12_x86_64.whl (376.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

phasedm-1.2.0-cp310-cp310-win_amd64.whl (248.2 kB view details)

Uploaded CPython 3.10Windows x86-64

phasedm-1.2.0-cp310-cp310-win32.whl (235.9 kB view details)

Uploaded CPython 3.10Windows x86

phasedm-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (583.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

phasedm-1.2.0-cp310-cp310-musllinux_1_2_i686.whl (614.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

phasedm-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (681.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

phasedm-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (588.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

phasedm-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (413.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

phasedm-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

phasedm-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (470.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

phasedm-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (441.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

phasedm-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (419.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

phasedm-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

phasedm-1.2.0-cp39-cp39-win_amd64.whl (248.9 kB view details)

Uploaded CPython 3.9Windows x86-64

phasedm-1.2.0-cp39-cp39-win32.whl (236.5 kB view details)

Uploaded CPython 3.9Windows x86

phasedm-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (585.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

phasedm-1.2.0-cp39-cp39-musllinux_1_2_i686.whl (614.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

phasedm-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (682.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

phasedm-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (589.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

phasedm-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (415.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

phasedm-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (480.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

phasedm-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

phasedm-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (442.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

phasedm-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (420.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

phasedm-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

phasedm-1.2.0-cp38-cp38-win_amd64.whl (248.6 kB view details)

Uploaded CPython 3.8Windows x86-64

phasedm-1.2.0-cp38-cp38-win32.whl (236.1 kB view details)

Uploaded CPython 3.8Windows x86

phasedm-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (584.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

phasedm-1.2.0-cp38-cp38-musllinux_1_2_i686.whl (614.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

phasedm-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (682.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

phasedm-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (589.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

phasedm-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (415.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

phasedm-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

phasedm-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

phasedm-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (441.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

phasedm-1.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (419.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

phasedm-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.2.0.tar.gz
Algorithm Hash digest
SHA256 7dbb3d3407bdb2902b0cff6389ae0e5594ce66122cfc4d77ddd0dec8dc225e74
MD5 3b0b9014637f00aa28d1241121b8a18f
BLAKE2b-256 d557bf9373779ac4f3b746ba8ae33f87d9c92bb39e46395413e00c77b664f6ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9725184234380e76680b841cc44033eb57c0f5c0563fbc079743f84dbe6535f
MD5 f493628af26aab2c7c2647a17d9c695f
BLAKE2b-256 6998b4ef3c930fac63ff1026323541f27f4695227c78ba221ea908eb2404a0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cfd6b9608cba1e343c334c2590aaf968551ad243b40aa82c9741bcdccb4faa24
MD5 40cd98238573979ab290417bb81d13ff
BLAKE2b-256 b9c3de8aa242da173d04109780ed4855a51a8d7bd544455139471f824906cada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31e79bb3d504d83194f8b57cac77aeec306b16179e9af23a48b316978a32cf12
MD5 1d144fc035edb5c6086d12327e881844
BLAKE2b-256 28194e9b9d2459129e440e74ceda54a065c6101f518b787ee51ac1dc0e9d1bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18f41068a13e01ace2f50aa675a7d12b5a04e6bf907db711c7ae1be3b13efbf5
MD5 0b2639b89a15346d78208e5e0985df28
BLAKE2b-256 6d641c4f0cf94c9a6a1e15393ee9ee29ecc4ecc1fffac52bb3d657ee9fb19814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36ebf592458599b2223b6c3bab7195feb96180647499ae87e678e0a8662c3f8e
MD5 ba5d3068ca6863488e8bcd908ec22d90
BLAKE2b-256 b930d479f58537369527481deef6d29f2faf699e8610a22bc1971832ad2e09ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d0c077adc068f0f081c7a6d5d3752d5de66b25582b160fe2e4261754fc38ecd
MD5 9043ba21944bcece231263560ed1e7aa
BLAKE2b-256 432b9492703d2eabda3a968b2a991f2d56ed100fc5b189597b830273e43141f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b159da9596dc0d983c99523b26ba25af8c6ad6187f6068e944edb1becf8308af
MD5 9af9905bfe2d9bd010bd53714c256e51
BLAKE2b-256 c8001b3ca947fc0bd85b285d94d3031df93e278b7d95d9bfc0f5e4cd56169dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e2193a941e8b1ebd0db081cb3c007a427802d864a43caecaa5049beda363149
MD5 6676274cc464b70652a5762ae4ee8713
BLAKE2b-256 38fd3263d55ab14c657273f37da2ac9452ab1474daece5523e2379a8fa3d2fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfa0f6f294437a44c851d92c6474e6d8a67520cd51c3d71423bf6fdcf4755361
MD5 ad3c350d21237d47552a444e6b68247c
BLAKE2b-256 1848d14512c0e3722ea2bbae50e039e06cedfb6e8402cc7741388c66d87a4ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3571ee49cc6b5421a11883c691dcdcb23a01b0658bcfa5158cf958113efcece7
MD5 19d9fe35f937391405d5814488f1bbda
BLAKE2b-256 6f3e3b67a9d1ec8192c5150f8b5225fe5bef5bb7156bddda7831d379fce0d6b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6c225f16a03650bd66c99af165ce3ae16ca6f9fd1cc52e7185f0aae1cbbc186
MD5 9031dc0ee15b11154f9c708c5150c9f7
BLAKE2b-256 cb7a5b684e4a7cdd8935ee361ca8fe4c77caff80a67a9e8e3b16ec6064726ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f8b4dcebc30b8acf3c08dc0c89f997facec8abbebd821fadf0a427a16e301ce
MD5 bb2d7218c5821b2279fee0c4f036e113
BLAKE2b-256 e56b0457473c34da10f3c4678f582aebbf49c337418155782c718a87062b55d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b996c7d2d6e54c018bce0d9d87ca0540fe336e17dcda4c042851586a69d1104e
MD5 9499c7c16f35b56d5155975032ea6e36
BLAKE2b-256 d7eb8f279bb1bec568b7382d0fd12a7f9c6e3d354a45c33eb4be29890cdb59b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bd019b23c1e11c3dfcd5a3b65f86de49f712d0300ba8abc35674fab2427be05
MD5 67f1b26024226d69ed72dbc2bd149ea7
BLAKE2b-256 a32dc48ff69b2bde2861fb1b279f6a0467328a5e4374ebd2804747c8b6f0ae74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96905b02cd466ae81ef05827cab5e611aced9e2f89613a2f393686c7b7a6435d
MD5 57902c3e30e350264d04df582f78dc8a
BLAKE2b-256 0c206278b7c3fac29fdc257060855390fface19f53205f9dc2d8d055ff31662d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b5b261683272f4cae0f693d97e3d564083058b874102c5d11f650aa65824a3d
MD5 e0979972de10a5ba80347c3ec3d70ea3
BLAKE2b-256 3e3eaf660e736a737dbe54ab30e3fbebfcf2784b082db00c763a86c261400486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6f1a9862f841f8c6148aff50fbe257dfc3b02ddce5ff0bb9002a5f77e9733cc
MD5 20bdfa5413e079206c8287b7973d0a5e
BLAKE2b-256 623337103981fe71f265742e6056c73b5831daef25007cabac61d9c0191cf5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8117d350515864292b025e9bba030ce2a67f49532a4ab9f97700090344d9552
MD5 1cf10c76292c3d98095f9f76be63178a
BLAKE2b-256 667a7d0af24ed1f781f93298be37d4ee8a3f4bdae87414620aeca44b7bb1ebd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4681f8ae434419efb5c3fea3e7fcce78a8cb241bb35862a19563d08fe28fb306
MD5 6b9dfa7d7bbdba5d5c2e1ba7145de320
BLAKE2b-256 83d669b40adf0b5f1e6cc1b661dd7153d5802ee8f855a50c38b9a321d50c7c07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ed506c7ee34380d56652dc6375b6997456173ad7396cd7a615642167157224a
MD5 47334f765e0a08e46964212e9ea42d33
BLAKE2b-256 e8c6ec2d4bb00a8e2d4130058b910d9ddfe9270f80f1dc67dd28811671634707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 516fa5e114977386791c6eeb7fbdc5e7701f417b722a7fb211a7578f2556e678
MD5 12384e5135ca47f4c395804b96cdf5eb
BLAKE2b-256 7e91512ac6286f934aa1fb2fd970b5781d3c2004d847e2ce478971396fcf0bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfb86be7b69acf0c401ff57181ac6f5506f73d136469d01bec207fc85365509a
MD5 5bff5ac3d967bec5715e146052283cd2
BLAKE2b-256 d71e51ddd090cb3ded0d1377b2e1ee57344a247234af0b74ee080fe26bcf8ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d14479b0cee996d63ba57d37135c10984d8086873682e61ac796ee8d7c815ea4
MD5 c0140f13753bae3800794f2ee6bf601d
BLAKE2b-256 69f9e276d1a90b5bcf715857ea758dec5ab1f98698bf3de4cf5930c53a6753bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afecbb8dcf89e1a2a6fda746c84631d988c67776c5190091dac2378c1f5a5e2d
MD5 661eb66f76dfe3f94b2d787e3e7cc715
BLAKE2b-256 a5f99d1e688062a8a76b4467bf80afb751ca619bb7be8cda2960bcd41ab84416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82abf637119fb53bc47a6b4fc441f073b9f7717848f932af6da7216a8b6b3f4d
MD5 a46ac25cfef7fcd43acd210cede85135
BLAKE2b-256 6a02c4253e5f81695df0fe765bd5c3e51e2852b29ccb65cf0ce0a407e37e95e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7afd89c344d6c8cc7ed8472166a4c5cc5d329e26dc35dc6e3f4c5debce336d1e
MD5 65af0a78d64cb2feb08d5459046765bc
BLAKE2b-256 d26f963e92f7721977ccec838d257516adb22162a879f44ae8ec759d986971f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c0d9613635135eb22420126a00fcf7e7179f5cb9efe976148323dc2a69eac01
MD5 15badc47a5e2028555e6e015243f066c
BLAKE2b-256 7f46dc1b1000ee3c3302a89499735841db6853d31db100b3da4e836ad35aa562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34be547d94f0fbee45d54c41b0b169733f9634328c1e68519f6305f985188bf3
MD5 5eee283cb2d285b8a58a40c4db892cb6
BLAKE2b-256 1d30968a0fad872943e4d390da548d3310241f93094594e869575bafef7d9096

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 249.1 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0265cc00b66e8637291040a2ee7fcd57151dbed2901f955a2c09783f83b8d66f
MD5 2cfcc514ce0c52e300b756b14c8c1612
BLAKE2b-256 42d7f649283c511201d039cbf41d2063878d6aeda09eb66577c99fc70726730a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 236.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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1cb3913b124562a543fc55a6d9e04acf5b0bfefd071b3deca28dbf769d7b80ea
MD5 b2b643730acde791c88792cfc25678e7
BLAKE2b-256 b6779f62c206f9970c52e1fefaa35cfac3e5f637a41403ae9b4f82f449254a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2866096df47c9d2b025c638ce487bb6e0ddfc21331f544cfdae77529c0e0afb7
MD5 45f7a7844210ab63661e9438046e6788
BLAKE2b-256 adf320c937909af1b74788c10a133073c5e4ddc4021cf40817488aa0d24e709d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff817cdd75d371ffd7b87db5fb1a7234a0015e4c215bb86f47dd3af3abb70f62
MD5 c05a93745fb97313b3143dbf2fc69931
BLAKE2b-256 f5b733d0cfaee9cdfbbce99669ea926e7958f1006c59ba88640d6c09d2cbae31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7473a7efaefba969effcb12081d09653ab6182263679207861dbbd9b097b5443
MD5 1affcf008f1fc5e4796783df54ab6220
BLAKE2b-256 7000b6fd3c288e94694a6eaf3b26e91b16f39080c00c82cf81cead2fc3d1092f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 866d1a56ea113346906b427382fc3bca905b2a750dc8fa056a72048db55e2218
MD5 51f6093ce2781846419f44d169aaf827
BLAKE2b-256 1e4621177b0eb9d154bd67605ee436a00433e2a3048cea18364a2241e27e63cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f705c4ed2b706b4a91e16306e769e89bca7e02b3d68047b4c8ffc6a1feebddb
MD5 64a3bf989f2634ffa312f45ac0be08cf
BLAKE2b-256 10665c9e3ec48a2ab9022d5cdde9e3408a5df0ce0e68d5afed9d1d9d74c8ef1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a95a1cee8e7507a0dded49574301f197134f2353e9bff8182df607bf81987ec1
MD5 a6321280e445be5c360d5eb568860f4d
BLAKE2b-256 2836066f8308452adf478cbd6e8fd93caf820686de965a709ee2c05a58155936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78683fc796bcf1badfb7fec153d0b06f6ddbf552929cb491ce0f8460671381e3
MD5 8353c40b02dc03c5032a6937a5156f7e
BLAKE2b-256 0a7b208964946c0f65b50abec1dad114c51b930eb10abb4fa3ffff5eccc64fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c7b34c03e09d687b64456c1bbf6671626c059663bbfb4cda2cc9aee9b39429b
MD5 237eea49c7da64675d9147af2f0cf72f
BLAKE2b-256 2a4d0bc207caf43910a87bab216c8e270679fd511db3ba4f44fec2e03cfbcbc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48476041cecd7e2356e5122c923fd4fad59b673ca01855faade7332fb93aa970
MD5 375e48fd318b5e02ef0ea79b0f7f7e9e
BLAKE2b-256 bd727371e4559e378fd67077be306d5544c9b73757e6bf29dfe8edbba5debd84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84fb62e95806226db07e5e137f645904161b3a498746252341d2f5b14e9d2a20
MD5 2d4f3e334c84f708f712a7658691a721
BLAKE2b-256 fbd3956fca33840fbd8b04c204ff49889df195bb88d4e6860efcfa986ad23e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a87c771aa6d27315a4351b6f484f2ee9db098be6032d41eec44af5cfd4c0fbf5
MD5 8ebecdba3ee9da0bab4e7b0c56034404
BLAKE2b-256 ee1da83c1ebcbd21c1962fe0e1a45dd31ed3e101fe76aab801e693254093e7c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e71d5a964440d606cb57710cf29d94f8b5915998a07bf20af1acb050d02d4c61
MD5 ab0e267233bb50416d7bd2f812b20ad5
BLAKE2b-256 057081582a9c908b37af390622ced08f6cff6c77f20bad4c8e1455c674fd4ff7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 248.3 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec3fd700fd1e78196212eefca38d0b4ad4ff555c9baba20f73a6d58fb7fdd9f9
MD5 757ccb2a32e3febf842cdc44e514794f
BLAKE2b-256 c2aa89aaa848364e0f996f1ac6432705aef795c62c48a5cb12323a8054ef07cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 63bd83e51184b00e9304db068fc3b8de38cb7858c3807bfac5a926116f2b2dd9
MD5 989f5598870ac9fc642e409de639e619
BLAKE2b-256 fa24be75e9af315f64a735c9e2b24d6643ff4e09710be14cadead473aa4ad7be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e41edd9272b09f24165e8f75022ba8a36dfe4255854c7e2a88ed38a9819b9004
MD5 c68139a68f352ca616c0ee50648eb9e0
BLAKE2b-256 0f00b5219d2feb9c83eeccc1d7848ffd2cb322e0c5f8c6429150ea6b77a05390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd140905330412b0bf45f4fa095b057c5e2fe7af943beaac5e311a7d7fa1861d
MD5 bc77361f5c627fbdad58f5f21694c3a8
BLAKE2b-256 3729ebbaa27992c2a3f3c734933c7445dbeb8b3e73d1c8867d017fa8c1b28846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ac3e2d58723b9565e0e9afb6665247219ccf5f9f7ecdbee51eb91fce7ac4109
MD5 b9d12e3b5dbcab41bc284c3aedb1a62b
BLAKE2b-256 0b2d3581025e925755979f62b15772ae02edcd8192f22400bbe055667739da63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af0569a6b68839aa06e07de194b5297557e933bdef579ebef87fe5691bfb355c
MD5 4d4521c5a637d9dd243c5e4b8f4e7394
BLAKE2b-256 dd841d069d556fdf062e7f44dd6dd5937f4d3cd7f7f2d15b7cffddfe8ca3e6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9932d6fadb20c650ac49bb131ef0918a5611aedfd7384b2cdedcdadf3ad4b88
MD5 f322ed0c57b0e49f5ae54acc20e1f16f
BLAKE2b-256 d11df43289b00be87769d110c90a11feafb9459fb1cf4136ac1ae61383453762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a505114d5db188cbe42f672c74ac5e594457fa46b682c9697c6a39a45b7d341
MD5 528e11ea51815a40f27f89cf5240f94e
BLAKE2b-256 adeda2cee9701b353ddc07526048972e8228cbe7f23e51e3d1765c04d91dcf95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc2fb49638ef0a36d1975cecc7e703cdbc15b097edd58d917065e83f5e882f7d
MD5 8d52d85bbafc01109aa3967a54832a48
BLAKE2b-256 ff46b99309dfb35e3806063ecf70aa9c62facc56f47fd5f7fc43b60bfb1b9de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7af9ee1d6b4ef9391be912792d0bfc7d228684c1af6b74cdad563937b0a6ddce
MD5 728a737a1d0ba2b17bbf860d9a377275
BLAKE2b-256 b6595f7c4626532f93f04e9fa24b66dc176c38e312eb55aca17143795279581a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6027a78ef2586f24f6c310d7c92b8cd60e43f7e3bcf0f860818fad1facf9409
MD5 02539aaaad9cd0ed18a6126072aca601
BLAKE2b-256 ab5f0406b5d9bdceebf264647ab86a61808809b349d4d73110e2e82b3988595a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c7fa964b1b3eac30ce28a09f2d1da809c9c5b7f3176656826ff43c455aae5c8
MD5 7bdf5b2f7e9365051ac5149809d92c14
BLAKE2b-256 79b89b04d81b6ff3adc4ecbd6478a556b39bdc17d0825098d869ab265dc93664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aa4c5f3d5687f99e2c92dee8b21951fe73325368b8fc706ce43dce8ddd770e3
MD5 3249871b3732e173bac7f70f5f191d74
BLAKE2b-256 dcf674b73e655bbe55aa6430b6df3c06678f534d7dc53f0bd16c5ba432d7ea02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58766ca16da3eb296b17ac55ff020610c4b2910c572c63f6ef404e4f29153c89
MD5 70931ac62aba80ef28ec346f6aec4963
BLAKE2b-256 4bee3f664bce1d38ecdc2e21c7de0f4578ef541bd326ce891145596252368508

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 248.2 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b64f5dc19e2fe217b89ba531964ee26e7a87d3f3ec914e113b151cc5243a2467
MD5 ff873c19381d05017799030265784e33
BLAKE2b-256 48a21f9bebaa04b38418bb1b2799f051dfd4243b8800a22aaa92e67d8d239816

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 235.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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 83852f952f12318fefd3b9fa98d1e10c786f13700108bd1fe7a067fc03e80af9
MD5 7ee1c0cd6e1a8cd9b7ca3fffaa934705
BLAKE2b-256 2f3ff1428afd9a83c1931c9f052a7522487ec3fd7480f939cc6a0fb28c3cda84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ae70302b1eff75439107915dba22ac9a038ab02d97d7c3f2f78349023c08518
MD5 37b424961b89924868664e981662c630
BLAKE2b-256 4c0654d68306447772c7c3113e3b25a43c4f08c958f265a3edcb9ec82d13ac59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09c1e95590d410b778ae15f89f6f09e377e852d6068bac97483331bdc5936783
MD5 c1533bcdb39add07afa4a5c842ecb5ae
BLAKE2b-256 c752b2f0f0e7dbf2d3bb2b4b8351824c1b3ee84d13bd7cefccb3f57166abae9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c276019b9f4e4929990841a280c56d209081e14e7cc9897f7517ea83e38a2504
MD5 7f5c5f8210811a9a772025c0c4c5b110
BLAKE2b-256 4232bdc81254970204f5f44244e92714dcbbd98ebbadbe663a66c921c5fed00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ab774fd9f1b34f2117adb7bfcbce170aaa4b989fcf9abff8bb81f2898c12a05
MD5 476fbaeb85612f212b1b94195537bcd2
BLAKE2b-256 b4db2d2716d8046dd7197994c580b54fb2b95d5e8617a9edfaa2cf883952663a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65cce77428d45ed6ff3cab8ed44ac9c9ef96ad2acc900d34e6afcd383169eea6
MD5 2297e048f82c104088233103d8c68934
BLAKE2b-256 8bce86035a780e611335b6f9712778e20f69e539d92354623a8bbb6fce7bece7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f6422256ca536b252e427fe95a49b2f07455b849be891c4c7cf89debe639b05
MD5 9fea1d595a9e9ced90aeb8061255080a
BLAKE2b-256 1a5c5ea9b5e28912763b5dcc8f62b7a59f32b537ec67caaa3ed74f5056d7346f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d3928d0a82728a323de2959dd1722728125f6084d3fa32f38cffec7bc73bbac
MD5 391510561292483c9cca21ce4f935232
BLAKE2b-256 9d89e18fd0976656d9f274493ebb7af4b3a83ec8d321dcab7b26670ce5ca7bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa13d593dcd9642f01687c27281e0fa34777c0fb187b43ff4a5f06dbf0e983be
MD5 d5ef1a33305aaef18083604f14c2fc5b
BLAKE2b-256 904d07b9db6e0a93814a2829fed51a718ad67a853c06fe3ff933d4fb6fc68120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9aee57fc174a6463ecb4326a8f3d074b52af32655fefbfa7e136dd964ae9bbb9
MD5 9969f0eb4057f4376c9ee2520b208178
BLAKE2b-256 c9d813236c54dcfb5561978fa80f76443d56fc8760bb1a93db4458bdd12140d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ddc2ae21134ad8864ccd5e516373c7a86658586f83fcdc3798022d14b7f03ad
MD5 928a5079b5504546696b0da155a9d000
BLAKE2b-256 dea6e7eb39dbb30025a99b78fd04c7cccc393008a337aeed4925d37fe7829efd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 248.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.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8e6acc76a4d379dd45a928a7960291e53ed81e81b4ff5e605eb7305c2551ee49
MD5 62970c27b490f8d6ee469b6fd584b7ed
BLAKE2b-256 f84552fe9ceb48bbd6e23f9b66c5e88fff6e64c9a0e73a7c8affe1c48fc4fdf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 236.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.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 78e2a773822c87592fd7e6de0d7b396409a29fc000fa1b047a4433c1eab1e23e
MD5 5a31ed4f02d2b612c3e96933074a11bf
BLAKE2b-256 0a9cd897a151659639e745eb1401fcf5ecf6ff8f37638f65c6d5bc2726d1604c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a37ad2f21694735aa57fccd6dcea7691099fe666adfd05f9379b79554c29f47
MD5 50c5eff8ccd5b67711dfffbbe95d9189
BLAKE2b-256 f5479158a59169577f42b869a30dea53e46cf0d5cb4240edca07b9eda283dee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e8b3853eda3619f0df7e1863982c013330ccd2bb48a202c2f8d2f5befcfb243
MD5 335b666ddd2c074a92e282396f8270b9
BLAKE2b-256 7ad62f4182f5a704047f6caa87f51208619d8e064e5b54109a8714f2aba9a4c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15231b3f6b507e5905980312498f2adde0cfc80f5cd747591744c6ffc60f6956
MD5 3199445ce6296bb9c71d60fe69207553
BLAKE2b-256 cd5eb5547a5d31ea61acb10cd1dd6ada94bd822f629cdb950dc29b85b9d7cd89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 904040683f9f5d43f3e2d07d266ad5c20f5a3d587a9781a906dc9c5426661172
MD5 0921d13d1c677f197219fc7bd2ab5451
BLAKE2b-256 35503e1daa05a366477f1719a8f5de6052c4ca6662cac8173b5bf69574d1eae4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50986941f5c693ebe7b5a27105bc6b44081251470a4d0cb0e1db48d3149ec53d
MD5 f69a22a25d9694bd9d2b3ee433ac367e
BLAKE2b-256 029d176c5c8d9c206af7bda216489a5a2e30e472a877e8f7dfb2f982be40f24b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cf02ec2f2037facf48956dbc4504ee4e778fe1002a4999b3c446fe85085bb59
MD5 9a81e8994c2c9251e711afd531cccbf1
BLAKE2b-256 bdb497f8e6391e515fe8c7f8d655d1cad6b618a4b59102573c2075d7b1f697cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32580caa10a71f715182d12dd3351e3033956a508f45d35817667abb0f9b0383
MD5 e1726e119750fbee55ab72ce2a0b5658
BLAKE2b-256 fd59bb1fe5c0164d5d98c036b295953ed6e984f82e54212b464c850e66091a66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72fd3dd79814e85a07bc132a6db0f31e34e8df1f6cf57d95d3dd3ef2a4943f46
MD5 c4e6bc244ac997b2f4050e3143b50d68
BLAKE2b-256 e59b2d57b4250d15d1f4a36de4176c1309d5060674494209367b8423765a9e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b637adb05d0e64328a13066765bc160f15bf27bb71db9fb1d97328fd6180fd3e
MD5 da9c1fff14d5e0e77eeb5f17e4ef90a5
BLAKE2b-256 0064a8ca6ad78683cc6c8fbc0ecb2c6873b5ccd832ba0a86a23f6560d4cba866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d008fa11c28ee9683ad9f0058c0cf0927b35bc70561f3c2c2770bcb4f42438a
MD5 c93d9c40cd59e262205e221b7f3b9ed8
BLAKE2b-256 7e45c3c909d3cd351e6bb236b905b6baf4ed11fea739255c6e8d082d0b94e059

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 248.6 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.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 056f4cd90c9b8cf464d94ebf6c4d7bb24b4919cf565866f7b8c7816a8f1f1168
MD5 80ee8905a1a4495ecba857e9e19e1ac3
BLAKE2b-256 a78bb3bd85bcdf6ce4517163f9089d5d79393abadb2f4f285dc985320f87fee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 236.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.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f212e564855f4e4efde58bf954bea17b4cb1aa80ab088c27f07c9ee1adf55fab
MD5 9fcc5b57536a824366367360e8b7cbb3
BLAKE2b-256 2b3a756990d5886a605a7bcc46e0fea3ee5aa8a97ecbd821c69a0dbf5ee6e17b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e94e3ef0268c533945db51e1b4bd73c646dbbf388aea56f04c8b4a21d32f15f3
MD5 a9f560d0ea510edee504032a83522bb8
BLAKE2b-256 8728112b79a4230df4e9658ffc84582579e03fd56134f743b76116f598a494d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f628ce0477e1fb6c4d9df65e5f0b64552335c79f7acb971616a041face079cda
MD5 3d5620521527748e365cc620ee7a1fc2
BLAKE2b-256 d1e2fbad823a7f62fe652a8a85d46526eea47643378ceb79ec95f36004a491b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0f8f34ccfdb5e5f222c0aeb711e6362789444ec00647ad1e6e8a34577415cf7
MD5 db973a45118a2f746d32b4b65762c2d3
BLAKE2b-256 cd605372bb4d54366ef8935b589d22c74d3124e98716647b5473c0e37dfec895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3754c1bfa0640a7e025eafe1a7038c15a7b5429e34d4f6328f5705b4626c2eb
MD5 4924fe82125b885a93da0d1c89ef32e3
BLAKE2b-256 902a80d28c9ff1382d901279812f33ff9819055fb49d0d50f2ef5bacb1127349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97ce60f3612206ac63e158238091f7c73c54681efda65715b7e5536f26137863
MD5 bdd175db2e68e135cf39a8edef353d89
BLAKE2b-256 8e68c9a56a5d421ba40ee969b4f24a78c92a19399de55b91fa98a3372f9252f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3163a21fc7862c14505a378806cee6d932cd0b2152e2ba8f566d7a64be30d801
MD5 d1ff64bc34b7b06b197f0e1562b1c07d
BLAKE2b-256 e6845a4ba5a9b4738bc940a7b53696c8f56ae2e42a71184df42ce717241444d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4232d9c41e52386b8fbe1c14f52c03272683a0e95037af2c1df3b76ac280f67f
MD5 c82d3d7b57f6eb68541b302b8e13bffa
BLAKE2b-256 8dbf96e886abb7f5f6cc2bbf87126da470ec20ecf9a34a5b0652041012b72eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d986da62601638aa064db25953780d75496d21418c9f74b9f22b868b23c7f5a0
MD5 432a5a8255ad30aa18f6e7dc2af3be83
BLAKE2b-256 4446bd15d62ed07cd7598b44e91c90e4f8b8b130c54390ba8cc99ad9b564425a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d33e655848472763362049318621aa30cfd69b0358128d6b54cf8c07402f36bb
MD5 344ad29a98f7f4aa1ee61d9cf34192fd
BLAKE2b-256 44ec3639496e7b5309d6262f4ca9461df92e331558f23e92e17dc75a2bf5f758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d889cabbddc2c96b3613fb22da33200a49d47b842c25eb192932555c8f8d18a9
MD5 f76e882a3bfd7601397aa0b46d6e49f7
BLAKE2b-256 b4052a6ba19ea253ef1b9c4402a2dd59c3603cedd0e20ff9d3d4aa8ce420731f

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