Skip to main content

Fast DCT/DST types I–VIII

Project description

pxdct — Fast DCT/DST for Python

Rust-backed DCT and DST types I–VIII with SIMD, exposed to Python via maturin and PyO3.

scipy.fft covers DCT types I–IV only. pxdct adds types V–VIII for both cosine and sine families, MDCT/IMDCT, pre-planned reusable executors, a 2-D executor for image processing, and three normalization modes including orthonormal scaling.

Install

pip install pxdct

Build from source (requires a Rust toolchain):

pip install maturin
maturin develop --release  # installs into the current venv

Quick start

import numpy as np
import pxdct

x = np.random.randn(256)

# one-shot
y = pxdct.dct(x, type=2)                   # DCT-II, unscaled
y = pxdct.dct(x, type=4)                   # DCT-IV
y = pxdct.dst(x, type=7)                   # DST-VII
y = pxdct.dct(x, type=2, scaling='ortho')  # orthonormal DCT-II

# reusable plan
plan = pxdct.plan('dct2', 256)
out  = np.empty(256)

for frame in audio_frames:
    plan.execute_into(frame, out)

# in-place variant
plan.execute(out)   # overwrites out

# ortho-normalised round-trip (no manual rescaling needed)
fwd = pxdct.plan('dct2', 256, scaling='ortho')
inv = pxdct.plan('dct3', 256, scaling='ortho')
y      = fwd(x)
x_back = inv(y)     # ≈ x

# MDCT / IMDCT (length must be even; scaling is ignored)
mdct_plan  = pxdct.plan('mdct',  256)
imdct_plan = pxdct.plan('imdct', 256)
coeffs = mdct_plan(x)
x_back = imdct_plan(coeffs)

# 2-D
p2 = pxdct.plan2d('dct2', 512)              # 512×512, same kind on both axes
p2 = pxdct.plan2d('dct2', 640, height=480)  # rectangular

img_flat = image.ravel().astype('float64')   # row-major, length = width × height
p2.execute(img_flat)

# 2-D ortho round-trip with DCT-IV (self-inverse under ortho)
p = pxdct.plan2d('dct4', 8, scaling='ortho') 
p.execute(block)   # forward
p.execute(block)   # inverse — recovers original

API reference

pxdct.dct(x, type=2, *, kind=None, dtype='f64', scaling='none') → ndarray

pxdct.dst(x, type=2, *, kind=None, dtype='f64', scaling='none') → ndarray

One-shot transforms. type selects DCT/DST type 1–8. kind overrides type with an explicit string such as "dct4", "dst7", "mdct", or "imdct". scaling controls normalization (see Scaling below).

pxdct.plan(kind, length, dtype='f64', scaling='none') → DctPlan

Factory for DctPlan.

pxdct.plan2d(kind_width, width, kind_height=None, height=None, dtype='f64', scaling='none') → DctPlan2D

Factory for DctPlan2D. kind_height and height default to kind_width and width (square, same kind on both axes). scaling is applied to both axes.

class DctPlan

Method / attribute Description
execute(data) In-place transform on a 1-D numpy array
execute_into(input[, output]) Out-of-place; input is not modified; allocates output if omitted
plan(input[, output]) Alias for execute_into via __call__
.length Transform size
.kind Kind string, e.g. "dct2"
.dtype "f32" or "f64"
.scaling Normalization mode: "none", "scale", or "ortho"

class DctPlan2D

Method / attribute Description
execute(data) In-place transform on a flat row-major array of length width × height. Output is in transposed H×W order — see layout note below.
.width, .height, .dtype Read-only attributes

Layout contract: For performance, DctPlan2D omits the final transpose. Input is W×H row-major; output is H×W row-major (transposed). To restore W×H order: arr.reshape(width, height).T. For a round-trip, build the inverse plan with axes swapped: plan2d(inv_kind, height, width).

Supported transforms

Kind Full name Inverse of
dct1 DCT type I itself (up to scaling)
type2 DCT type II (the "standard" DCT) dct3
dct3 DCT type III (inverse DCT) type2
type4 DCT type IV itself
dct5dct8 DCT types V–VIII see literature
dst1dst8 DST types I–VIII see literature
mdct Modified DCT imdct
imdct Inverse MDCT mdct

Scaling

Three normalization modes are available via the scaling parameter:

scaling Effect
"none" Unscaled output
"scale" Multiply every output element by sqrt(2 / N)
"ortho" Per-type orthonormal scaling — a forward/inverse pair round-trips to the identity

scaling is ignored for "mdct" and "imdct".

Unscaled round-trip (default)

y         = pxdct.dct(x, type=2)   # DCT-II
recovered = pxdct.dct(y, type=3)   # DCT-III
recovered *= 2.0 / len(x)          # manual rescaling required

Ortho round-trip (no manual rescaling)

fwd = pxdct.plan('dct2', len(x), scaling='ortho')
inv = pxdct.plan('dct3', len(x), scaling='ortho')
y         = fwd(x)
recovered = inv(y)   # ≈ x, no rescaling needed

2-D ortho note

The 2-D executor applies the 1-D transform independently along rows and columns. For a clean 2-D ortho round-trip without manual rescaling, use DCT-IV, which is self-inverse under ortho scaling on every axis:

