No project description provided
Project description
PhaseDM: Phase Dispersion Minimisation for Python
PhaseDM is a high-performance implementation of the Phase Dispersion Minimisation algorithm for Python, built with Rust. This package offers significant advantages over existing implementations like pdm-py, making it an ideal choice for astronomical time series analysis.
Features
- High Performance: Up to 10x faster than pure Python implementations through Rust parallelization with Rayon
- Better Compatibility: No Visual Studio development tools required
- Enhanced DateTime Support: Full support for
datetime[ns]format (not available in pdm-py) - Coverage Analysis: Support for statistical coverage analysis (Coming Soon)
- Future Development: F-scoring and PDM2 implementations planned
Technical Details
PyDM leverages several technologies to achieve its performance and functionality:
- Maturin: Builds and publishes Rust-based Python packages
- PyO3: Enables Rust to interact with Python code and objects
- NumPy: Efficient numerical operations in Python
- ndarray: Rust library for n-dimensional arrays
- Rayon: Provides data parallelism for Rust
Installation
Prerequisites
- Python 3.7+
- Rust compiler (automatically installed by many package managers)
Option 1: Install from PyPI
pip install phasedm
Option 2: Install from source
Step 1: Install uv (fast Python package installer)
Follow the installation instructions at https://docs.astral.sh/uv/getting-started/installation/
Step 2: Create a virtual environment in the repository
uv venv
Step 3: Activate the virtual environment
# On Windows
.venv\Scripts\activate
# On macOS/Linux
source .venv/bin/activate
Step 4: Install dependencies
uv pip install maturin numpy matplotlib
Step 5: Build and install the package
maturin develop --release
Usage
from phasedm import pdm as rust_pdm
from pdmpy import pdm as c_pdm
import numpy as np
import pandas as pd
import time
import matplotlib.pyplot as plt
resolution = int(1e4)
t = np.linspace(0, 20, resolution)
y = np.sin(t)
# t = pd.date_range(
# start='2022-03-10 12:00:00',
# end='2022-03-10 12:00:20',
# periods=resolution
# ).values
min_freq = 0.1
max_freq = 1
n_bins = 10
n_freqs = int(1e4)
start = time.time()
freq, theta = rust_pdm(t,y,min_freq,max_freq, n_freqs, n_bins, verbose=1)
pydm_time = time.time()-start
print(f"pydm computed in {pydm_time}")
# Find the best period
best_freq = freq[np.argmin(theta)]
print(f"True period: {2*np.pi}, Detected period: {1/best_freq}")
# Plot results
plt.figure()
plt.plot(freq,theta)
plt.axvline(1/(2*np.pi), color='red', linestyle='--', label='True Frequency')
plt.axvline(best_freq, color='green', linestyle=':', label='Detected Period')
plt.xlabel('Frequency')
plt.ylabel('PDM Statistic')
plt.title('Phase Dispersion Minimisation Results')
plt.legend()
plt.show()
plt.savefig('theta_rust.png')
freq_step = (max_freq-min_freq)/n_freqs
start = time.time()
freq, theta = c_pdm(t, y, f_min = min_freq, f_max = max_freq, delf = freq_step, nbin = n_bins)
pdmpy_time = time.time()-start
print(f"py-pdm computed in {pdmpy_time}")
# Find the best period
best_freq = freq[np.argmin(theta)]
print(f"True period: {2*np.pi}, Detected period: {1/best_freq}")
# Plot results
plt.figure()
plt.plot(freq,theta)
plt.axvline(1/(2*np.pi), color='red', linestyle='--', label='True Frequency')
plt.axvline(best_freq, color='green', linestyle=':', label='Detected Period')
plt.xlabel('Frequency')
plt.ylabel('PDM Statistic')
plt.title('Phase Dispersion Minimisation Results')
plt.legend()
plt.show()
plt.savefig('theta_c.png')
print(f"{pdmpy_time/pydm_time} x speed-up" )
Comparison with Other Implementations
| Feature | PyDM | pdm-py |
|---|---|---|
| Performance | Up to 10x faster | Baseline |
| DateTime Support | ✅ | ❌ |
| Coverage Analysis | Coming Soon | ❌ |
| Dependencies | No VS dev tools | Requires Visual Studio tools on Windows |
| F-scoring | Planned | ❌ |
| PDM2 | Planned | ❌ |
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Reference
Takes obvious inspiration from PY-PDM https://pypi.org/project/Py-PDM/ and Stellingwerfs orginal version https://www.stellingwerf.com/rfs-bin/index.cgi?action=PageView&id=34
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file phasedm-1.0.1.tar.gz.
File metadata
- Download URL: phasedm-1.0.1.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
236c0ee2fe2976db7c0737658f9f6b2ca44df98446f24560db50d4c1844cbe1a
|
|
| MD5 |
4fb47c900e6062c342afe7673af1f8b5
|
|
| BLAKE2b-256 |
916fe9f90f3462d84f03a7cdd2fa0438c80bc59fedfefbdf937de96ad59f9d41
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 566.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a0be7977b43194f22eb46c9929773d1268e3fa37854e4034a278973caf8ac5b
|
|
| MD5 |
cfa72aaefda0f43c801e56cc1a8e3958
|
|
| BLAKE2b-256 |
cfdc6c03859286b28156751d14d4c26ae8a25f7ccc19333961d87914344bd83d
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.7 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ffc1faffb346d53af50b7c47b7ac735731216c29c30aacf7315b6659aea52b1
|
|
| MD5 |
f7ce9323c62e472d6ef1c32ec65e630b
|
|
| BLAKE2b-256 |
c36ba6505ed062a62521610d4e1f9372acd61b9a2bd29e8fc037dc3e1a26cd6b
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 662.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37087f5991a24e1d05fa735736116bc75d26e903ddedfcecbf799dd06d07ff0b
|
|
| MD5 |
129526947afe60a628795ec97d18c11f
|
|
| BLAKE2b-256 |
f4bc00427080876a79f5950f7fbb1f85dd85fbe854e355a9fe4481d3d22de0e4
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 568.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f25518e6d473781a7e1d3a5d9e1dacd1f8c24e8b49c1a01597273b16f583eae3
|
|
| MD5 |
ffd40c8dc83f6e6146725d0f567cb3c8
|
|
| BLAKE2b-256 |
6ca73ed6384975c9bdc0be6a35d764f1cbdfa156b625639ffe47de1e8207cd7a
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 395.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32d3d87b3c4f1c538dfc86af8f4009a8ab67c7eacfccfbf8aec9ca1c79c50290
|
|
| MD5 |
a6fcdb0b81eef28b7928a90df4ac08db
|
|
| BLAKE2b-256 |
93f90e1d22b654611e6d0b3fe69cc040668a9d6e1f8c502a8b2ea798a056ea87
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 454.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
225769eb28106cc5bc6d0849817b88b43f3ed2c9b12d79ec9fcc89da3797bda0
|
|
| MD5 |
30bfeee0a22ee77531987abe8d409171
|
|
| BLAKE2b-256 |
2d31069d9f7594f07c94a35496a500753f0df79e303de5f37049f09804ec9620
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 450.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10cec75866771980a00399ee9d997bfb2f04d323b878698b2384b838a9f9b3ef
|
|
| MD5 |
ca4633b30520b3f73979f7d338431ed5
|
|
| BLAKE2b-256 |
7f9ea36299d60658263327651ad839f3ed825750a7a14393cd2d62d078d1ad7a
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 420.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fa08d241fda4b79460e5c1efd534ea24b0c708b6e47a4a602b1bd09c60ae0fd
|
|
| MD5 |
b02785bcb967e5aea6d2ddedc965da36
|
|
| BLAKE2b-256 |
b0862ff5377840f2404bcf4c15d9f7ddae50b36c88ec9b08d7aad8e8d029239a
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 401.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
082a5d634712139643a95c4d2b172c114b7722802815d9010dc4ea98243b5cc7
|
|
| MD5 |
0b2ba419f4c74c33360e97c9420b4284
|
|
| BLAKE2b-256 |
03b7dc766d3cf64b3aa8e17781a15bb3e05fce5d53f157c4d79ed8191e304358
|
File details
Details for the file phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 390.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff9c63552468029bccef0db5ac25b12d6674f1cce56a1473463145c8f4031749
|
|
| MD5 |
f116fd33e2b498317e76d049d8a6adfb
|
|
| BLAKE2b-256 |
a5cde0dae6faceb141b4e5b632e7bce577db58a3d0b840db94e675bf44eb928d
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 566.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0132bc0439a2d72a26dceac3bfa1696f50b77ef32d80aa17cc828b83e9a3f6e7
|
|
| MD5 |
6e406942ca160a40f788df2a821e6c0e
|
|
| BLAKE2b-256 |
0127e3c4b42b16b3270d98b6cd4106380e36e99b39b2a6f156b15c49051ab798
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.7 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
978ecb4d9de7bbc2b53853519532fcdfe1ab034ca567d2dde6977a2d3829f9f5
|
|
| MD5 |
18dbbf47485c5868ddc920991e2d07aa
|
|
| BLAKE2b-256 |
c0d58a8dbd4ed12ad7f8d23b2319a9c1a3c4aa6e257d2efebc790df3fb81a284
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 662.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dacf1e63b8af5a78db314a436a42114df58aff995dbc0be6edbaac999cad07b
|
|
| MD5 |
eb5345e2882c3d794c4bf94c6130849f
|
|
| BLAKE2b-256 |
af05dc39f948093b4c535e180bb99d108e15d5b39559f57345e4f28956031e49
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 568.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41a5b2540eb726a71c42fdedeba11fbc48fa71404a0188cca63db6f3cb3f0ff4
|
|
| MD5 |
cce0beeadea3927e0d0b3a6d9b30847c
|
|
| BLAKE2b-256 |
c62c523fa762c0193fedacac6530d26ab029e2acc35935e7f2b4851a59100897
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 395.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29ed45218a76104ab38c33f9063f15386446a0f1dfba1a3aa59f9db456e395fc
|
|
| MD5 |
59b3718c9c6be1b0132121ec6394fe30
|
|
| BLAKE2b-256 |
0bf98b6c36f617fccf2f941a79773332f74840ea7227839661012e95f7d851b7
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 454.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
595b0d2ebdfc5c27726fb3758088568979b27e3b5ca3af5ec426457f83de287f
|
|
| MD5 |
36af4d899f4e8294560c3fc9da1fc168
|
|
| BLAKE2b-256 |
4a79f3dc3489888090e74609050017747919395a190c485b6c11159dbfbfc4ce
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 450.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fdd633a4d26bf9e4a15d6f7447703d9f0fc99918f0941580cf9dd3bb48ebe7e
|
|
| MD5 |
42103fa659580dc7716cad81527c9ba9
|
|
| BLAKE2b-256 |
a39304650cf6e401382b5b389750637590e539647c1c0bb364bb0246d02183f7
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 420.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2449ebaad3e3d2c664e44db269db91cae735e54bc64b35310d7ba387f23fee21
|
|
| MD5 |
7f1a76f73c41edcc54dfb2292a1c44ac
|
|
| BLAKE2b-256 |
ee5f1eebb3d5b2aacbc0e7e348dcbc4b39d1c801b78cf3e002045103c571285b
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 401.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0bf66f8f9f4d4c584125955eba71169399df939d72ec520bd64247cf210dbc5
|
|
| MD5 |
bdfa5d371f37cfb280b167f34c3510f2
|
|
| BLAKE2b-256 |
7a7cf1c2913472fd41c1b8c6ffa1c8136f6d9a817664270ef5a60d61acb7a907
|
File details
Details for the file phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 390.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a097a1bd68830a6594ca68e1e7b03292cd79114471a85e0665f9af90a8efa041
|
|
| MD5 |
6f7e433d098b4953b54a2169bb55da78
|
|
| BLAKE2b-256 |
1ee62567d8199f4d27930f1cc802207ba843a93291867a396bef5be438dda89d
|
File details
Details for the file phasedm-1.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 566.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9ac20eeafad04ce08c5b142c3140e8aa6793b2bec90017036cdc83fb44940d4
|
|
| MD5 |
d63bc3766e6444a2d5e3248b0beb8603
|
|
| BLAKE2b-256 |
663a6f95153cc62a173415a86df753df102315a53de2ff46ae7909f6887de601
|
File details
Details for the file phasedm-1.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.9 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c82043f0bb84328ba650355cb4623ee4e55457e7187dccd45beb74c36172c0f3
|
|
| MD5 |
3a57c6e266676bed80d37708ce00580a
|
|
| BLAKE2b-256 |
2499bddd5c2c46eed3a8193bd16a0d97b5af1358e591dcda132eee9b65a41123
|
File details
Details for the file phasedm-1.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 662.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbfaddaac66f46f080e761c198d56d4919faaffd74a6ea64cc8f2eded65d1867
|
|
| MD5 |
26f39f782ccd3ac8f21ebe8d5418aaa5
|
|
| BLAKE2b-256 |
9f9d43922c412e3ca58cb320013b86c2275b6a5a5e015b1cee158553e05594c4
|
File details
Details for the file phasedm-1.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 568.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee1ee0e54f3783e957e61ffd2276d3c8b2199c7c4ae7edbaba667f1efeb38803
|
|
| MD5 |
42a7fecc20b6591ab13c6f8e327c51aa
|
|
| BLAKE2b-256 |
b0636f1ec342cbdd682b15fa9c6daf3a1474b020bef5ef97edf75a936021363b
|
File details
Details for the file phasedm-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: phasedm-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 456.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af49d28026611a77536d7f7def366701461cf60577bf8d830104bea4b5b1bb25
|
|
| MD5 |
9ab22418f2cc745f34cb894fd0ae9032
|
|
| BLAKE2b-256 |
d2d449b92a51ee3ad01aa62fd9d646bc9c23683f090ecfc8b2aff123bc44db96
|
File details
Details for the file phasedm-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: phasedm-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 450.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d94eb2a943b917e8339ad37eaf9bbfcf89d8f92b859318eb2722cb8da9e8113
|
|
| MD5 |
98b0eb8002b7960f6200645add5676e3
|
|
| BLAKE2b-256 |
224f83dbd361f37207a39625ab0649c4cd225ea56d3f1473aea33277a0fd39c9
|
File details
Details for the file phasedm-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 401.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e86616c8cba6978246946c03d949589983a4ec6eb8e3b37bf9e2f74adb2cae90
|
|
| MD5 |
06c8301af88b2cc2ecea0ce63aee6f70
|
|
| BLAKE2b-256 |
bab89542b1679d3d2f608348eb31d3c9fd5555c81069307a31a3210a994b024f
|
File details
Details for the file phasedm-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 390.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5751ff906f27ff5a3c100497195a21ee8b80e1e8b4ed17133fb955a4fbe97078
|
|
| MD5 |
631cb1356b4c86415a786e44d0bd2954
|
|
| BLAKE2b-256 |
b41a9337ca3213f6c35b62c7fc6a86e93e80e92e6f62d545bc7b2798349dab88
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 230.9 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
874b3474e4d474380b7ed66997a8ea60e7340b0363f256210bc7c1426410ea8e
|
|
| MD5 |
6a5a86faaf4934acb02d321ebdcb7f38
|
|
| BLAKE2b-256 |
8cb2c44385ea9d9dbe62299872b2593683f2f9eac55a35aecc9cae8d44bccbc7
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-win32.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-win32.whl
- Upload date:
- Size: 220.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84fd97bc896a485ab2b0134c752408dd9f8f772d4b1ad205914a9ae3c2ef90bc
|
|
| MD5 |
5d0c477f15476f4d5b558654998b539d
|
|
| BLAKE2b-256 |
cad68e7e5ba895e4584ecab9c5a7e4036cca584e66a14e0e7f90161cd9c73e5e
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 564.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64fd83a219f353a2731fef1fef1312aebf46d91aebea097fb127279bc53b1ab1
|
|
| MD5 |
30e1e51e383eecc0d24019c9156a7834
|
|
| BLAKE2b-256 |
52ca27ffea42f3b18721e65009203e68cf36aef5b4c4f5391cdc34ba0c9c97c8
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32d44757e45f627501e01a175ec13ab40e9ad9033256261a6ec001c453a92c10
|
|
| MD5 |
8830b947e05d3263bdfd5fe54ca027ef
|
|
| BLAKE2b-256 |
a6f8653dbe48801947c9b2a151652c2648814b9131474b0d3adc7fb0f5d08e5b
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 661.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4503578317b0aa9423737b5aec81995352be65f8ec29eb1c8587e02a9c221f6f
|
|
| MD5 |
f57475259dea7a795578aeb7dfdd444d
|
|
| BLAKE2b-256 |
87fd7f96305459c49c65e0d0db61088a4b5fd8b4175d9439fb0cf6a811f0da43
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 567.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d818a12990bdf436a9eae4fac41d447ba2340ab6a153b6c11ea0b12f12e27d98
|
|
| MD5 |
8346d7284f0f1999c2cbb1321fda17c7
|
|
| BLAKE2b-256 |
57c7f64cde99bee109a91eb2bc91ae0525dcc0c479a8af8248bef919cfe758bf
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 394.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
011b4207f3255b3008db40f695fc08274bd72ab963c9c88db738b6e9554747e6
|
|
| MD5 |
45996cf940f9e5912dad9345f52336aa
|
|
| BLAKE2b-256 |
5db4a6b66289b044e1f403c59b63cfbb7bd156ae3777ae356cf5826fe6f946de
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 455.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4922953bffb5811dbcaede4af76ff3039484fd736a72f5f67811741e9aa72bd6
|
|
| MD5 |
33be302f6a9c6b4cf63e5fac33a0f30e
|
|
| BLAKE2b-256 |
0f62087e4a43518cb11c4eeab55626a9dddda8947a06901d3b08f565860e9688
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 450.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00fc0ef9c0331eae42cb444b24b2c5b9dbf616d81634a4acad4eda2bc3cc7f7d
|
|
| MD5 |
0ea03d28b0b12869547ef35e4592e6bd
|
|
| BLAKE2b-256 |
182b8577777ebdb85a633d6738bd6fa80b66b48db10cf48a252416fabe4d57bb
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 420.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e8632163bd4ec2c63ccd7062c30606fe83a84e518e79965d9162ff3c26081d
|
|
| MD5 |
7017ae812be64f3bd86851599e2c60a9
|
|
| BLAKE2b-256 |
c992220d670bda391d02b0e2a3b592a3d301c75e3d8cfab039f895dbd4cdb79b
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 400.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3082c3d9eb7209408b80a5a64111c4d11af37e06e9cefe16668fafaa6d6cdfe3
|
|
| MD5 |
1fc8c66f9b5b77b57b61351d1ef9d818
|
|
| BLAKE2b-256 |
fa5ae7f8813d8d2ba136504c1554775ac7c2ff95b6ee40dd947849ef31df365d
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 389.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d507ae173f90991a28e58a610f89084b2dc4bd1b2031de54e615fddffdbd44c
|
|
| MD5 |
85f804d7d111b7c73c4e33f6c8663571
|
|
| BLAKE2b-256 |
1cd6f8f7f84d53c8b2221e3d9c9db45887a9bf4644575490c964312b98337373
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 344.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57f0ef50260c980207cfdaf56b233bc64255e5bfa6f8888e2b76b6cc5da7f230
|
|
| MD5 |
33762d1cb33834e5b9b2f0acf0793757
|
|
| BLAKE2b-256 |
c0e4ff8d908ce04f07e4c392bb7a03261e9a2299928e0751ef011dabc01c7fd7
|
File details
Details for the file phasedm-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 352.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8731ce467f8980d3b1bc7032248ef35b8c8535a0f9acc726dce9d7230bd17d3f
|
|
| MD5 |
164eeb1e96f8461fc2eaf83d53172ba8
|
|
| BLAKE2b-256 |
117432ab152410609543488095b7a95eb0ffbc89a1081f2d87655688b067f42b
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 231.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a1db9da3b1a84b5c64f27ae1a28a14e53f684022ed5d92f65f630bd047fc26e
|
|
| MD5 |
c9a7042beca1afcb6033bc969e90a3c7
|
|
| BLAKE2b-256 |
534169c4f5ef92be6211b9557471e78ce6f130cdf0c5ac461da086170b4729c1
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-win32.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-win32.whl
- Upload date:
- Size: 220.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f0213003b5b7042df856c31b062c9ad3b9e3673fb4d6453a71724677bdb176a
|
|
| MD5 |
b8650bb4216659cfd3a32c5895138e07
|
|
| BLAKE2b-256 |
73abe24cb14a1af3f0514957d5b3d80f3ec7e58a39dc4e3d3c45c86e28f9745e
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 566.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01cf7cd4985d537fbafdaf14d02f02743ed4ede0ac8378b919adfe16712d319d
|
|
| MD5 |
af0d8279cf58ecf694343798b8eb0eac
|
|
| BLAKE2b-256 |
950916773f9bd31f3c692f5710d48e0231edc13a1c3a667b4f84c498d79daac5
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0197f58361572a0d1b2e03f58ddfd834070be38b02b5cbb9f1c3e96e1997a25
|
|
| MD5 |
e40faeedb959dc3cd861d0e42fbcda94
|
|
| BLAKE2b-256 |
98fc8527376674076985f6b7a878f3819b500ef1e6612cf35d436d81865abfd2
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 661.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4e8a3fb8070c27307c7dd410c55b5dd8fbcb1186533d71e5bc5aa4fc7fcd4db
|
|
| MD5 |
19ab4421e0586ef585177a3ad9f248d0
|
|
| BLAKE2b-256 |
8f3317728b7c04ec21cb525097a0eb1ee66527c9f0a9ad5764a8d30aa58feade
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 567.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8eb7f6e6457d22ac57ed0844a995de13b67efcf77ba1e24f5ca0ffa12322346
|
|
| MD5 |
50334734f79b5f357896c4516278c6f7
|
|
| BLAKE2b-256 |
15164d4a6cd7460f3eab9cd46ee7fdc587fa2cbb85ed8e7ed2295862acec0197
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 395.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5cb57a5cae10012d2d1e00b84a57b9aa881a0fde6a7312b3ae5945edb7af6b9
|
|
| MD5 |
c7073a0e4cffa29319436e478772fda8
|
|
| BLAKE2b-256 |
afcb74d3303e6bb50a65454d3eaa14710823cbc4df1caae398ded2a54fa2b9ec
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 456.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f83c4c1755bc0288b321a95d9536fa80ded8955e004e03f7b19ecd3257bd350
|
|
| MD5 |
1373d5dd34d8d7a114e955e91f4d785e
|
|
| BLAKE2b-256 |
3c540d5443ee919792e605ce3926cb37016f3768b79e338912fae5d85b7aafcb
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 450.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35bc52a03d0307e3926cb293e34591ea84e040429e0aebeba65b8aa4498e7530
|
|
| MD5 |
1927d09690d389f1f8e8611a12234ada
|
|
| BLAKE2b-256 |
62813bf09bc38a3f36ed629fbcc0563c0f5336a0019a2e2aa257e359d50864ac
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 420.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62139a170bb88b794d80c69e98c281cd3e56de664f2bf0eee994d7ae947a5ab9
|
|
| MD5 |
dbbcdd32665140ff024a1c6006315692
|
|
| BLAKE2b-256 |
ac191366aff464717e5573825045fe1791c6dd0374a5a154e866f5c0a043f5a5
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 400.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0c388d5aedfaf4307ae0c188c60a6fbf09bcc41bf37a49a15cb416035c965c5
|
|
| MD5 |
6f053453c597b094c5f598c4d774986f
|
|
| BLAKE2b-256 |
86f9b60098508d6366fab242270a51830133dd690761fd2bf5974de152d25abf
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 390.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aadfe77f167942bb3f996ce52b961d3a8642eaaea85d0eb5e052a8563176d07
|
|
| MD5 |
feadb6e455993e064c17de91248d2f3d
|
|
| BLAKE2b-256 |
8e52526c531767a0b0f0658bc3f9138138a52a8905333b64682d13b85c2f4853
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 347.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73d490346cfe42e7853a3e964d5f08f76f448f3d32df3ab45cf11cf271d41868
|
|
| MD5 |
38095a559a6a0e7c1315d530e13e6b40
|
|
| BLAKE2b-256 |
50426cb2c00475a1b2704262467b887b9a1c8f78461e80ca72920b583df29f77
|
File details
Details for the file phasedm-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 357.0 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1962bea30477cd2e55b9730ccd2545104946deb1641ed33ed55612f7d3a23d0b
|
|
| MD5 |
168a5538bb5aedde9c7cd2951bd206a6
|
|
| BLAKE2b-256 |
fd3fd4bfe22cfa74fbb7449a39ddd574ddef304ff8fda8006379fa005d8bef01
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 231.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d89c387adad4cf7cf6fd3a2030e6825494bc2f0cce9dae3379170f91b2741b7
|
|
| MD5 |
4151dc28daee7d8ff7962998ffec23fc
|
|
| BLAKE2b-256 |
281c4241f74eccdb33fc2095a0919a6340d37f7867472d59462bef7e15075387
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-win32.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-win32.whl
- Upload date:
- Size: 220.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8caa5923d2c85c612bce07f290bcdd0de21c2df4379bd1913d68c166d190506
|
|
| MD5 |
bf7ea5ce539f3ffd870a83e4d248b839
|
|
| BLAKE2b-256 |
41ba3d97d0d90561153e1e2bbe416734d03e43dfc304a86b4f002f51d3afc92f
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 566.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7891f6b28de8a0939de9baea0137b21e31d504f4f74bf681831e13be66f089df
|
|
| MD5 |
69417d883777e0295c04a86e356f9dd6
|
|
| BLAKE2b-256 |
5609eb5761161997356570cce177717f62add690302a3b95aad7e2af3e5550f0
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a69314c69aa9e0801d4461239d681e13ca3812213cdcf5ecf34e49df023bd53
|
|
| MD5 |
a639ecbf3d9b56b345c283ecc40565e6
|
|
| BLAKE2b-256 |
edd62f53ef6f65507567db8abdd81fd626c34957003dc9eb8bc0209079e7cc0d
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 661.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64e1a2acae46c653d03202bb72b4dadb2a97636ec720f1d46fcc299f30fd5167
|
|
| MD5 |
5f6ab9f495a27668950a31af73b5f402
|
|
| BLAKE2b-256 |
fe709758016e833b362c35c6e3b00f6f80fe48e2989cdf22c2b3326e66dc90cf
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 567.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfe4aa7e4ee3a938a613dad044b8cb9fcb22ec929473d5ad9876cbcce5f7882a
|
|
| MD5 |
bfe7f530c7fb36ab3ed72c5e9e89c0a6
|
|
| BLAKE2b-256 |
4a6cbd35d8604150cd6c6746c1af6e108d8965b29aafa5aa8b94a8599369e7ed
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 395.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66dc35444589ac572d31f081c1dd87804df20a1bc3a99fc99bf13e0cb9c1d913
|
|
| MD5 |
31d3ac06a0aecffe3f93d5d9e750a832
|
|
| BLAKE2b-256 |
f957c1f14b2fe679e4bb6d16b8d960718628763f27c77d576afd6eaf59f1ce09
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 456.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
988b681c20fe62c22bace1b3c0cd069d331ce0ae8874da184333d7b2a95a92e1
|
|
| MD5 |
c74f03c09b9d678425d4a5a2f1e8038d
|
|
| BLAKE2b-256 |
2c8716ebcd834308c0d4a0083e3a14118ace4c62d65c4ae06126d6b0db5118dd
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 450.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2798ae7b52fedc0565eba601dc6f8429a8a579f03a6afa8fbb5e2739a625b1dc
|
|
| MD5 |
c95e703ab0e5bf6985e115f265f5798e
|
|
| BLAKE2b-256 |
7a02b37148d50133dd8680f4d6c2e5fa249fe1ef7d29b0f08dc2467c35f749ee
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 420.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c52c638616a7247c201afd1e3e36f0ac1f1edb0441975fc24de683c82f667ba0
|
|
| MD5 |
41fec2170a9c954c2c54bde877825e19
|
|
| BLAKE2b-256 |
4ebb775286ea5f2cb67fb962977671f61ceba085f67bda7f614e65ff3659befa
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 400.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eab0dd3bb87ae0ce5ab637e1621af997c01d7ef598f8544ec0a3053b0cf8283b
|
|
| MD5 |
3558f688cdc9574d8bb02f5371521293
|
|
| BLAKE2b-256 |
4d46573dc19a59329813f33c94dd0db075db7f754d513ef65b03353b309cc52f
|
File details
Details for the file phasedm-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 390.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47df4d6bb7f20f8505eafc30ca8df7b460649926a6c31caf1c9303c787c76cbd
|
|
| MD5 |
7c04a4d9dc2d46be9678bde31164aef2
|
|
| BLAKE2b-256 |
595e575b9f0bf8b70b85835c4ea0118cbcd891291a7ff230c6b9e2fdb669ae31
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 232.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a09b59ed3e323ad42141e9c94c714ca3c6ee8acfc9cb59c669e6fa5f143e3f
|
|
| MD5 |
ad1165b0732cc6849d2327d55bacc6a8
|
|
| BLAKE2b-256 |
5c7b343ca87926ad66a599badbeb1def94d918e2d8ea18432b4d2d1a64487ac6
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-win32.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-win32.whl
- Upload date:
- Size: 220.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ca9cc075259e3ae74e5cce102ba61c1c818ce12e0460d89ca55da058e8a7b38
|
|
| MD5 |
414178693f3d66df820f1bbf799bf21b
|
|
| BLAKE2b-256 |
741b1fc23d07a14ff6b75da2b7681d0ed4c19673f41a186547cbfc3098b2196c
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 566.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e59b929a0b9899c6cd3317e711920854543b1cbf3222503ca8cc3759267f9e22
|
|
| MD5 |
2d54c07612397de2fdc5fd98ee63ceaa
|
|
| BLAKE2b-256 |
15500a77d5551c354541884c973198a310a067d55b7e390fa65800a1fbf14cf2
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b02753397fc34c49221f687cf6117b4d5d6870d96ff062358c4cabd1022d206d
|
|
| MD5 |
4eccd7a399ad4b4c449dce4fd5d4d573
|
|
| BLAKE2b-256 |
758a94ba70734102eb9996c1baefc467a79ebac556ecc0a8cdd55b15f6cb8650
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 662.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4677abbb6fc3d70b39cf3ae7fcc9ecdf41db262aaa146a669860202b4dc11ab4
|
|
| MD5 |
288cc5e3d5ebca830f5ff5ff3c306720
|
|
| BLAKE2b-256 |
7cb93eca13b462b3eaaf442fa926262219f847f9533171229e9786bf081d85cb
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 568.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77d1827cb25600937da14343d43248ee9ed4da9217c28af6b98446739cfc0d8e
|
|
| MD5 |
50d7cb99ba344c88859fd3528ed94758
|
|
| BLAKE2b-256 |
436289e253ec6faf5ea313c5e6fa907de935494e41e749bf8adc55f50a1649ca
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 395.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01c78abb582192f97f73f176845cbdc3541a0987e0fd656b80f4aba69aa5b5f2
|
|
| MD5 |
f9b8f074bd9fdfdff35910baa352f535
|
|
| BLAKE2b-256 |
16a3dd9abf483d6a82deaaa58b0855af1f061e53c89884031b7dd9aca6c57d19
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 457.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9227b1e6c5aef1d86421b7086568cb0212cf0a7a86dafddccc5f25d7274b7ac
|
|
| MD5 |
3e867d50d7cb5c83e8fc2b30075feb97
|
|
| BLAKE2b-256 |
48208831c7d4e5c9df86cc428417f1f4e52c0140ce0439468c6e46318f86d822
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 451.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfe5411fd04cf8d7c7cd595285b6cfafcfb1cbaea4ab37c022667d86f1cbc49c
|
|
| MD5 |
1825e8ba867ee35146968c9e20585078
|
|
| BLAKE2b-256 |
864e0a421bc36a0518d3ce3ebb125df6d4530aa85d9113d135758de56daac2d7
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 420.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
912a134908279367e87c1008861a51937030186f68850206f84f58d5c51866fc
|
|
| MD5 |
74da653eed197c9a37593c85adda3c54
|
|
| BLAKE2b-256 |
bb558a8d6363d4fc690eae84ceacf7450b36dcaf2984d7ebdc3df862a6b9f7c3
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 401.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f58f711e175787d1945b26a59851745db62edca8bb5b4a47507b10ffa78049c3
|
|
| MD5 |
fc29e710ae63be6d835ad650b25b798d
|
|
| BLAKE2b-256 |
2b10f1d9566f5e75d36a32c496c8f5b2d5821fd818a98888021a91684cd0ff10
|
File details
Details for the file phasedm-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 390.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6d4c8333e5cabc12a5ad2d5df3f3d0fa3563113086a3146199fb0dc44dbf6b7
|
|
| MD5 |
69f458889b4bd5e6186746d5e4c25bd1
|
|
| BLAKE2b-256 |
e0545722dced26b0504ad8ca33de73df513718e3841b4b66b362ced7f180f042
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 232.2 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9457298dbc0b28321dfd40bc96a2a6a943b0aa6f59180676659037cc2feb802e
|
|
| MD5 |
4d69fa798eb4b318fb87e94f0aafbf37
|
|
| BLAKE2b-256 |
6e95982cc459e4f7ec7437130e9617d94b03ab88f0345ebf253c3fc3c3e73b07
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-win32.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-win32.whl
- Upload date:
- Size: 220.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24a4755e2412a7cd1ec23fa6364e5a0e854c09cc5eca09470166f89393cabcbd
|
|
| MD5 |
4da9dbc39861240fe6a4c10f48ef1c13
|
|
| BLAKE2b-256 |
ccd512f6bb066616bbde34bca8f1c9acfa421cffe31fb47e4048d527b6cf52f4
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 566.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7973385fc7c34561c3ab8894239c5b2939ff8dfc32381e5c408e4a74076720c0
|
|
| MD5 |
3cbb72630383239e52cf6c4f8c27a12b
|
|
| BLAKE2b-256 |
646108ea9059d3705833ab8206704c871c3c7920b83d5526c0a9b98e8788c007
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3be8e95d8cbb767a1812d88f41ad303ed821704edccf5e3bf5b48c2bb71d44a4
|
|
| MD5 |
1da9d7b9ee082fe4ee4f4af6240b711d
|
|
| BLAKE2b-256 |
39566c7ba38917f956099a40638357ceff94517f52154cb6f78800638fed20c9
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 662.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adab1ecbf7e1af84dbb23d6ad0a14f5074ddd96e632958aec903779645665a60
|
|
| MD5 |
f40ebf8d56ad64e534092a9097f470f6
|
|
| BLAKE2b-256 |
d44c1dfd11dd766a7ffaa3d81f1a399505ee1c046f7ca214cf42c5c9ca1c26c7
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 568.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2a41e315e770d2d2eb5a137b6ec60485d4b3f48803f44357513fefaf752f02a
|
|
| MD5 |
0b200adbdc8eec69aac269ce628ff092
|
|
| BLAKE2b-256 |
729e4b0ceab6d0bbb501c71ad65c9d2b160686793524a9a1139d5abe0f77862f
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 395.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
499bca9a6eb887a7a23b5d66589d5dee8259af65001d3f5e89a72a9696fb8a1d
|
|
| MD5 |
c646da5d305c579c4e7f0ef38d4def40
|
|
| BLAKE2b-256 |
cd5618e6000a053c4b8cab6abea8a391bfa6f9f0a4e816492618f78a33516ab9
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 456.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f52e72cbc9140a53d3752641d8d442883b2995f7033596338966ed846f2f6dad
|
|
| MD5 |
b367fd45d849526f0e515c2db055f36a
|
|
| BLAKE2b-256 |
b0b38aa8aadeefbfa20aca113c1f7333348b880acdd773cba0b3c2caf933b6e5
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 451.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e78cc38a4f1c7a06368b9c406509a8c01e96e43d034465d0c91eb006a0142c1
|
|
| MD5 |
cced591e4bc9ea2aaa86db7591f21c85
|
|
| BLAKE2b-256 |
db2bcfc97c2ef330f533ae79d9af49ead4f59e6a979af6db81064063b105154e
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 420.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
219051b1afaf75fdd357b1da43b3e6b25e68d216dc94e9b5d1c4969b6b6cb12a
|
|
| MD5 |
ec86dc76879d95a3f33faf0a7bd80fa8
|
|
| BLAKE2b-256 |
49a6b87e89cf6fee959342502d20167f76690ce20676168b32d2e7019c134f91
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 401.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6bcc4c172947bf905fe86dc454a5abb3ad1096f275b9fa65ffeb935eb1942f8
|
|
| MD5 |
571aa286ca090994f2334b421fcfae6c
|
|
| BLAKE2b-256 |
519577763cbc3713b66c560649d757bc11d60c5603f3b0df8de70a485ab7313f
|
File details
Details for the file phasedm-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: phasedm-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 391.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9adb1c7cbf858ee4bdade0b5e1d7ea4fde89d7d60619709d43ad14bea204ec1c
|
|
| MD5 |
2562d2491c774c42d90ad3887f51b356
|
|
| BLAKE2b-256 |
0dc0212c1ec848bd86eea4b31cf7bf60066ac40f2556bda6366553080e81c669
|