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 Platform Compatibility: No Visual Studio development tools required
  • Enhanced Data Type Support: Full support for Numpy datetime[ns] format and Astropy's Time and Quantity data (not available in pdm-py)
  • Beta Statistic: Support for statistical analysis using Beta distribution

Alt text

Prerequisites

  • Python 3.8+
  • Numpy 1.22.0+
  • Astropy 7.0.0+

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 astropy 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()

Alt text

## Comparison with Other Implementations
Feature phasedm pdm-py
Performance Up to 10x faster Baseline
DateTime Support
Astropy 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.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (584.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (614.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (682.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (588.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (441.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (420.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

phasedm-1.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (584.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

phasedm-1.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (614.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (682.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (589.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (470.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (441.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (419.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

phasedm-1.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (682.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

phasedm-1.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (589.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

phasedm-1.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

phasedm-1.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

phasedm-1.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (420.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

phasedm-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (413.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

phasedm-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (584.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

phasedm-1.2.1-cp312-cp312-musllinux_1_2_i686.whl (613.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

phasedm-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (681.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

phasedm-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

phasedm-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

phasedm-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

phasedm-1.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (441.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

phasedm-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (418.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

phasedm-1.2.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (360.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

phasedm-1.2.1-cp311-cp311-win_amd64.whl (248.4 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

phasedm-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (583.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

phasedm-1.2.1-cp311-cp311-musllinux_1_2_i686.whl (614.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

phasedm-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (682.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

phasedm-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (588.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

phasedm-1.2.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

phasedm-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (470.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

phasedm-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (441.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

phasedm-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (364.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

phasedm-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl (376.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

phasedm-1.2.1-cp310-cp310-win_amd64.whl (248.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

phasedm-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (583.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

phasedm-1.2.1-cp310-cp310-musllinux_1_2_i686.whl (614.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

phasedm-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (682.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

phasedm-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (588.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

phasedm-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (413.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

phasedm-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (480.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

phasedm-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (470.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

phasedm-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (441.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

phasedm-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (419.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

phasedm-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

phasedm-1.2.1-cp39-cp39-win_amd64.whl (249.0 kB view details)

Uploaded CPython 3.9Windows x86-64

phasedm-1.2.1-cp39-cp39-win32.whl (236.6 kB view details)

Uploaded CPython 3.9Windows x86

phasedm-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (585.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

phasedm-1.2.1-cp39-cp39-musllinux_1_2_i686.whl (614.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

phasedm-1.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (682.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

phasedm-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (589.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

phasedm-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (415.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

phasedm-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (480.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

phasedm-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

phasedm-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (441.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

phasedm-1.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (420.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

phasedm-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

phasedm-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (584.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

phasedm-1.2.1-cp38-cp38-musllinux_1_2_i686.whl (614.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

phasedm-1.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (682.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

phasedm-1.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (589.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

phasedm-1.2.1-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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

phasedm-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (471.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

phasedm-1.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (441.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

phasedm-1.2.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: phasedm-1.2.1.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.1.tar.gz
Algorithm Hash digest
SHA256 cf2596e4350b4fd345c22134beddb975e33d763c3f25d6c4eaecaa97f65a5287
MD5 c0992403aac697ba434edcbf0331365b
BLAKE2b-256 dd417dda48cdbdd646d6f98a684720a141c157f960d266f7becc9dcd13d61491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ce23e02a5bffcb07d8faf838277887c766ec1b837fcd67f12644556dd51268d
MD5 ea7aece39cae2055dd28ee47cb5080ec
BLAKE2b-256 87ccafdc8af339229b4ecfb217de2fedc00520d21ff9d38dd6f537d80f2a5c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39f4d295c449c4d699110fab0d9c4d4eb3a49452e512d02e2d7ca44d1b7b7fd3
MD5 8f3619c44cdf07adffba762e7e960cf6
BLAKE2b-256 22daac18d84f28e111ff403a92fe9230ea8c72f0bf48ca07da68d439bd0ee0cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f8a5f87d935d240073778b34b95fbbc88a1beb379f9f9c66c17387dc271a0ef
MD5 6c138a68037948d4de425ad06a9e2dad
BLAKE2b-256 b73269773b79e8ef4fbe2c2950d971f446c7b95e72d84434d6e868819503b900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2fc7c5e69b7776d88421f20e844f6ce877150283dcc0d848bae4af5735f988e
MD5 85848d8deb2880db2853020171fd53ff
BLAKE2b-256 2e8f35a8b07e2fad18dc7071bb876fdbc62cc5d15b2e169026117181f0d66b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9777314cc25ada96f994b2bf5dd6656cdbbf862984bd0e4122c05160d6b14250
MD5 1f421ef80dd08a00b1b55c056bccca0a
BLAKE2b-256 a22dba0a95a1d8849dba308ab5bf08d945d8e9e753778f9e020a86b9e6df25ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1cc394b2feab463d8edb70eb5cc18661b39fad46a647860f280b80fbe5458da0
MD5 90b4bf50d7c89f5e0f8c940aa2ab5114
BLAKE2b-256 0f20b30c621d386d3a1ac8707703ebe4418a41484692cb725b9b77775f3558a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bdf51fd2e4538c4c1dbdb4680e1c69e2795ff512d4e7e2998206b185f03b875
MD5 c127eeeacc5b7397da4503845448794d
BLAKE2b-256 1e216e48465d3208e57ebb038474eab388e734d66f7e5ecd7fcf8b261e16ad1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6f6300b9269fcf8f87418af1796b3e83e43fb9d97b92cb97476e295f5011fb4
MD5 5f9946a7e214050121f9ee5dc82046e8
BLAKE2b-256 976efef869d98c05932d1ec8e11a6b042cec296ae03ae9433070e2c57e6cc0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ad46e46315b065b7d16302398a77217b74e65a0d5de34959f0319ba862d2732
MD5 8e9c3b5fb3d318c00631cd6ad65fc402
BLAKE2b-256 a999fa399e8c5bb511ec7b589cdac4826e59ca06239d0b5aab1de765eac4dc6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b9d9c7f549c18a72d40c5c46c3d8caa3f5de9ab654b84ace7c26a8e77f9b367
MD5 85749da6aa271005c5211de69e72e270
BLAKE2b-256 837617a2db1b82b0eba63ccaa05b5e0b6f7bf20e7bd39bc7d5a5dd9156fc7bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 717f4d2b8e8b8dd448ef6d9f46becfce1ba1209e9b26c3a9da7c22af92c4eb98
MD5 a146269bdcac55a4fad9549105f1a754
BLAKE2b-256 c7a4f5cfa69a9c87791f0853ec933138b377e677475f8ee61839a23c2b380707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c9c89729212de01b6381d92369964ebaa37433fe6ca32f28e4e60b6c2793372
MD5 c059170dbe169f679e1b78859879ada7
BLAKE2b-256 bf72d500b55ee251cc43e0dc20412484fae5d447deeec922b40e8bab04ea137c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af32a54c78428adf27ba8157859856c086f8f286cdd5b14c8b169a2257164eb7
MD5 d14650c2bb01dc561165b48b552fccab
BLAKE2b-256 3c75380b1bc75c1e66fd7371fec6579d9b7e412f51a26ec53d1b2610f58ab776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b5868c3a3c165c8a0c139ad0b3fbda75faee955ef1e3d8cd8b25bf800c32365
MD5 f081d2e7f00068c8de4bf14c9fb59150
BLAKE2b-256 f31f041dcf0dac15b0cb4aef0a23a732a7f5d572e42a71616bcc060ad3f45cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eec76b7669ee3fd59527d8fd6e35514daae809683c897878545c8632847aa079
MD5 065ae901362a4953febbc1fd4f47348b
BLAKE2b-256 4d734cd0a4d380cb60a7e402bcead03d0c0a989e255765db460ec51d44df35d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83918df0d473fc888203fc29d802b87811a565d4b8b8d4daed910a94959b1cd9
MD5 41dfac0735ff2b25656732d8f1e17437
BLAKE2b-256 553b008e2571c3ee291416e5b1f19523f8b16b1eef7112d92c1587b625521dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b48278eb86f03ed142e7932987d68e0725b5e074a38e612be568590d7f51f67
MD5 35fb5d74eb13517c0e55b8f88aa6ece4
BLAKE2b-256 baee7901199d58d44929556b38daa7ffd14afaff045aad351454a7fed741f1e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ad78aca9d274bbbcaa01133452e0bbeb68b7d161f79ad209b8d177282851e5c
MD5 70779fcd416ab5abd630d7d57f21f139
BLAKE2b-256 caca2f23b46443bf5b0eec46371569c74298c6072bd4b7e6152da047861496ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7764b63a1c22c7e88ae0d8e5ee6668927a2724febdf71b57d7baf3c5110ea68e
MD5 7d3254e2470a8de23cabff70932b680c
BLAKE2b-256 9bc38c45a208d0a9176f14b5786d28d6baa767998242ef65df57dce1fef801f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c500b54f2df4bd8f7bc6a8d519b65f4346bd04c77805ad1df9504a9ce55e8fe5
MD5 f5bfdc5643c1850de4e2bfb01b615930
BLAKE2b-256 0ad2f39a30549e64d69fabb56960b990a644c76b8f2b6430784aeb3b4e02bd0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8d6268db83bb1b66ae3daef75567c3682c53cfbae9c1c37029c8ba242e30a4d
MD5 412f65120ff26fa7091c4abc38b1973f
BLAKE2b-256 889cf9d23089e27652906eed10f5910acecd7373d535c45ed8854ff43237d385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13b921039845608cfd59db0481ce1c1e11ee7dbe72e6ff523c435b85f7d7820b
MD5 193159482aa99c347c64f9cae427626b
BLAKE2b-256 1c4e294d280a6ab26125f667ab45cf89e24aa9397db5f16257752f1d0150440d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a720c4842e7c142e53ad47fdd04c94e73353bd9ad7f9208ae83bc7d740a1b670
MD5 8b7460a02d215c26fd5bf194b6764965
BLAKE2b-256 db637dc27e78f8740deb487b43f03f3972a0a709f809b272125ca8a1575a76be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d390780d0cfba92a6db1b64efa7d238b06565604df5e34fd27a37eeddd72533
MD5 be468f4df2d9e551a4007aab1e5b32ed
BLAKE2b-256 9d76bf88688224c385015fe71bde052e1b6d156cd94d01405c84d81b7dc833f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0daa1fc5404035cb2f45878e1ed6ced1dc86b001f4b98c50562b0901d0bb6745
MD5 eba5812e6c63c5c322cbbd42cc3f95de
BLAKE2b-256 8a8da8f9efbda7926fd7ac3a574fd394ed704d6184fe16103986ef5ba0f24d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 767c104d63c0346cc02635bd33fe57a88c997d3b601fd8921349b350b9450080
MD5 31ca10feab51d99c9f29dc4b36f54420
BLAKE2b-256 403cae5bf316437de5eb7bf124a2db6c1b197a4769c537f4c73b38e43f49d846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69c91d3f9cfcc574c83bc49ba3b538320e504e2cc73080fb1110a989ca8697df
MD5 2c7bc94b2ee18afeb9e56366d55014e9
BLAKE2b-256 2ea74a70cb7bf8e598d6f4ce9cb16371a33f3d3c41002451d7e11c56d73c4857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 422439247de519df6128e801a7e97426b63ce7519bf0aa06b6f05525f3b92643
MD5 43162ef71007707ae4d2b460cb79d7aa
BLAKE2b-256 c4bd96c6f0d27c4e523be8f97a389c71a704bfa6397ed4575c476c7d97452c2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c243e19dd7464b4e5d9efc1389b085495e3a5744645e9260256cd76f18df92d1
MD5 71dcb0bf8799505bad4415c5baac8c9f
BLAKE2b-256 1bb00b919a4935e2db2e796983f635ff8220b0f5200551f3a1088376b3a9e506

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 80f4ac1ef1e5c7a9c5b955c082cfe25a0b0718355c794a807b093ac70f5f59bf
MD5 4c66b900fe7d7b0730b9fc98daca5d56
BLAKE2b-256 e48ea4223cab1fc0df64a0c379747cc7e5741d49c78570f89620e48d8b7586f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4505bf7fcfa1b8755fcd9942eb673100d3442c99677d123b246246e811ff48f
MD5 1e1ad288da4a7f04a3e35dd469bb0387
BLAKE2b-256 ef194f3a9e599416b0aedd5ae75477c7186af0732133058624b131b6e8939d07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13be921d7b7e13914f4c426c19f93dafbd1c29cefbf0a6ffbb9a7ea19cae9772
MD5 9308cc6e7d597de3884b9ecdfef331f0
BLAKE2b-256 60d8ef5e145c2ee158c7850c6b3d390e12db90eb91c288d95e20e7392004fab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e3ed52d09e0ee04466cc601e7e0a9f75a457db22c6615ebd9a8d4312945c8cc
MD5 3b06d5965ee1241d98c5190f8a7c6b6a
BLAKE2b-256 64e5c17a6af430aaddc496551b7008752a8b39c1821cc9958207f38fbf6d7be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2a8fed48a1c0296d9a45ec708f57545dadd8d552a0500ede5e3f280e1a263fd
MD5 fe27608babdaa645f45409bcc274656e
BLAKE2b-256 d261100b820c627aab8f997df83416ea2fe909abb85e2ca14b1eda7d39f90de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 640ca36c21dd43ec5292cfac8218e15bff88475518720fe5b1a01a48ab700367
MD5 f886706dc0edfe56278e25d6f0acc2a9
BLAKE2b-256 feb2ebf4940077c3511cbe12936849c53d06d5ca4102bc29ba2b0636986bb5ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9513bf2562120824cc6e14e048944f04e47522b022ef4a34a048dacd0e0cd02
MD5 65bb0c1017d751262a2515ef79938012
BLAKE2b-256 b4c44303356707e88ea94a85f2454017bf04ed54918dfe841b9c93336d7e2adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60a0678e6c51b5d9bdbb589c39d8273251331015ac164dfbd24562b2a95fd648
MD5 333cf96dda853f6d996680bde79293ee
BLAKE2b-256 823a4099087b8b3e574ffb0f24955b96bbefdd2ec60149be644960334e323466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8cbf204e1560ed7e80cdf3e45865b1ed1f30c2bb4329ea40ecf59cba61275f9
MD5 266b92ecca30cd3473319582b913050a
BLAKE2b-256 98560fcc3b07b68555c9b4b779bc80b8245c91cb0d6a0af4f5430d5e2a704255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f087b87b41d27cd5d74f0ae19956dc9ebae4e55e4cc0efc73be860dabc6b1f65
MD5 2be3652b4957f5210f789b84f53d497f
BLAKE2b-256 6e8337a66c9d6b7629014f32a0a4fca1672e93727e2fe192d1117ad27073edd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b406cf98222cde60a5d5ccbdbdd2f9706f7a21789fd2368deac7bc3e4623ab93
MD5 18678f68a3ac1eafe3c589b22bc0e14e
BLAKE2b-256 418116b1f64d2a410ffdc65f36a3f36b9d7806c8c098c18c98fe104c90390853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f6d181e464143f9b4fa4867f6efa81e85acabe4947eab10ba02ee8c9f4311b6
MD5 9777f16fbec0f695e93bf286a3c730c5
BLAKE2b-256 b0f764d5fb13443520feeaedf713dcd36c8ea218007702c0c5a436d3bd9844e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cf43c7b64e32928bf762893a2af98068c5ba8d1005ec43deb6bc1654ee4a0b7
MD5 7074c8ae5acc3c44139c8b9c996a16fa
BLAKE2b-256 7eb32fb8c6e6a305831dc4ff36aa8294a329699d5c3d63306e63f19c83865e8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 248.4 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed89e4de6459a1cffaf5b45f60adf70e67ce48911042f41076486e5062b0b958
MD5 6c04979ded932f193e248b951d10d56b
BLAKE2b-256 75e09c491a621f3374bff7ca06ef937968f41ef123449efb3d567fd523485681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f27fc4c1baa39775e579b5e41da1a8f2fa499374341ea2fefc48a2b32897bad7
MD5 b5d1208faccf35a1d4ec98e443ae68e3
BLAKE2b-256 30dd85297adbda0b61914f2241f7f2e62d0a05338c062aec62f75a0a9e0f9a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55f6d48ed81f826a30d44dbed8a9effc06393defb07fac3dd3deffda81e04f42
MD5 6cd8a180dd4d9902784b2212c95c9b66
BLAKE2b-256 82bf7b024a5cd76d419977f3ef2b6d4945a10216259566fe2d632c92a90158e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad53281d5938b51d0d7c3cf8fbd48bc92c0ea8168f7968b1715896f90db926ef
MD5 c00da6874fe3682e1515bc70584c9e06
BLAKE2b-256 36539cdc3e9630ad4acb5d65b1e6d9f9fe012ca72c35150a0231272d1a21abb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05a547bb59204a7bb5da8ffde1abffe8765b6efb59f73c78d62488b9d13a2745
MD5 3fcc341133b901688c9cd4862ba1c51b
BLAKE2b-256 bcdb5b6921f3c1a36302ce2953047fb82a0a5b8969a44823a7cbdf210d74a2ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02826053117c396e35320706d82562906cb56c5090d88df64151eb1e45a73200
MD5 0c83bef213ff783b6252e7dfb12735c7
BLAKE2b-256 b95f47f16664fe69a426f7cc310b8cf764ecdf8be62cf09b7d08e725971ac2b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 248e13ad967646d43bfd40fbe2e686e8d7665c84b8801bdc619631af3801c5d3
MD5 3116a83079960fe1569a2f705582fc0b
BLAKE2b-256 3519a8651e4ed738ca42c97908c38ddb3f6244f5f8fe2c67b545aef970a97732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c11b5ada781e9db3b00c23699e92782e047b22b6227e74646cd07e1c212780de
MD5 8439265ac0be3dcd03bcb5df10a3df92
BLAKE2b-256 7c03b512259a8d57ebeb276c0a26b924ed723f315905cb97031a1136470294d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 057809cd999827e787fde0c79a87f873284b00499da49a161f4feb8196fe6fc1
MD5 40478bbab6e50e58aaa9566c6bf4e107
BLAKE2b-256 694e994d44fc69c14c85114eec65c911594a847d85c046d9008dfff8b2ab7f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1a7620af816d3da500c3e0d5578d9f17973f72c44681f2798fc78739a2d359a
MD5 9416719cdb01b90a407406a322bef5d2
BLAKE2b-256 23f6848be8c6df7bce5aa0bb5fdedb8868fef7e44e3cdbef8fbce67fbd3469ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b8b701e6303449d69764812fcdd37dbcd9b5a9f59f1291bddbf084ab4fe6706
MD5 f3167fdb73f7c5c9ef0e5c16aec03c5a
BLAKE2b-256 4bd6a61e290fb028622c1835f210b155dfc9f4ce2092605421ca0c352fdf1e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2b84bcc59906a98cca8c1d87c8c44b32041286ce7d9934a5226be6e96bd6c53
MD5 ba19320b45c908cccf1b40d7bf989a53
BLAKE2b-256 110370f5733dd6548e1fc9e8f899ad62fc55e18b1c34a5af6b7e6b777e8eddb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3735eaec69fa87a6b8ea45f67ccdbc38b34ac3e08ce44319891a6a5ca013a312
MD5 8379dd39c09b4b85442fd41af2f1c091
BLAKE2b-256 a0a466c97f222564998fdc4e870b1802711d09cabf92bac6a9ea52eecbc89ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c5c886f78ec7057702e5dd14463fe899160aae8e1fea9088697724e827bd19f
MD5 aac852e212c6a4257b07d3e939565880
BLAKE2b-256 ea59ceaa8bf84fc1944c717069caafaa34d9e538883c9ba4f98ddacfb2f5076f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6cb2fcd7b60193e0428bd056912ff2a276222b00b26754ccb6e6a7a8c1f294c
MD5 24752230697bf10ba1c68f857a9ad807
BLAKE2b-256 0180f469d659d058a3dc451769fe3979157e11ace422135d58af4e64a46cd4fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5577ffe3a1ecc53e62e7378204f639951fa4775da7b0fb74e5ce82575986aca9
MD5 be2b37fdbe71577610bc0004b9161a09
BLAKE2b-256 aaadb901bb118f818da08788215a32b3d35500ba8bb40a275ae21df80885f5bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a70180d5d68ac834a6516207e3e052345e80fc12de98092dd5460fd78f05beef
MD5 92f03ccc214849c3dbec1225ac81cb8a
BLAKE2b-256 e9bfbc2bb2dd4b4cacaf0042518fa7764a8cf60a9d6b466415d4d587194b16eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc413cf07ac1babbdd6665535faa7fe5905ff32631b0ddf2a4b9f57867463302
MD5 cc7d3a1aec76df5e92a8b6d6953e9735
BLAKE2b-256 e11a418bb7ca12f60897e606516534159912a98ce05c629c67ea991235e236ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19f1c099f0bb6869034522c486230e8487f0228899bbc66b160abd26ad6685ab
MD5 5050d6c2583fda61e5397a9a7d88cda4
BLAKE2b-256 59935723d80f1484288921a3f4bf7f063e27a9dcbfd57043b7c09746b64da6be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 658a2f788b2536a18148e9920fa7080a014f04849f8a554d88c1b68eb262bb26
MD5 1bf0868f8d7b502cebb5e4927f87cd1a
BLAKE2b-256 7b2a2e712f18bf42482934ae10e240df75b5209d4aed11cea6027354b232151b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3126476efcffcf8897ea074aa0a4ac65e86460b4e48b66e42b36ae294cb377b
MD5 45b32ef7188da22f63b7738ba5e6c4a6
BLAKE2b-256 5b518336c006b4f91dff248d0ff2ea087ff92a4582d6c3a3d8468f662f24db34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bcb6a57f06c8f41a2c6ac6cc5a0e74672fb0bed13be7e715965ee19c76963a2
MD5 c9f13a3cee3004a30664c230d93418f6
BLAKE2b-256 87522f0d0c3163cf230b4457d9f6ba6d3f955a094363cabf02f934e2b57738d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61146ebb9209cdde3210ab53d77b7d10260eafd3879bd4865680e6ffaaa0f2da
MD5 1e31eccc213ded8da7640fa12708dba8
BLAKE2b-256 c54405c1205da105c47a1203452bf78969e3a25122d8192b2feb51b7cd7c18c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0da95c56ba24e3d325d0913e64164a9d7a9b34134367f6448901e797ae58ca8
MD5 062795efa145da6a04c95b706a7f809c
BLAKE2b-256 5e9f27a75e8074cb7297a05cd06b3c33f9249d1dd33d3c468e6d88fcd7a061fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef1fbdcc6cc93d4c2747380055121a91d8cb587b9aee559f44afd98f9464903b
MD5 d75cddef0e83d94af2dcbea837749589
BLAKE2b-256 e78dc4cb0552bf568d7ac0e6c674fc51235d0caaf506ee03c1aec024a5599830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 002c81e60f1e7e977b8a1bca9af202b97c454c6024b5e0f9ec052db10663c141
MD5 b7d68ec9e4da4ea9fe4e692014ab74e0
BLAKE2b-256 99510439b056856d1353150b5a909513f08c326adf9b5b1e0c4e9de2619706c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 249.0 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0963d0e4156b73baaca4967a0e8266f1656561ca1916747211c1c3b0d26c5760
MD5 f391112e3994ea75338d3b5f74695f8e
BLAKE2b-256 d04a6d38df74f6a57ef53b2aa212dcbf6fc61a0907127956a29460df7188a43c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 236.6 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0111a33066a0300e79924c9aa662ca7d1a7a91072bf3d1f4b6fc4f4c11ea4810
MD5 40e3f4b6d584c93d7a8998dcf94b91ef
BLAKE2b-256 dfe59ed9111feedba128317009fe6a91dfcda9d2b80a148d0f1bb1a9dce221c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da91a6cf74c8f5f0448a36de746c5bb6bd7a0283dd29141cb2d0e1308c55a675
MD5 556e4d8269a109213d7777bc1de1efe5
BLAKE2b-256 d96d6bcb1873eb9d71b31d26c89dd9d2d8d9cff17e9deee9778a3cf7e837e1bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6692f334d7b864c1b8a25430cb89fbf6d36de21f81d83418715a97d2bd6c6e7b
MD5 1c59440509b74b11f5eb2c6a24f475ad
BLAKE2b-256 bd9744986677ba80dd162ac64b503392de8d3478961858d2c7dfd210231be2a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de8e5b4056e44932c42d3da824925c6f2a3917bd614888889bf0955cf2b9b385
MD5 d3eec19f697f8fa64a04cf452515d7d6
BLAKE2b-256 e8bfd90eb53d680e5315928ad91975e747c89c4201894080ab37fb4414bc4b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfc5af2c90dd52b30265ec558951b3da8b6f49a1b9377d97529bc4e9364a3b94
MD5 721193d168cc29c03258bf047247d8ad
BLAKE2b-256 54211eefecbd6fd3d1986952745e33c4eb6b62cbdf7172209ea429dc93c7475e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93ce60052ac4f4dadc9d3d5bc49dcb1bc75ec572dcde27096a45331646514e66
MD5 5e7f8c95269b943c78fe87c52c0f4193
BLAKE2b-256 2425592cbcab89d7d04a3de458381493d98476569aac95f6005113f7a16ba9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f921372cec3bc7640468a32bf0c2ab0e0eb77fd0d249acb65e3cd48576e6b9a3
MD5 b87bbdd321e29040fbc55ca4fb331517
BLAKE2b-256 61ad0932069c52c63bbf6647dbfce005a16bde7b7b36f8ea1682567bc04dd58f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0899e4d6890916ee38094bbb77fd242f1edb839eaea0610971fea3f4d75e23f8
MD5 88e1a1581d5f049612dc688bcb305b38
BLAKE2b-256 c2646a149ac9d743a82b631bca895d7a834feccd18e5011dbe960b3d1bd1f7cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3db3c0abd3a1509e13d9e073db2bf8fac84e178b55112b656e996c31ef305f63
MD5 1c773d510820a0014492070a0c72ee30
BLAKE2b-256 9f938b5daf6acdaa115a3fe7d0393a03dddf05275061fc7a7c4a2a59aa047b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1937c5700240d12d9d7a8e8657f706fdbc66adc46c4b2d9cf94d97414a2793f5
MD5 e4c28ba585d5d1f0df42881d66fde737
BLAKE2b-256 52222a68669b8eeb404d73c2e8426a78cef9046da220bf69e4749d0530229b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cf14f888e6e024eaed49f6d0f27979cffe4af9fbf93f4271fd1dd59f6c797e6
MD5 919168196ae51df737cf6bee1490dfc2
BLAKE2b-256 483766cecdf63728bd082bfdd4b65a084b448c8eb8392386e217ff40deae468f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 371b8705b91be78ba838e223959f15db9e4bec8cf29d7b67b1935f070afe4135
MD5 132666af53698fa25cac228322ccc2eb
BLAKE2b-256 6634c400f886f0adde8829f887db89b94bc7ca8e15c4ac89e449cb0e911068e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: phasedm-1.2.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f7f6768e47d6eb0fc9bc75d4571797706fdba37bafaf0f0315289c949b67ced2
MD5 fbef9e72cf543cf8da1f55912b53e5ce
BLAKE2b-256 25747fa55457b1c8fa9be8eb1e4ec72226493945a9d3e314daa88f48feafae12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3858bcda3cc482886d1343296145cef1955473ef290f37580c062e240d594b5c
MD5 8105d976ce3753ae4152f31ee3d63c49
BLAKE2b-256 35faf18e99ce22d3742849522c5e3620cc6dea6e1bd878c6ce5548c72937d88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 083ca0fc34e3084287686888721919c585f999d0d41f5684169185a73225daff
MD5 20d6bd611eda03b9258210cc09362dc5
BLAKE2b-256 32870377fe6104c6df5c34f45c7f404ec2cf442acb79123f6352a1561612e17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0881ed812a5a27e85381c603e130ed041d0ffc71c8725631b1c13cce4d304910
MD5 bc9f3436b82b96a8be7cf358704db41a
BLAKE2b-256 7eebf5f474e2d84b5c52e0e5f5460fb81a9d8622133ca8131f363551fbdeb736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6d0f9872fe0f4b73b044465da21a493789e357bef7d54b4de85dbf469b08a64
MD5 ba24b812e66831062550692a624feb4b
BLAKE2b-256 8e596b6a6da94da5eff44405222c3ff3dee2d56887373ead5bdebcad6f9769a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a01700cf707d3865a43ab7d454f4ebea674a3e3666190b7054184d91cfcb83b
MD5 f595518cfaf0bc346012cecfc2441abb
BLAKE2b-256 411bdf85e9d132ce846a52c174cbcf60cd986f56132eb0371e7a6c8d069aa294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b448104bdef9c4cf797bf9893f3076a8f43ceef8c36bcaf342d883285fb8cdf2
MD5 fe9f31bc19a7366e4e005e869b43a49b
BLAKE2b-256 430571e0fff9857e7c4603081b670559b4e64ce929a66f67eea9a6511326cf45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e6e2769f1156f3e3ffa7dabe47593340dbc1ed7e90cd5f7130c4025ce01caef
MD5 7266b9cba6c30000533280339b186e91
BLAKE2b-256 c699c5041fa1b69819bdfa6a09960df3d9c929935a87a53393810897efb39970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db5a0c2d34c5bfe0513136c8cb71f66bc2dc5d5fd28b84e011bd7b021b534f75
MD5 f7398e425230dee7cb71f0db79875fdc
BLAKE2b-256 76d4a088a52c463c7c9a832c0d24a2e6c563395f8ff0b02fe72ad60e2ff6b8a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c68ebaf6469fb3f0f62ccd00d1244fe1118ec537434713caca59a1bfa541ea8f
MD5 9f7bc07cb65de6275004e9d7d7e495c0
BLAKE2b-256 fefb054787cfed1c35a6987c286b549bf6b65eb7b3e8aab9fa91e0db448154cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for phasedm-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 798b076db90c38f5e5efece2d7b1d838f50e661c175ffdbb28655fb28fc61980
MD5 1c036105fc960e328be99f49b27aec60
BLAKE2b-256 fd86a31831f1dc2465739954d0b2dd36b4f620171e6e8cfc5702a932811773e9

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