p = pxdct.plan2d('dct4', 8, scaling='ortho')
p.execute(block)   # forward
p.execute(block)   # inverse — recovers original exactly

A DCT-II/III ortho pair also works in 2-D, but requires the inverse plan to apply DCT-III on both axes independently (not a single combined plan object).

Precision

dtype Description
"f64" float64 — default
"f32" float32 — ~2× faster on SIMD hardware

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

pxdct-0.3.4.tar.gz (443.7 kB view details)

Uploaded Source

Built Distributions

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

pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pxdct-0.3.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

pxdct-0.3.4-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

pxdct-0.3.4-cp314-cp314t-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pxdct-0.3.4-cp314-cp314t-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pxdct-0.3.4-cp314-cp314t-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-cp314-cp314t-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pxdct-0.3.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pxdct-0.3.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pxdct-0.3.4-cp314-cp314-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows ARM64

pxdct-0.3.4-cp314-cp314-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86-64

pxdct-0.3.4-cp314-cp314-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pxdct-0.3.4-cp314-cp314-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pxdct-0.3.4-cp314-cp314-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-cp314-cp314-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pxdct-0.3.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pxdct-0.3.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pxdct-0.3.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pxdct-0.3.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pxdct-0.3.4-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pxdct-0.3.4-cp314-cp314-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pxdct-0.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pxdct-0.3.4-cp313-cp313t-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pxdct-0.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pxdct-0.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pxdct-0.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pxdct-0.3.4-cp313-cp313-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13Windows ARM64

pxdct-0.3.4-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pxdct-0.3.4-cp313-cp313-win32.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86

pxdct-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pxdct-0.3.4-cp313-cp313-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pxdct-0.3.4-cp313-cp313-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pxdct-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pxdct-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pxdct-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pxdct-0.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pxdct-0.3.4-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pxdct-0.3.4-cp313-cp313-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pxdct-0.3.4-cp312-cp312-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows ARM64

pxdct-0.3.4-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pxdct-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pxdct-0.3.4-cp312-cp312-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pxdct-0.3.4-cp312-cp312-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pxdct-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pxdct-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pxdct-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pxdct-0.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pxdct-0.3.4-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pxdct-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pxdct-0.3.4-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pxdct-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pxdct-0.3.4-cp311-cp311-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pxdct-0.3.4-cp311-cp311-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pxdct-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pxdct-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pxdct-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pxdct-0.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pxdct-0.3.4-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pxdct-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pxdct-0.3.4-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

pxdct-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pxdct-0.3.4-cp310-cp310-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pxdct-0.3.4-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pxdct-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pxdct-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pxdct-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pxdct-0.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pxdct-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pxdct-0.3.4-cp39-cp39-musllinux_1_2_i686.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pxdct-0.3.4-cp39-cp39-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pxdct-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pxdct-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pxdct-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pxdct-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pxdct-0.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pxdct-0.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file pxdct-0.3.4.tar.gz.

File metadata

  • Download URL: pxdct-0.3.4.tar.gz
  • Upload date:
  • Size: 443.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4.tar.gz
