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.5.tar.gz (445.0 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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pxdct-0.3.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pxdct-0.3.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

pxdct-0.3.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pxdct-0.3.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pxdct-0.3.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pxdct-0.3.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

pxdct-0.3.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

pxdct-0.3.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

pxdct-0.3.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

pxdct-0.3.5-cp314-cp314t-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pxdct-0.3.5-cp314-cp314t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pxdct-0.3.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pxdct-0.3.5-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.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pxdct-0.3.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pxdct-0.3.5-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.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14Windows ARM64

pxdct-0.3.5-cp314-cp314-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pxdct-0.3.5-cp314-cp314-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pxdct-0.3.5-cp314-cp314-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pxdct-0.3.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pxdct-0.3.5-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.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pxdct-0.3.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.5-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.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pxdct-0.3.5-cp314-cp314-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

pxdct-0.3.5-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pxdct-0.3.5-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

pxdct-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pxdct-0.3.5-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pxdct-0.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pxdct-0.3.5-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.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pxdct-0.3.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.5-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.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pxdct-0.3.5-cp313-cp313-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

pxdct-0.3.5-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pxdct-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pxdct-0.3.5-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pxdct-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pxdct-0.3.5-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.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pxdct-0.3.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.5-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.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pxdct-0.3.5-cp312-cp312-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pxdct-0.3.5-cp311-cp311-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pxdct-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pxdct-0.3.5-cp311-cp311-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pxdct-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pxdct-0.3.5-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.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pxdct-0.3.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.5-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.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pxdct-0.3.5-cp311-cp311-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pxdct-0.3.5-cp310-cp310-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pxdct-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pxdct-0.3.5-cp310-cp310-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pxdct-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pxdct-0.3.5-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.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pxdct-0.3.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.5-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.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pxdct-0.3.5-cp39-cp39-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pxdct-0.3.5-cp39-cp39-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pxdct-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pxdct-0.3.5-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.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pxdct-0.3.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pxdct-0.3.5-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.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: pxdct-0.3.5.tar.gz
  • Upload date:
  • Size: 445.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5.tar.gz
Algorithm Hash digest
SHA256 56aab0a2eba988dafd33cc142def013274cf5726fb70f62360e42796e8840b52
MD5 011960902396bcb1dd7dc5308f3f24a5
BLAKE2b-256 d0df7ad5469309888382b75f14e5fb05c75ddcd47ac2098ada221186bd17a369

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d744003e760376046c01356309b55d0880a6ba48fb4b2a6bd7609bdc81289406
MD5 23fab2b4e4e889de2b6d7ded4f9b36cc
BLAKE2b-256 dc27801486c8f630da5584c87744398089cab669fb8945fbdb617f52e6881537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 add6160e5006df9baec14bd304c1ae0dc16d372fc0846237b84a7a71836d2245
MD5 a726199be3686cc33fbf4ae40c3d20bc
BLAKE2b-256 dedf3a790b3cf172011a6e7423b1d5479e38c6cf8b98e576ad26502b10d7375c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7d6722e7c189d251deb3842522c2857d03f11ab718997c04dba10535ad4a481
MD5 7759005ffd93502b6cb49a95226da13e
BLAKE2b-256 d3a12f5008567e4067d4c0629e8cb265e61e8633cd3e41c0ac37f55783eea945

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a85542a295a244d7ebe113932b34ad2884a15f4d0912cf2aa39ff6bf6616648c
MD5 34c95c6977dc2958c651c98dee49fda8
BLAKE2b-256 4f58df1c53d4a08963752ffb38a5042aaa28acc4fb45c092e9f6eafd8df1cc9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acff8d2736000115d1d25786c1a36830bf275de01da45562ba2ecd43f0896856
MD5 05b09448ef19ae5d123c4887ba6f4421
BLAKE2b-256 7eee791d3ac9e13dd0104beb740ffc6049fd07d63f1ee3b9aeacabfa70c3ce4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f3eac28ee6dd34de6b1c5e5948283bdd14c88746346d3dd63e7eb80273c7604
MD5 968464f560d4e88626aec27c05627f6a
BLAKE2b-256 0add1bf624fa84145f5de9f9cddd7f718c786168068e0ba5b500a9b7d4dc9bd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98bb7fed2dd53aaf47c5e3342015f29ab9ece8789fcca6b0a5459f11b55d8531
MD5 bc84cfe57d0d057f7f55a496fd1c1031
BLAKE2b-256 93610a78e7099f24e3a961fe6f90aa4b1fa3168f4b776f48ae55286d96b3297a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46678ab4f42f7884b96fce829b8788389aacec703352e75f19b8b01734283e62
MD5 d52af7dd38a7059bac87b6c41e35e0c1
BLAKE2b-256 9feed73083b01d83fe2df8f2113287ec8b99bfa9b10974870e2e9452ccefb44a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46de7c376b5865165b87cbd31ea3dc2df3a181c4d6509438d4620097c9423071
MD5 ff8ea4a19d4d06f73aa460ae3b401d15
BLAKE2b-256 63e05e2d299e9c9b255b4f194825bf9cb68f090303ab2a3679a3a29c794e14f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77f1972082ad3137f34702ee2d8296c1e7e19c7b534ea763ba7e9f3f77bdaebf
MD5 df97ffb0285a5f768ea7cea46165f7c6
BLAKE2b-256 8829ff762524deb3d6c54f01a13121ac9d4cebffa71ba97bd4b28b696b4066ca

See more details on using hashes here.

File details

Details for the file pxdct-0.3.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2230a471b0eee823f1411953732e728fd910d9842b97d114aa71af2040979ed
MD5 402f779e6f014e9a40855178f0ef6333
BLAKE2b-256 e4e1f382d0e4b353046f09c414ed9f6e49884248c956b6b7a7207cad0ecbee04

See more details on using hashes here.

File details

Details for the file pxdct-0.3.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a26a68431c075e7ab6172c212b93f77b4ae00126823b30fad96ff659ae8e0da8
MD5 de876acabae0d9ef267af6869d801bc8
BLAKE2b-256 2d185b910e9753f74415af36b674339e3dc594e3d11bea40ee46dcf493c07f3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46eecae9fa9be11ffdc465881347fa1f208fb38f3354ab0b34489aa0c1085005
MD5 11559bd342b82b5d1ba0104c36b17728
BLAKE2b-256 8bf53181438fc75ccf5cc9d46d75ec57d62edc0900e3d14862548702aa8943c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.15, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 94f380ad9884cdd2663a65a5c35006927dd272f5011f389cee25449d594f21c5
MD5 19f7f46128e4ccc8d6697d6d737f764f
BLAKE2b-256 8aa4f40480e2b2ccccc31535285c110591eff428db2bd169465249f364a62df2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02683fdba83eca9f1c4ad6abc7359f4fc2962d9104ce2306586719fea9c2ea3b
MD5 55f36258ca416a681f284d3773598eef
BLAKE2b-256 c0d24f769421a54e2eebb41a9ca649fb9faca3c16258867435c4ca16aae07691

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2afbe8f73d8ee319d80a2ce3a519e70993b8994d52c7a565e0ed65202b55572
MD5 f5223aed95be834aec3fd762136e6c3b
BLAKE2b-256 b8194625455febaa766fb801b2f0be7040e4d100186264125d35ab50ce9156f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d16bbbf74795bde28021970589e9be533ddf54e592fb69cee4f4b70d7ed9938
MD5 a9f9b9030104d09caa92f762fe54bbf6
BLAKE2b-256 0081fd1fbbe2d858a52bee7f5ba73dc985f872184ae14d1d3dc8d582ac8953e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ddb25da418928f21f1c19615b2093fc1a153450d3aebc3887cbfe086dc0a52f
MD5 dd53a16a006f9af70f8a83d876ec51fe
BLAKE2b-256 40652acc016988091ef3aeb3f475fb17076ecb3478cd37eed9a4506229aa8544

See more details on using hashes here.

File details

Details for the file pxdct-0.3.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc508188adc5d98e561bac8381e93a4bb4b25e0e40869193cd4610d8a8add999
MD5 842c16ab1fdcb20507f15ad464cdb227
BLAKE2b-256 9cae4449db67e38e5beabf59a00b515d2e9b37144fd36b8423085ce7d4668a1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63fa6d53fdb554c9510d5f9754259ef437347f037922d7db56a5d300e9be7f3e
MD5 bd80e333bc3418836cd416eab0c13832
BLAKE2b-256 199480ad865b467f999bd660309474e9d6c5f8f91a617f5d544648280cadc77b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 168987caa1fee593913de76e27e15de2e9c83a9f0739cfaccbf3d57a212412fd
MD5 5c6a8491a7bbbbb6376ae2cd95baca09
BLAKE2b-256 c87b986f31548774bbedc7718dae85abe0e4738fd93ab1968d12f6ff3c52dae7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86edc3ef2658fe776409e6162646ba4d88bd9b0ecd665fe518505b1079967ae3
MD5 00623e7d5010540a5e810752c50e9513
BLAKE2b-256 2127b9b10349049d890d9facab77f8cb409c9fc5d643cab4441bd46a164c964e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce78258d99509083b9f383fbfcc9ec26b601b093cb771ad572fdf4ca8c371ab0
MD5 0ec90bd77b4b37ab24a65e61d74cc117
BLAKE2b-256 eca5c65b795f3434ad79db37eef4ad62fc5e74e99f9005972ea94d4075f5ee12

See more details on using hashes here.

File details

Details for the file pxdct-0.3.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e62b6ed99dfab7c0c51c18db45afc89e6188fadc3231bde81852fade421d7e75
MD5 3c03708c26d1a7dc889de31d8147c11f
BLAKE2b-256 1f76fc96fa61c0469ade075dffeb47d099421f60813d585851ffcafd275e6783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 403948c812d37654d5e316f98b8005af01c59ae1543e508253a965483ffa568a
MD5 27f0da8d2c7ae8b36fc912302e81c812
BLAKE2b-256 b9f4e01f545c9bab4724d8ef1e108678db7eb6ac01583e6a5e91df4e92ac58e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a9efbe6924fc13aa9223ecac0c26d061384afdcd4e1b7f312d2cf546bb7a531
MD5 356d9918502aeb9c6341382635d3aa63
BLAKE2b-256 2b8c1f73264af180cc2f3f3b821220ac124122b750c605f44eb57f5fb458c627

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51ca49a16ff91bc49f549e51b7ff454a3541d18d0e96ce73d7816551e43ebacb
MD5 15bcd78892d5322b040dc8bf7faacbf8
BLAKE2b-256 d609172d4d9e23d8063bf2b026471d0fb1ee902e8f5cfd6c9a3868b2d8923465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fdb52831ea7bf1b019ef8821d090e056b3f6785782460fc2e132bfc00ed46f2
MD5 05f1baa338c32d772695706a6336e8c1
BLAKE2b-256 cbcc38622537eeae15668f520514ef833570462849bbd8cf37d6d95dd69edd8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bfc2bb38cb75ada5a2a4c47143d68c767b4430e39379d33ccc93dd55d7866264
MD5 2fbbb597d290c85fa17a11a1e4a116b4
BLAKE2b-256 547d152bbd1acdc1a2ae945948c2fef75ec0356fadee7b1bcc71bfea292e171e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa837be0569a9877bbffab0f844a5135387a94cb976f882eb27cead61abfefd0
MD5 a2c70ed8efdd70a5e0ed8a146d48c4b3
BLAKE2b-256 0e5bb96ac5ac25aeab51c21d77b128b459d13f1e5a55e20338f689670dc606af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18f2e311a51a76ddb50bab2cc55689fa246c52c7510d81de88178931d3528ef2
MD5 294c807b25f1cd5ea252e3ff7416bb30
BLAKE2b-256 fde54109309f7544813ee16c8f8c5f38d7618d14a7eaaf1725bcf366d056d824

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c08fc69bc23cbe2ea5df80ae2bb232b824abb777560f42f7f52e24731cd2ef82
MD5 256aee64ebf64b58fbdbb6f24e6cfeb9
BLAKE2b-256 03035deeb280feba675d787f91339f4fff35c72c45a3995ec4bb7fcd379c2407

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c82e44720c1d55ed2b5c90a6ee08d8d75def030fa51f7938ea24c28d94719776
MD5 6424efc1893695b0d8edacb572c6ce36
BLAKE2b-256 b7b3f85ca4ac150269878ff54c7000e4b64723c33a4a8f6a1442e8e91d0e0fdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 adc3d103813357c7705ea27392b28ee4d23afa32da3d2b8d7f2fbf6cf10cfa8b
MD5 bbc94cc42a2ebae81ba9897a5dcfd805
BLAKE2b-256 655cbf2b37b9fae50c8e44775d74088c631e53747e386e91c9df2234edef029a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcdb1eecfe6eaa144a1e0dd1083562e3aaa09f011632c44b634e81fa5b496c9d
MD5 010333e97f8137d277a49ca7e0f464a7
BLAKE2b-256 851c6a4f423ad6806cdbcee17784d70e7c003777635fb29640caeb7cbc153b08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74acd933c1893d443180c13377ecb98a941d3e4fa68bacf041be7a2b572ac3a0
MD5 8a8db7d77cd295825451f851a4806b47
BLAKE2b-256 dd96b4cd62a4bb34155bf97d892824cdbca952835df084a055f9757f95ce419e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f8f8e5c080bff7322b38d6e46cc65f52a1dd6ac87367f4f1ec3ebb35ce4f4bb
MD5 ab43d449279e99c9bab1b93c05838a42
BLAKE2b-256 d72c7bcddf512262db681c82082444ea223da591486e25dd0d321476e8743fdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b73c7092e290f0f56efecadfe1dafb3a5ef9baaad29715fab4bfe61c4572c990
MD5 621c54c7164e087f167848ead2e0881a
BLAKE2b-256 2f12ca54851dfa698a149597d265e348e78449b99c664e405f1cc1104f0a8257

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fc389994e7913dacda582529d71871bc8f88f36f75a0e613ea40fb77db32386d
MD5 967b6cdafe903038fe1b8cecd8986d59
BLAKE2b-256 e8925ecba7d687043360527f7c0c76bb30b091cd913a9d28b5ac40a90c1694cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 316361020e35991bbcaad5d4182837922ecdc70a97dec487d0f1e245999ed5ad
MD5 de586da876ff4c1d834b4c5f7c97b6dc
BLAKE2b-256 fb471d1550f4eb8eb6e9ec03b29b0aaba4fb5e9b044a17a93a1ff81930b1944f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 49b571e2ff99a3f0cd781eded4dfb06d97408bb2088887c5a694084820363093
MD5 84545127efb87212b5b5fd08725ba9c9
BLAKE2b-256 8242640f46f98ce0a7cb9d2c7e69407938dc6cf646ee5ef5afcd198d7001811e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9c1327fa2f877d3149b9b983403ba299770e3ff18f9b83c1358fe3f2e43716a
MD5 8b9384d39373a72c19cbc77ce0456e94
BLAKE2b-256 19347777efd272a3aa17942623dc2640987b5cba187fcba56f5d2df917c2a4b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ecc62cd24fadc2b799b4f3617ff70dbf092720a606eaec37bb5657320a171e5
MD5 eaf59498892b5eaf0b5d3a1c993fe30d
BLAKE2b-256 cee077913de707bc73fe1f4b8112855bcf7f39ec046130a247fddf4093ffb46a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea21441792b0fc8b939e86a3a7aa31e703ad420b2a121ec7a9bcd796852c442d
MD5 f07693642934dc34794fb963f315e48d
BLAKE2b-256 a3c72bdf1c5f0575f615d245789af5efdebc5d8136d140f0d79879e3452bdd66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9430b15904dbbaa199fc6bc3f9c0746c3ff10c15f180c8b72bb1d63b7c1cf4b
MD5 a8d874c93692cc451181aff34fd84760
BLAKE2b-256 06c89ad2ccf3b5631907c556ecbc1b8c4ba63902d7ae0ccb585148340e6c27c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e99f07936359e89f5304c10df57ad7edbfffe01932cd473fa23cb641b689c3c
MD5 2bcd2b15e87891896f07ff703af1c528
BLAKE2b-256 5e4958a41e6b84a5599f9d8915bde2b120fb6af097e2f8150ccb0da5ff161ca8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a14c44aaf655887384c50e3fdc18dee8b415d1c13fbb6bcf2dd0fdf28734ff57
MD5 958447ce307fbca675f9ccbb1b962144
BLAKE2b-256 652dc49784830b70ceb3dcd731d27ee34a031d2247c2e9c28a551a5a47f1d035

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2408fb4aab4cb1a97fc919f10fd28bb02ed222359e6c2766dec75236a43d5a5
MD5 6a51421ee0a7cb448ce1ab91f395283a
BLAKE2b-256 b58387b3c07cf9b5a1a6fea54f8264becdadb28478ab4215d43a07c5456a91c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1dd736150a5a247d51247f28c1e716904f1bbb12729658511690beb944df0c2f
MD5 b356cedc92d185a3243589fd93e0ddbb
BLAKE2b-256 f739414836e8fb310da280be42d9872e72689b83789ace598c6acdb67de66968

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a74f83f62e873e4b81fa8b0561e4a76a0cd2188808c5451094100925cb2ab698
MD5 a48ea3b0e0dd601a5a52dec8e03d1821
BLAKE2b-256 c751fc0e05388bccd8d65c6b4fa477e32742c7ca4602c6a57c4a0c84f7c98935

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7414f53576066c0d029c727d073b57511ee9548f2352fdfef04cf86080009078
MD5 e46c78dae7211ba15cdf582c86ee91e2
BLAKE2b-256 2dc4425df9504abba4447ca32cf2cc22e366ae18c52226090c1559a5d4ad19d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b0cd2b44c215557f7f836302f20c8b6d0d0f3a8f52c0c9888cc9af8ef7025ca
MD5 f9491c87a1b7fc446100bed00611f02e
BLAKE2b-256 9016e1f1a81e36d049cc77e9274698081aa9b97dc30c388cb325337a65dc46ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef08f4d295557fe90bc8d52d933a466803ca351f77e41455da883f4994860a49
MD5 d96a083f97d87718c9f5e921a167f29f
BLAKE2b-256 3d538f4118b11f5e3e7a93c64999a02b788f427830e2a280cffa42485722573a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8f2face4536da8a2d5541d87bb2fff68b10d3e554930245fd2b81856893810db
MD5 e049ed7e252eeda7ac08ee5f38dee104
BLAKE2b-256 7e3ffc695d417e70906cabe1f51ecb7f30e7c77ab863d528a3c305bbb3273bbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eca18065aae26550e761a139f4caa4487ef4f075731648ef5d77b2b8d3201223
MD5 157f15858a49a6ec2615dbba5b02aa6f
BLAKE2b-256 f440226b980e215da849418f9a089425530de1d737fb1ddd6e891c3913419957

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae9ead7d75c1d1ed32303f66458bd06a918c04466c1aa8e39a6d376f5104a920
MD5 3ebf3df2fbb16c82c0b092b056537e87
BLAKE2b-256 3275f799499137c94f0cbab4b38a2066100ee2f6c6704c05804b40dbc3e10b9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c25ca278bafa68febd068627493787211a0e72e6c7a467d7cd3ef8065dfa9a78
MD5 d91a9c206a636a19e2e78f6a3fb2bc25
BLAKE2b-256 5eb36dcb3191b1649f0064bf8975559f5ab2b496e70b5ff663a2e45acabd56e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 485faef06d530e8e0c4f2a4cf54e5aeb4b987858a75be1e3aaf56452c7e5f8e9
MD5 8436cea53988caa9cda0bd6a50d267b8
BLAKE2b-256 b863a1b0d3c454c82cb2419d864691a4d143daf6d046f5c54834e401149c9fd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fec2cc154ef38cef536aac1f232190507ef261708c52f1e39a285d12dd381719
MD5 035884c39f04801cd99feac4b22befa9
BLAKE2b-256 3579f31668d4702a3d3f75a882d6d4cff63a7e9d4f1e39cd299d6db83e2c0261

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 155b2ce57ca4569847de21ec2aecb2e8adb10b591e1d5c9ba3af979b209fa08a
MD5 309d66494056a8bbf74e847b506f3724
BLAKE2b-256 b12927da6f3f74f679f8f576cdb35f7af96fa015fe68eac3fe3e4baf66163c23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87cb9a6a81aee142a6782cf69b260a97adfe4332d469a6925879eb2f939a3feb
MD5 5036319d6a64fdad00768e14b90ea4eb
BLAKE2b-256 ffbee291e94b0d1dd5f70deb1fa5357bff4bdea369912276d5955e9fe7d4900e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d13bec7c6d1dd7f77224d79b844f365e397ec617074d7c3696e147f3dd21266a
MD5 d9236f0a19121057653af411b6eebf02
BLAKE2b-256 c4b4c02df23487f15d4c6b3605ca45cccf86ef8fcef53de910640823042695db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e2201a7ffc8b9732b1e61fd672481cdc7c9718323d3353fa2f869b4ab2fcb89
MD5 949a0ce8726506a9e1a6d117dd49001d
BLAKE2b-256 82fb1cdc1fcf61666c5d36dea2bee77215a3c996833662f429b8c13def2d4465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b150e39bbe4ce9f04c674d3f89cfc4ebc3b33fdab3614f5598cfa35e66693cf
MD5 486edaa0e85665a9e4141517ac5660b8
BLAKE2b-256 3050a3bf22254ba0812da00b17b8f42d0e989f5bca7f762f6626d4c62e4c299c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a653cdd9b3322c3f3f16a4648307fc2e29028526d134adb29906b9614febd6be
MD5 e3f92c0d5230e40200e735cc07193d3c
BLAKE2b-256 c9fbf828e6c28849e4ad7719ebe3cfab2b7716b24cabf280b7c00effdb0ca7c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 902230714e363230edcb31ee98e43655010dc8d680aa5e772e026d91e6f0a400
MD5 d33db218fa782f8682c2a461e5f95826
BLAKE2b-256 47badfe89eda54dbf401a7a3af0a739f2d150b170e1a2425c97cd16c4adb5ec8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7747e8f6bfaf82ea27cfb39ccab92e50785d954fbb010472d1a0dd28708413e3
MD5 f80596d3a631596e7ebf379770975b51
BLAKE2b-256 8a86c877ec7e4044146d6f2aac7aa3e6751042b115a38d0249a27e2cb4cb858a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 255a5c8b0d9f5f19624d627ca0f737bee8bc59cffc80a52c00fc8df2d175ecd9
MD5 be6a861234d2630b0519b5e1f2c1ab0b
BLAKE2b-256 3799b5b61b8578c96cd7432caea1da9cf37cfcac1ba5ba2027631bd4d5894dbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9927e13eea229fb569a7ee7bd2305e144f6c77429760da8ec64cb5351e12bb4
MD5 c697b1d5c3ef4395982aa324dfbe704c
BLAKE2b-256 006e2baa8f216a19d133dfcafae242bc05aef5249bea147bd6aaeda2404a045e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95ebdab9af219849f164098dda211d1d479589ed3c7c1de97ebec8fe02d525ad
MD5 b493ca0e7aa47eed9af393485e7d9e77
BLAKE2b-256 f7ccce0f1076267f019f39ed20ff6911728cb3b5fb5ae5d69e9124950877903d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87c2756ef0896d9ecbe202341d273a835ac0998d6ef129c2dd23a4554fea1f78
MD5 5cc5b6b145ae7b3968c65817e876acb8
BLAKE2b-256 d983b5bf071db284771db9a8db1472849e2883947cd54a51078f2f87bd3df585

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e45fd68b214bc57051e798311db0074804f78c5c041dd3706b15b5c60300544e
MD5 d21bb24e80adc6ef2c50a7697267f290
BLAKE2b-256 98bf23179fff83af50bc2938e6fad967a9e371d5465012509e798461e0a96a09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c848f272c755b9178fab3f98bab18a9e4815cbcc013060ee625bece77df6c03f
MD5 b2b60f6455f95cc46b9aab5917f59ee8
BLAKE2b-256 59467ad7df79e2a176fe427fc637ca3a1cf5fbbdb22b9c0b45eb36c82b80c58d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cb5af2229c3df06ddfece511fd25e568538f062c8df391a93dc4770ced36db9
MD5 3b57a70250552c17cbe6240d36cbfbaa
BLAKE2b-256 36d563e3e8b289f81c33df33b2f49e8934c45d037e64338ef7f6c0555f8561b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd4bbcd4a1a03826fd43c0a5b27f18dc11b5ed380ea6a9422ded182872b69462
MD5 ec82088db847003fd11e1946aa75df4e
BLAKE2b-256 3b8547d739175ff73de407df832c84a88af5dc8cff7c2d7852619f2890bc025b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7d670b3c78779b58ab9358a429652a4a6f681381db914cdd7cf55ff65c8da30
MD5 2eea31db37b1c2e819c70c90b6009d5f
BLAKE2b-256 92ad2e63d9a5c8a7ac0ed6eb7ac49c81f8537f6e091075923d29db6acb021597

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d188d19fcf170995998e327962804ed94153ed6de2aac67db9536d6fa6caad41
MD5 f295e5bfb461830ff762880bee1700e8
BLAKE2b-256 244e0ce7f5a5ab7439ab243011e1949f13641411dd4916a5d5eae15adcb278f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c3a377f82cadc9eb24ff9514a21965031677efebdf84e4c82970a0637ce1892
MD5 62b647c4938afc2c0b7fda57e1a174e7
BLAKE2b-256 9109b92380b2be89b0021b925dcc2ce4de04264d90a55028c8cf862c0f6de625

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c95dd0667048c8c8dfd08076498788796cc33df83a065fed2c63c29abd43896
MD5 8d931f682e15afa2a6e54c88fafaef06
BLAKE2b-256 a9992ace3ed15dc53e382068646b524322a4ccef07dca25df35e6bfa07b8bd73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f609f62b99da7dc0beacb39e40acd93d699c00a0eead545bd8b5ba7a2892914
MD5 c21fa8619dcc4f4fb9ac274143c10cff
BLAKE2b-256 019c79dc9e95c81ebee4100ac19e3c8d2fa0954a68d83dfc56613628ddd1240d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8c93cadfaf39a0b1c9e0b92a3e55b6a60b29d6b61c4e21ad0e607effd02a6696
MD5 f67193bf4bddd7b2be758110551e19dc
BLAKE2b-256 ee1dfa9592c7ef4c372f46b5fc92460a435e698dab7c1c8b5607ce132d4b97b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6722a9fd712a7bdfc53e6d6ba8c161a9eed21302390d7d50b1dfa7ff7496dc59
MD5 6e81860f4f8ffbfa3b9d7fece491b019
BLAKE2b-256 b2c796999a89f7b64c847569beb12e125810bea75d922896fee585e4d91ec25c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9428fa7a91b8928a3dadd74f15afc5e2c068e045a2a8c5200fb33fe4b01a3c9
MD5 ce926675f8180b9ea7ce302d011d87f6
BLAKE2b-256 681017f6f0fd42758246fafa5e25e0a1811304988db76732d700a8e2149ec168

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f5943c347573b1fa9fca853a14c9d6f89ca4289f02faacb961ad2e9305b566f
MD5 d7a7c9fa2bedaa2f65a3f2d26b4a0a38
BLAKE2b-256 6801fdf16a2f714a29fd7f7d3151e00141c9dacabdd1205e14166e503bfdf83a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4e62a421c41257b25971067afe88d91c3190f5f664c07bad21a802ac661c56a
MD5 dc8c2122ab3401baceb81b933c0e5773
BLAKE2b-256 948896dd9d3d102146e8109355e0df7abb13373659852bacfca05bf731d1c402

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 465e432c8fa2e20c9e5a68d273ac09b1ac96833ce5a4ba8172b0fe8e4a6d8669
MD5 15c2495084f9b5f594a0032e6fa91a12
BLAKE2b-256 6df2a19692c68a13a22efd7d9386c482b050a70623e14b1ad9a361a6283995e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfd7041eec303c4ed77ffc668f7643037a5854373ffc4b40ee69d5de73ffed53
MD5 aaecdc117f2f8ad926cb32eaadcc219d
BLAKE2b-256 f2678a4314dfe1d20a5102abd5a305403c86c8e3882fede90d2026ab1ade3a32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 433f9e1c12e7de52b32ddf595d14d0330c3edf2ef527d808b85b9be707c5fe08
MD5 25b6ca8adc70cda84f727554d19980e0
BLAKE2b-256 840e39958f622d687eb8080f78aabf3a8f4524a35aa57784f853d800262fad26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67701f7d446c157a93008fdd786ff745c3f90e094df5f7081a0ff9d814344f1e
MD5 5294fc68d24fa82744431f913b41d89b
BLAKE2b-256 dba6035efb0ad4627a58fd72b0c0b945ee183bd85c16d94bdb681942164d4ecb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8edc546eac0bf9ffefeb3c1f99d94b2db3cb452fb07ea01932a5b53b7e122d76
MD5 d4059664129aadad4f5997f69ca4d745
BLAKE2b-256 50387bc7c44bb2c7d8ba426ec6f6ac3606f1e088fadafef3fc3b15c78b73b28f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a7d1e3711ddd6c470daa08572a4f9081d59e005ce691a2da30a8d2acdf67803
MD5 63aa15a55e54c26dc0d5609192545b40
BLAKE2b-256 c32b8411923d61a5db102d35c00a0fdbeb801531f00d913ac04edadab58f95a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4711e5c7f7c5e413ce826b9bf8f5044886607587eb12d3688db792e9434f8a0f
MD5 7418566b30208004948afc24e48b01e5
BLAKE2b-256 1c9a28ded6ead66e9d7eb87633c5440d42e42890881394cb41ef24debfb10798

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21cd1310cf624271941578d3891bce68b23fc6ae4a631675ff5cdbe52ca1b8ac
MD5 c6d657122b277e982938380b4aec4e3b
BLAKE2b-256 01214d3a8c0c754cd30b23362bc8570d7882fb3f3f9c3ed555a97c018eb7a0b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ada9746605530c84fa786a36345a9c1d63a1a9165d6736a5427a1672261ba58d
MD5 ef28c8cdbcc336bd37d20a1beb5943a8
BLAKE2b-256 4f9eb718e9420ace1697ffaa9c0b6ff308e6976d2b85815ae17290ddc005c742

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dfe2b68f68fea46a9f265ec813766226ea5540308a34ae5cbc7577b85a607be
MD5 f23582c4835a35510df7a342d035a01c
BLAKE2b-256 5f4c6c3e4551d397b3c168e52d2060b009148a1a2fe929614d1a14af7b5eba36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 200cf6398b6331517f897cc30c4164c7d80e93bad5029920a207d2a8d78b3b47
MD5 95d8a0a9f7ff90402906c4d84ce69926
BLAKE2b-256 bf8abea7c80921e23e55832e436c7a22806fd97b8f657a25f90ff9b8f3ed115f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0963a5cefbd7ff2970a768e6dd36ed0b9efb021680c1b3f133787e0459bf0a9
MD5 2ab5b3d97f71a4d8a7959c090ebf6459
BLAKE2b-256 ba914a1dbc896b9b2029b0898a218471ddbe729b8906544e444d6276ebf12fea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82c10b5ed8cb810542cdfe014ec161970b8b5298b21b62ad555c3a5dc8a0f7c4
MD5 28803cac345704ff1e407befab4dec07
BLAKE2b-256 f99b48b7f0e35b5e89e6038c400ea1e9a152087d44eef3af86f1ccb55d604f3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0e835ba29414109ef953d929e7e4a52f1146accc335dce84825705d771f6920
MD5 d1ac130d5bd836718b58e9f1eea33ee3
BLAKE2b-256 52aa2ee56cb05c55174800855a2e05e7f0b0d241ea350ba1b920dc5d4952fccb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-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.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 492770d2c0734ead5a0df69beedc140abb0056e15ac255e045fd37c08c1e17f1
MD5 c81c264f842efd61b7ad19ef165cb92e
BLAKE2b-256 fecff78b93d5c8b36f72b76c172dceebdab03721d9dc67209d4e2e0e3d95c88e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pxdct-0.3.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 340820bcb911dff69d6749bc7939dfc942c4232c6ec878870c68f3157461aae1
MD5 a9d144c302c1610dd1d1191d2c80e185
BLAKE2b-256 510356c909b6c05fd02eb6975ee315d988cc298d74fd8a27142db62f2757cf1a

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