Algorithm Hash digest
SHA256 08a5f4f8ac04ebc15da168771aba7af72864136088e8c7d363f43a0e3218701d
MD5 5725a3cd7daa5063ccdfd350d2b03e29
BLAKE2b-256 8b88607e2a035bf6e006d6b0d6e5107ccfe1acfa59272353a31e8e375047effd

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0f7dc9f839d0c52d92aaa014a55bdf3a83d8481ea41f7aa5ae1d8fdec17014e
MD5 37a4deb8a3a2f424ba1a9538b5f835e0
BLAKE2b-256 ed351bf147eb7976ecb2d775578cc284fe692e0cd214fd5b6fcd3113123226f5

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24b79c52cf7dd49ec44b8eab4941d6bdd80c6e124e4b5bba9b43d57029f62ae9
MD5 5132fc524d7c4541637246f753de5a85
BLAKE2b-256 f9e2203336c7da6d95db3ee78569ac9b388ddd65a5d299d2614c046e8624fb9c

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 311d2f4dddfd6ff316737b7eed9dd49d047a2b914eb0c19be051a38ccff8b82a
MD5 e58c9a8fc020d7102477560263c3fd23
BLAKE2b-256 21a4e1a41af9bf7049b8f3738f36ea0ba4763ef702a61fad5c703e810bd7b3e4

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74fe057abc3466704bd9a67cd62aa544024aec92b70d1ddc3ae14f7ed46b2756
MD5 0155952259b5c9e9e4a3d174c0279533
BLAKE2b-256 4a5e025d4849ae21e8d14cba2c471875dd248acf04f2d7f26c2ffafe43268197

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 648437dcf92196e6f2154ece65f40a3e440d43baa0083b43d46a36636d434543
MD5 f90d98ec7f2b1767a534165d317e1f73
BLAKE2b-256 a2006e50beb81a83f78c78c2a2d19caf6f6f4c99c8caa10e35329a707ea0665b

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47e221ea9842f0774d0ca057a58dbb8f2c76b375c4bd8e633985ded8f846facd
MD5 46eb38dc8d729db210f88cd4f0bb2e49
BLAKE2b-256 c4c99022fa4bb363f136881199c273a04b3e1e239f0e422d83aec36550834517

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92aec2ddd9b22983ac87ef24bd8a3701a5010b279fd363f86c63aa3711d750b2
MD5 b2bbabb16cc7a7e0ac9a335e79fde34a
BLAKE2b-256 149bc873ecbd3018dde7bbd2d3ad9eb4542aaa09c1c813487dee598673334c8d

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 614a8497673f18e65178e5153ffc8e057802fa0859866e0cacf86a4a05cfaed2
MD5 2d3fe8dd79c5823546df9fd010500cfd
BLAKE2b-256 b88918259cd2cd36bb2245be675f484a65dcfd0d3eb1cee1be7896eb467146c9

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c90bb2c84f2172375a60c4e4adf360b80d14352cb2bfe626570b2746957ca50
MD5 878ba5da354c134107c2267b27727dfc
BLAKE2b-256 6125e7f9e890b014fa89acdd2263d3c685d85bf38fcd61fc1491a40194a841ec

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b517e63830ddbf5e4d14fa7e0d07fe02613bc1a52471ccc069b85a6688f63ee
MD5 38ae7c6e8be73cd392ed526ec0886f6e
BLAKE2b-256 9dc7d862594fb014833aa5c0ae5b2d6fd637304c3c7226bba3717c18b8f8da8b

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb7a7d01237b6afa34e7153d55dc5678f4d737e5122727afcba6b68a47ce19c6
MD5 5a620a8d8820b175d9ae9f17d5bade26
BLAKE2b-256 c259fa0493f51db0f66f32f101b8eadcd70e83935b07f649c3cf2ed72200cf56

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.15, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a17661d7b5d5e3aab47b45bbd1260a2833a4d0405597c97dc76e8882f7de4f2
MD5 91a1680989ec5738a3bc398809eb1e27
BLAKE2b-256 95efc91d69a55f941f1791fba2a77acfa820052a2d6719571cca6b39b0acc0c2

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1525a4d81491508d74f00d9d23a6312b5516c3bec58a4eaac562d94dcfb16a6
MD5 73a5e19b19b9950ace09f823866beeeb
BLAKE2b-256 497324bda73532b4be4e2bc1b701bae7c0dd828ffc06633b01d73d71aa993073

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15d94d686915a322aa7feab47dbba46b1cc2c7316a1dcba04f935ef6bcb9d31b
MD5 d8e799950f761dfacea1544c47b7a829
BLAKE2b-256 f8e9e4b1c00f81b5e9e817f33a2856e4a67d3c66bb93f685c22abdeee6c7bc63

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92db46215189cc285414648deb5fe78d85a352c9e6d1a9e82cb276587cf52718
MD5 616cf419dcaca4ef380ecd2351dc16f1
BLAKE2b-256 407e5f5e5c0e00a790b0be4a0f9c8938258998390993de31ece33ae1802e225c

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fe59c6f91848f927dde0da63b114a602f16d61dda3809b662d616608539a3f0
MD5 329a5ef23d0afb35b92889fa366b8159
BLAKE2b-256 43a198f0ad36007df7a52a152205ca1e8f67f26b8f460282deeb0ff6c8ca3b44

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b9e8d339a36ab1e9d99dae05907da68383ddbc35598c1ab252dcb485e39c70b
MD5 09e65b317c638a03265d31803c6215b6
BLAKE2b-256 89f90b52902bf07146e9fd7bdb6135a4032c2deaa953fcb03d28c3906518a618

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c45bf63b09ade8ea7a81b8a5a87c6ae91a37280c2b24cd1e4dd42a3791d1b0f
MD5 6ae9aa0a2b30c2b4a3c19f35b157cfc0
BLAKE2b-256 cd5813bac30f7bc5afa967a3d52c42bbdc4486ec57e516eaa4e46398b0ce642a

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a6f6e3e8c7ba9dc11537746520cbc91780fdeff1966b1d1799e1dc3a94eaab6
MD5 700f453023b6f57b615910a00622b795
BLAKE2b-256 a9657954e0b58d36cc6934d43657cfc70a6b903f099d431387f6698610b50ab4

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0856af7b0e24ca04a77732eea6a1242f3e6ed654716f11ad18d93939f72ef3b1
MD5 3f81ba4757541c33860b15b2283e65f7
BLAKE2b-256 87d5cb230e3baffa9c71811d73aea1d957492d9087bd21b975cd2f6c40f8053c

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e3e060b157f9aa122362bb2352c6bbd615498a8b3e27fa59ae8a55c0b87b2d7f
MD5 a178119232fa7074c70ea1b89d437304
BLAKE2b-256 715c5d1739cf30a9265e62657cff8e39b9a2a39cadb9b840e012c67cc6b510ad

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c0483d2fabd1c93c6cf2bd00fc5c8a1b6d0cd1422ef2c63ddd41900a97d31bf0
MD5 22376fc8be812f8d00e4dfef6b0de676
BLAKE2b-256 8cb8949c4666549e87a1ff5e0ea09af2887fe1485a7d40a433232961e5ff92b9

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fcb2ec50aebece4bdf8e7f26838de1d79a3a5448c353e2404eb153d42dcd29a
MD5 cf32dcafefa85e6fc30f658cbd7e7c65
BLAKE2b-256 6e21a7f3eb047019652ddf6efed8d74b59fb8a19ff17b7e9a19bf9154317c22e

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 422b59795d157b4f7c6c7cf8b17c1e5f7877b78b138e93eb4d51b555fcf81607
MD5 6d8b22651b8a296163cd0476ba2ee6cb
BLAKE2b-256 b4cee82a1837f8a950bbaa20cab7cd0b3da8c7d185113213d02e322009916fa5

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec33f3d4e7b5de2206afee826e9093be2aa3572a26f830d75d9fd02e8e8bffdd
MD5 7fc4512b9de8f9310c3b040b000a991a
BLAKE2b-256 13931356184c1aa3573ca1682e7c7c9eb283f5d95ee6501ce84d8f4d6f73b433

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dddfc3a042f6bdae320e3ef03788f71b99c8dfdcf76c11084773eafb4f62deb
MD5 1353c1ee75bb20f1258b0fc7a4d9ed7d
BLAKE2b-256 c7fe2b83e37bc3c2705346951b61abdfec9ecced062988e75ac65d215e2f3f54

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0c289e4bead22458a72c74582f898be9df634364d12620407e829b83fc75af9
MD5 38cfabc425b53d25163ffce86bdda760
BLAKE2b-256 1e8f14aa2e1163db70b7fd686a17280eeaffcf55b8a6a4a2d155a48c12e549bd

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9b960385e22108232616f039f91a1e1a02b50b74c25a39a6458054e4e9e4102
MD5 be6c2c9eed7143c21f62fd6d964c2ade
BLAKE2b-256 14ae686fa2538b26826e33bf1e64cd677c1018f0839391f00ef14e9162e8c134

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39cc8b8d9ac8bd7d7face5411453aa5bea37861083c84eeae0911d7f9181e2f5
MD5 1c512f068e0c566959abc7f3e7499138
BLAKE2b-256 27b8625a856c9e200c26958bd510edf530940057a5df9dcdf7ccc7439e2154d2

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5fee2086561f2da3f582343505dafc4fb47e38743be0dd6735dea0e49b3d31ab
MD5 a2a166c255fd4720e84b309b4169bf7d
BLAKE2b-256 ec65cd695eda9c3760a4c1561e5976cd3df7fbad9ff9768711c44c558ab4f7e5

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 844c95422b9bd7457467ceabd203472cbfc7ceee7766bc71287d255a7ba0881d
MD5 d47dd83800be18023a308b7dd6045965
BLAKE2b-256 ad8cd8a031ea6d8be95044a1edc1f145bbf8708ee4960e5b0eafdf3feabb82b7

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0acf806f0bebb6338ddf8ecc55bdf3d2136cef9dea376791bfdb8cceb1160ef5
MD5 f1e5c3a3257f760fea2dc94421332dee
BLAKE2b-256 13068dd89409ae277a641b99fab016819cf9a0c8824218f78e19b4213e1d86c1

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a60cca137d2239c6f79504d661ee204c8fa86918ab4f99ea9568b9c010dc971
MD5 76c6ed17400f37cd8aff98a769f1cecf
BLAKE2b-256 870c49e69f7ba7fb0f9d1bbd552457ddd359b308ba9438e92087e4989498625d

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ebff4b9bf357cb9cd1826d255830adaf9e3ce7f5916061f790b424fd3d12203
MD5 391f8d82fe4aada023b32655e60ba91a
BLAKE2b-256 e09d80316ba16605b9de9e1ffac8395da28c537c2419497f82ac3174ac8dd0db

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dbae7e6891c82db0593e40794f4fa585199002b89949c6e4c9e092d3849c760
MD5 beabe90cefae81634d26fd52e3771c98
BLAKE2b-256 74ebfd2f470f168a1dc62ff3c4aa786f7ec2c6c9c098ddb9f3d1396a70c75839

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b437f03285ec4e551c974b17323e363a383a3cc00b9cdc5e6f7da27646ac77d
MD5 cc0aae5269563517d86fb63b2cf8429f
BLAKE2b-256 5c24f635bcf52aa0cf4a96f861d560410abb28fbffb4b37a69e7a1870910fe4e

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a12131edb936ade2c11de6e3d504fbd659e0d3bf7c7e141eebbb6596b74c90d9
MD5 687c07bb905e13754086738929a924c0
BLAKE2b-256 e5c3677e9aa36dc6ecc3c886621e3465cb31dc239317f28c2dd9f38dad28b920

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88394d6a3835f6285e1ea54cecf4c25afd3f6e74a76f9f0b1241267e03a3ffc7
MD5 da6fc292d98388304899ba012f0f3ed5
BLAKE2b-256 54e569ea7290cc74428d4a5e29cd7e4df9f120e336518ab8d32742e01372f99b

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85049593a7cbb6e1f7378b80370c6aff9cf7e29910422a92e820b1d4fa07b9fb
MD5 b720075c275b402e9d074019f804a63b
BLAKE2b-256 ae3fdbac03e2cf70e76b00c7d2466c73cce715dc39480565e363c9a4e2b4031f

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 199477b275a6672d331a070481da3dbfcdba6bdf238395998c246d5ceb02df9a
MD5 49da0f9cc6320ba99f055c25f4645409
BLAKE2b-256 d079e9567667dc9864749d86cb765c7cad340e9a5980d489cb56e30bf143b1ca

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89bb9ab06f645fca153bbd06d412a27aaa2090965dd56fcf6d06a9aabbb974c8
MD5 be490d1e9db36e7fee173c9ef93eecdf
BLAKE2b-256 76f0da96065dd13ee33065b4d3b9317c09d3267b66e7b62d1fc8d4c8d2c721c7

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0825f061399be39027d10eae993d563134ca6073ff84245a8017d696527f8d20
MD5 d99f281eba9d065bfc23b4fcfad964e8
BLAKE2b-256 733f74dc7ca7fc3f0b9d270ec5c2ae4699a3043781bde9e4430f5e73c84a5682

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c19fafdfd420273006ee076cc94161d74f7fa8360871b1df1c944b385cd5c377
MD5 871ea955648bfcb1c4df4b22eee78972
BLAKE2b-256 dd9dee5706ac8bfe7623cc0338ec7b908172aa473af5ea074e2e0972d00fb1cb

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 90804496c791b84c37a529fd5bccb9f08a5812513c7eacc6f7c93d7dc6cb7ed9
MD5 695ea291c8dd8250e81e4477bc084177
BLAKE2b-256 f31bdec7d099a483829fb952d9a99910137a11d84732d17f817b0e2dbe799696

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f3ac7a56c9236ed6171aabe2b218fa0bb1df996d1a56293d7fee2eca560e5b47
MD5 7bb29f60f8abd36ab4389c13e65ddcc1
BLAKE2b-256 a9a77374ad356f6745f98d413d51b7a0788dacb8b36a0360dbb03f1eabd95e9f

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8363058168306f2b51288fe9b8d6bb6f7f0c16602265fe6769f261cdc429a6c4
MD5 291dc8c499248b54b796a9ed943d42d3
BLAKE2b-256 c274cf2a800f975ee17ad1f4ba72160c32cfd984c0ebf7613a4b86372f355dc5

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f792c63a3a051636d1608b4260f568a325fa31a6e056cc70c9161df09a8da3f
MD5 45719c4d63c257e77492df949ea2bb92
BLAKE2b-256 d0d8bead8327ef2b8b4ad00bc373adc59d34749e85aeea710b147653c0ce901d

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be8baabc0a215c4f2a2239925e06dc002fe8aadbd5df094b90ac74a8772f59a5
MD5 e1cf11ae8ad0f5b050c2e734c5405bed
BLAKE2b-256 676a9937e5ed5434925665a1086091303075cb73c6b39ba367275e3ecf1d6e71

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 264d29183618ddefd01011685132ad04c9433869a5dba5c7b44fca7e20c9c910
MD5 bd6811159830105fe415f08410a00542
BLAKE2b-256 088922d50f5ccad9432083ea8b0ae807851a2662e6026b088d565a0306e9d502

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a454470cf9cb6127244e8a587d9c45e50a49911345f0864d7d4f611c2896dd5b
MD5 9973f3df69f3c402279877d1d75e343b
BLAKE2b-256 7afc9ec2c9bb970de5faba02ffff00dd3e1f381af3c835af2359ed5fca76e452

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c90a77158417a3174cbd26a276430f189be133a1b5f7ae90add1edaec3994b0e
MD5 e85ee2ffacfd55f4fbdfde82bf05322f
BLAKE2b-256 1a40f419fb2dd9e7c03191b941da8b7a63b66c48f182b545007855f4d9361501

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8042a471134122596151dffac6b347dc8c041a9864b4191aa734d79ad5db30d
MD5 a4318d9db329d9283fa07982280f0368
BLAKE2b-256 2c6e7bdd290df4bc361a0eed82a18819633a500aff5446c0e84a5d74a9037066

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1db3b04c052b0189b04a7d3c71ea263db8c1673cda056926faaf650cd4ab5fdb
MD5 c8423fd9c3b12becb5e01a7182bf8b74
BLAKE2b-256 d60495be52c6e40ed3e012ea2f870593c97b8056bb373d0f6e56d0a1c24c57b5

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01e054aa66ddad2277a2d3c6c98f96d2150f13a52f84c867bd672037e53da50c
MD5 8ce244fb4cb264c159e745054578f989
BLAKE2b-256 9bd7fba8e267835d4fcb8cfda40acd72ee1ab0e4ddf76bfa75a6895e50dcf2c0

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 251159e36738adb14681c5197f40a822efa15b047efbe8e2f4d11c7e72a2a74e
MD5 00485e4be797960cfc35478ee7d7f13f
BLAKE2b-256 3dffaf31bfc373ee9d88fd9e9a39329843bdea73931705b01ad56eecc74a8bd4

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b0ca3b606edcbd45ec3c884b2ca8bd71132cb2429d3f2c6ebbd63e887b00fb1
MD5 5c87194fae9cf4d1550d87e7ed1ebd3b
BLAKE2b-256 5190aafc773851257624a980275c8eb47dfe02ac4ae70a73e833887f70f95ce8

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a58cffe698e9cf15f0b7673945673a563c425441be18db17c48b322023749440
MD5 934c4260993387dd580ba55a18a5d727
BLAKE2b-256 e912112a48e752a13b57bde4f6c58b4a19c3f87acd3462e72d6308d9a2754d07

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6111e06d0112725d67f82c9abf718b1fdb82e8172bd56a3f888a1861a05a96f7
MD5 fd385697150c12db5a0804101093aba1
BLAKE2b-256 d560eece739e1208c8eca26fd41d478b59cd83a7d6c538d3cb872b53ed383eb1

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 09853062de7693067daa6b2095500cce1e167c1c9e1a76f9cee6812b458fe415
MD5 b43a3ad26990e9336307993fe0101536
BLAKE2b-256 eb2633544d66a789975a00194c617d68ce5be65f10afcc878be11d4049fc7c40

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdc6de2a108beddb472380b46383f013fbb0ebaa13dbff293313b8eb878a869d
MD5 6ee4bbba3216e93bced5b8f6da89410c
BLAKE2b-256 f9fd0a1e46c7b361511f53af2cf4bcf8946b8b9f883407bce4b29474e7e5ad6e

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57a317e9c9bab00604c950080c72d32602fc854ecae95c0c20cdbe9207695071
MD5 922b9d16de64c1a77b53b26a72b5e42e
BLAKE2b-256 1cd426cbc839e7785a83f34de39d2be2c43878711690ab37361523f529921846

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8b4493e774fa1b8ddd70090fe138dced75d9c98847c3fecfd61267c55db516b
MD5 216bbc30eed64c84fcafb2fc17cc525b
BLAKE2b-256 831bf187f285cd2cdf805a47a84c927b7af8fe1f2bdbc5d9789fdcca7f58fe2c

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a63acd4510f6be0408ee06f7274976895c2b7d1499061aa4cf38787c62ef42a
MD5 63b16ebdff4aa7f8ee02b6413ac043d9
BLAKE2b-256 400944586c2fd67d9972097d18816b20d3f170bb37d71ae644ddee8fc72f1687

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd47bac581a2a1bbc2f57c2f76dd9991b19174335343818b94a2ca67f977eb99
MD5 a0a5052fc04dbd3dfe5c0ae93717dc40
BLAKE2b-256 f81b5618cbdf211bd4984b25bca9b2831edb0d645ffa4d4d64d7afe7630b1cfe

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ca86dd67932835a834babe3cf6310e526937fb0b2a451f8bac8c4206fd3821f
MD5 0cd51a1d42a0879eac13891575109fb4
BLAKE2b-256 0119125948356817983faeda9d65b052fc0ce7e4f0981c0d67f32452dc8b7d83

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37ee5a8cf90f637cf819cdbb07f2b8f86ecf011f2cc29d6781ffd791773644d9
MD5 a4e3bde6959353486b976709e440cd3b
BLAKE2b-256 9f7ca7d58a66f5e939431b3e1fcbb21cc25f46c05e3f22ebf2778cdd93b8c068

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc2c18295fae843ba0163e09edd6fbb63ec7fe8d4304aa6237d7260453418bff
MD5 04582b89cac3701c661534755a979f7f
BLAKE2b-256 19a73bb656fd53f051112b2f965f4b20081f43547182e008ca639c6df3d1ea0a

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 535bccbc429304fb317a594f3618bf5568b9e680cf3b6d730c6cedb8bf018ba0
MD5 21f4c699baada967c38dc39b7f7304a7
BLAKE2b-256 38007780e4a86cd46f6a9be3b71beeaff4843a0703bb8035c4115f5821df73f1

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecdd17b16583173c0e758d085e2bba8f7dda55eee2336653d9336414528348ea
MD5 1b7881738faefeb95de1a088ad879348
BLAKE2b-256 b6399a33690cde58c030a415c70c653d26d3a84a92e7f8b60ba2a87ef728247f

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e7748e6b4fa07289833ad5532d21931d0828f21af4eb8860db3b2f8852ddeb3
MD5 d0c9f2a347d2da85bc4d891c9718bd68
BLAKE2b-256 4975b7ff0faf8021ca861c2d7a3134e4792e4daab0ea40ed1ddc5267f72d0f86

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9291748fa142e4fbdc4bc2cefce7658efc03338bf504be2f3a7ae0fc4052456c
MD5 0217c6bd5bb2c426dea4e72090a29b82
BLAKE2b-256 3992db78e46873fc82c011ccff2216be1691bc52a4c79bed19e35d1fd3c144f2

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 26dbbe546bfd0eeae6d6e787f2335faeaed62e32ca5e18fec9462635b18c3c2c
MD5 ba9aac123ea60e86dc2c116043867fba
BLAKE2b-256 95343cf4e12b9d47afefd5d997ad38f1b6a42429411c7ade94d51b40e29fce3f

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d3412bfdb14e6fa30ac8dad09c55599362d666790f533bb5c9ecfd3defc82ad
MD5 242444da718c95ef49a920a18b91eec1
BLAKE2b-256 0c67168d9395b5742ad4dac7d057e0a4746fd5114a0059cfa192a1e9de6d1512

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a57110d4ab605832bbfbf88f6f602cf33f12fd72276385e16785b747feab6d0a
MD5 8926a37464dcc9b2ee1ea7e3cf62d0f2
BLAKE2b-256 0faeede493d069bbc60c34755d9034b2b2fc4f2834d12b10860bc2ea4ff3f066

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ab692a0400261b40a1e04281706dc2b22758eedaa14ad319f13a11b2ee6017b
MD5 e2b4aa18f2726815cdee7df22220a666
BLAKE2b-256 cf3df4ec295935da53fa7bfb6e8d448c7a21fb32da6c5e2221df50edd5e35358

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66a62e56e02b0d7227442f04ec4155337899ae7483bc4d9e8480ae52a7a2d088
MD5 36a30e078f50652f4ba853a157a3d439
BLAKE2b-256 c0a9a4f1d0105e4d60dbc351092a81362db52494657859607cffc36334e06d0f

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eadacd2b869f570ce22769cd432b92efe36819113b79d94e09015c89ad950fdc
MD5 c947e870bf124e673ee5f0331955d8f0
BLAKE2b-256 f7e3f28a835ad476edf5af1149688ecf8f1c0c0265d8306c1968b057843f3537

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf8f52ead59c92d455d8ff0ee94452cd324c6b4a2ea48cba1404dc757b734d96
MD5 064fd08ea1db9aa309d2e89ca5d81fc6
BLAKE2b-256 ab2c8027e1064de2a842a32fcddb2fb37b534488b6f2133e6a8bbe1ef3374ac1

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ab4f26477a4e7c16090d1d5d65953713ab0035d183339b13638d4a82813ae5b
MD5 f9f4fec990bc30688fb5b66bfccd4df4
BLAKE2b-256 2bcb1d5f7df8e14ef0296a54819943062bde57129bb67af5bf03b5eb432eb859

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b68244923335c2ee44b85288c74c62907a82d4cd9b35a15629b4ec1b038c949
MD5 8fc4ad1d926ae96dadbc9be6271136a3
BLAKE2b-256 15a91ee33279e367b719b7722aefda057575fe522290506402728d2d1fd0c7d9

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8d82cc56937c1714981bd622b96b9e83e8ad23a7630e41eab5dd0b2cca075ec
MD5 fbb6f6ae2ce9f4a4792774eb2f04844c
BLAKE2b-256 648c3d168fd31c74660781d8c6f12ddebb6443540a2dfa0d2052f684c652e67c

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2aec38ec767276c01ce1465e682fcddb0b06f335128846b3514a34c95a5546e
MD5 a5ca13a09bdd59835b41e9ff50b68e4b
BLAKE2b-256 0506cf96d96f45e309c10aad65312e8e285faf66d8b4d7be1ec50f0d5728120d

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48ac4f561047516effaba5131a91aeeb3fb7ba7264ec17ee2353cc3b99410226
MD5 5a9fe10a1086d14afab289905ca3c2b8
BLAKE2b-256 4c402ad78e60ecbe4f1b7667e103efd94a86c4a966fea9c2c1259e8cfbe2e1ff

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaadb799eef8005875d45fdf77161e89e099be39a2e401cfd90b9495b33fdad8
MD5 c647c6288fc928b9d8bbe6438de5ac17
BLAKE2b-256 5769f498bba5a637616ed1c302a40916c12a68c42c97e6f6d71133f28b318ae6

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ea90f3e546cdf9326f045a6785f66f5b4129031f888aaf1ba255fa017377eb5
MD5 8e28fe3a22c211265f662c063719c5fd
BLAKE2b-256 9059ae45b21f6936a22f2f105b1ad5b2c24c59ac49226eca4875ff9c96616b27

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baeece7ab98a4c29fe6af047ce64a2d21e0731e99653c4bd108284955b719bfa
MD5 6f971d1c088da0e9a1fac3f4ade33d73
BLAKE2b-256 7cda98e8e340686cde4f4381b1d82f3812911af6e7ce5ed73579cff003331903

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3253a9323130094f334e9a6337546e8cd0cf0898f5bb6e8dd5e853fd0b1b2cf9
MD5 021ee9f707940b6a8dd90094446838f9
BLAKE2b-256 4750f3cf720c472803521969c8a16dc4d167c5ce0456fbbd5c0e27aac6b78305

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 556ebec1bdbe90c64fa610e12b07d0f40db065b7b216216d447d412c8ed5d250
MD5 0046f272c7c841d5be2b96b5fb9ab6c1
BLAKE2b-256 3322ad29310648c247b7f694a6e56c842c9d08411754697bf2423e1212df6a30

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd781b8e4157917e0ba0f9e3fc7a41423f83902a4ef798a77c8507e1ae4295f3
MD5 d903844f60ada21a9bccc86b2be797a1
BLAKE2b-256 4ed34ddebd50e32ae4e7f45159ae678bae24fe7f63f703623f2b3d68b98bacaa

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4be4fb8893bfa42f963ca9548859ad370642199429262896af0864ea4d253daa
MD5 8219d728513ed310171b04ec40f3aea1
BLAKE2b-256 2fba2f45cd03189d70a7636c2c1543e7998021fdad0710e7acd4cd95e244cc19

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f016436cd6b0f51dc94525a76858d73b403f24dbcd0d5bc68ca1d9e1dc19da92
MD5 4c426250a1bc264d409e6b61b2fdbf3c
BLAKE2b-256 288a9ec04c21654f96066048fb3ee0affdd2121774247ae676ad67f49c723791

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 427e8df3afdad3c1d68728525e8025489d6a79e65b725b84140a639e984c344e
MD5 2976510a765cae80834bd007bfb863f2
BLAKE2b-256 0901c7463bb7d27ab5b83bf74ba372e0f6f7ef13d8998b0d02bb274c8d97d937

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd7d40a8c58c103452428d23d44f969574a7885d861fad31f15206e857520af6
MD5 cac5510561e01a49bb665c2f17f4d75b
BLAKE2b-256 bec237cb3dc85eabc4a9c7e8497cf007a98295a6e698f34b60b71d4a62a7fb8c

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54aadd40ddb8112c13f9f839d7da658198b5e536a533cb99a922dad82c58a791
MD5 14ef6024455c7fd9e0528ecd87869b1b
BLAKE2b-256 fca90fed2ba1778d0708b40a53c2bdb7d07f7ce031e7c3f49950b0654a08cc38

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ddf16717b39d3685d674a1853f99d29a63b009b981be85eaf6f64df6a60964af
MD5 63a4f18eff16d179448cde4d8b8120cf
BLAKE2b-256 9b8a51b6eca84150162fae495e30ce7d68bc10b488cff1e124b5f316cc958182

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fffb7fb05ba988a22fc847448c3f82309c43cf1209cebc68ab344ffc6b38648d
MD5 004fb4be6d20eec25e916d91ca3a18b1
BLAKE2b-256 0891be288df029542f49805d8827a2de98fda8807d7a40e58d533cc7df24b1cf

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61e1198b8140c795a4d176a744bb0bd1287c75ecda95ef5ca6a6f6c1ab932cb1
MD5 2ef3e8a5b9473f0c8e32eaa0935d8514
BLAKE2b-256 a261f73619df64f6a36d4a3e89bb73134fd7089cd178eb191d0ef5e2c98bbcd9

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b68fbe155cc1c501f6ec90cdf52b1c9100410de49874735198da7b9f7c70cca2
MD5 01a6c9daa6bc976ddae810cb5fcdaa02
BLAKE2b-256 15b8354056ff7e7d8e994f32f5c87cb97cf82367682c23e29c79174d53984bc4

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28e8b6b6db135e9eae33d6143ecbc9f13170714b0818b17388171dfe9758986a
MD5 c26c4041b6895037c76aeb7fe79cd19b
BLAKE2b-256 ddb9c7638dcc18cfff29d104ad5cdca8bde81e0c965c0c777eb6d91145530498

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b52243af99fb3dac404cb253b77c914b255d81897445685d162fae036b19ad9d
MD5 1de16821eb85d04bcf561ab1a6ae1812
BLAKE2b-256 56c6c22e81cb9f7506eaab2fe85080ac9f381b9a623fb0a3cf4bedf8ebf82b50

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f845ed42b9cab7edcdf6d418203c0e1792c222ac571c5fbb08d1ec016c5c7914
MD5 9bcdee7b4b2d4496095fcf1084e7c9d2
BLAKE2b-256 cf9e2ca52f3cb7a4714f372be716e04aab3f8d2ed17df56b55258e782b3df1af

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69d22e5221bd91942d17801b6c4bb942f32327b2ef9d211c32976499245eedb7
MD5 6c38fbc4f8bae2e14b37079437273ac6
BLAKE2b-256 ede212587d4a75e0f50c969a0f163c78e6e1b0814b3c8299976a8ab6af58912b

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18b210c2406a3de622c2793edf46ecca839dc2b4c7e1c91d9fc3bd87355f92b5
MD5 e7b0a7bdf57b3773b3724e5ef61fe203
BLAKE2b-256 1f61797b739e985c938dfc5a7bc4d0e29605fb6c27f7f4284e9a3c425f3fad56

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1f0c94e46aa8918925b4b8e5e0bdce61e7dbf9cb00337e62a3328e4d2a36c06
MD5 f2a1b387fb0079e4d5de8e3f47250729
BLAKE2b-256 75627f3880b6887cdcdd70053ab769a50d359e0830af353bfbf7c32584292038

See more details on using hashes here.

File details

Details for the file pxdct-0.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pxdct-0.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32d4b7add6c18b156164d30365f20fda8d2d3982a1b0a03872dc521f6fe7558e
MD5 03d9ebe71a5aa04de4ac8e7dcfd3c10d
BLAKE2b-256 90fbb836dc2d62eb49675f14c86cfb2cf3c42bfa0a8fbb5cb8d9f23a69488083

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