Skip to main content

PDFxTMD is a library for parton distribution functions (PDFs) that integrates both collinear PDFs (cPDFs) and transverse momentum-dependent PDFs (TMDs).

Project description

PDFxTMDLib Python API

PDFxTMDLib provides a powerful and easy-to-use Python interface for high-performance Parton Distribution Function (PDF) calculations. It offers unified access to collinear PDFs (cPDFs), Transverse Momentum-Dependent PDFs (TMDs), uncertainty analysis, and QCD coupling calculations.

This guide covers the installation and usage of the Python bindings.


Installation

You can install the package directly from PyPI:

pip install pdfxtmd

High-Level API: PDFSet

The PDFSet interface is the recommended way to work with PDF sets. It handles the entire collection of PDF members (central value and error sets) and provides a simple API for calculating uncertainties and correlations.

1. Collinear PDF (cPDF) Uncertainty

import pdfxtmd

# 1. Initialize a CPDFSet for a given PDF set name
cpdf_set = pdfxtmd.CPDFSet("CT18NLO")
print(f"Loaded CPDF Set: CT18NLO with {len(cpdf_set)} members.")

# 2. Define kinematics
x = 0.01
mu2 = 100

# 3. Get the central value PDF from member 0
central_cpdf = cpdf_set[0]
up_pdf_central = central_cpdf.pdf(pdfxtmd.PartonFlavor.u, x, mu2)
print(f"Central Up Quark PDF: {up_pdf_central:.6f}")

# 4. Calculate the PDF uncertainty (the result is a PDFUncertainty object)
uncertainty = cpdf_set.Uncertainty(pdfxtmd.PartonFlavor.u, x, mu2)
print(f"Uncertainty: central={uncertainty.central:.6f}, +{uncertainty.errplus:.6f}, -{uncertainty.errminus:.6f}")

# 5. Calculate the correlation between two different partons
correlation = cpdf_set.Correlation(
    pdfxtmd.PartonFlavor.u, x, mu2,  # PDF A
    pdfxtmd.PartonFlavor.d, x, mu2   # PDF B
)
print(f"Correlation between u and d quarks: {correlation:.4f}")

2. TMD Uncertainty

The interface for TMDs is analogous. Just use TMDSet and include the transverse momentum kt2.

import pdfxtmd

# 1. Initialize a TMDSet
tmd_set = pdfxtmd.TMDSet("PB-NLO-HERAI+II-2018-set2")
print(f"\nLoaded TMD Set: {tmd_set.info().get_string('SetDesc')} with {len(tmd_set)} members.")

# 2. Define kinematics
x = 0.01
mu2 = 100
kt2 = 10

# 3. Calculate the TMD uncertainty
uncertainty_tmd = tmd_set.Uncertainty(pdfxtmd.PartonFlavor.g, x, kt2, mu2)
print(f"Gluon TMD Uncertainty: central={uncertainty_tmd.central:.6f}, +{uncertainty_tmd.errplus:.6f}, -{uncertainty_tmd.errminus:.6f}")

Low-Level API: Factories

For applications where you only need to evaluate a single PDF member and do not require uncertainty analysis, the factory interface offers a more direct approach.

import pdfxtmd

x = 0.01
mu2 = 100
kt2 = 10

# --- Collinear PDFs (cPDF) using Factory ---
cpdf_factory = pdfxtmd.GenericCPDFFactory()
cpdf = cpdf_factory.mkCPDF("CT18NLO", 0) # Get member 0

# Evaluate a single flavor
up_pdf = cpdf.pdf(pdfxtmd.PartonFlavor.u, x, mu2)
print(f"CPDF (Up Quark) from Factory: {up_pdf:.6f}")

# Evaluate all flavors at once (returns a numpy array)
all_flavors_cpdf = cpdf.pdf(x, mu2)
print(f"All CPDF Flavors from Factory: {all_flavors_cpdf}")


# --- TMDs using Factory ---
tmd_factory = pdfxtmd.GenericTMDFactory()
tmd = tmd_factory.mkTMD("PB-NLO-HERAI+II-2018-set2", 0) # Get member 0

# Evaluate a single flavor
gluon_tmd = tmd.tmd(pdfxtmd.PartonFlavor.g, x, kt2, mu2)
print(f"\nTMD (Gluon) from Factory: {gluon_tmd:.6f}")

# Evaluate all TMD flavors at once (returns a numpy array)
all_flavors_tmd = tmd.tmd(x, kt2, mu2)
print(f"All TMD Flavors from Factory: {all_flavors_tmd}")

QCD Coupling ($\alpha_s$) Calculations

You can calculate the strong coupling constant $\alpha_s$ in two ways.

import pdfxtmd

cpdf_set = pdfxtmd.CPDFSet("CT18NLO")

# Method A: Directly from the PDFSet object (Recommended)
print("--- Method A: From PDFSet ---")
alpha_s_from_set = cpdf_set.alphasQ2(10000)
print(f"Alpha_s at mu2=10000: {alpha_s_from_set:.5f}")


# Method B: Using the low-level CouplingFactory
print("\n--- Method B: From CouplingFactory ---")
coupling_factory = pdfxtmd.CouplingFactory()
coupling = coupling_factory.mkCoupling("CT18NLO")
alpha_s_from_factory = coupling.AlphaQCDMu2(10000)
print(f"Alpha_s at mu2=10000: {alpha_s_from_factory:.5f}")

Complete Example: Plotting PDFs with Uncertainties

This example demonstrates a complete workflow: loading PDF/TMD sets, calculating values and uncertainties over a range of x, and plotting the results using matplotlib.

import pdfxtmd
import numpy as np
import matplotlib.pyplot as plt

# --- Part 1: Collinear PDF (cPDF) ---
cpdf_set = pdfxtmd.CPDFSet("CT18NLO")
print(f"Loaded cPDF set: {cpdf_set.info().get_string('SetDesc')}")

x_values = np.logspace(-4, -1, 100)
mu2 = 1000

# Calculate central values and uncertainties
uncertainties = [cpdf_set.Uncertainty(pdfxtmd.PartonFlavor.g, x, mu2) for x in x_values]
central_pdfs = [u.central for u in uncertainties]
upper_band = [u.central + u.errplus for u in uncertainties]
lower_band = [u.central - u.errminus for u in uncertainties]

# Plot the cPDF
plt.figure(figsize=(10, 6))
plt.plot(x_values, central_pdfs, label='Gluon PDF (CT18NLO)', color='blue')
plt.fill_between(x_values, lower_band, upper_band, color='blue', alpha=0.2, label='68% CL Uncertainty')
plt.xscale('log')
plt.xlabel('$x$')
plt.ylabel('$xg(x, \mu^2)$')
plt.title(f'Gluon PDF with Uncertainty at $\mu^2 = {mu2} \ GeV^2$')
plt.legend()
plt.grid(True, which="both", ls="--")
plt.savefig('gluon_pdf_plot.png')
print("Saved plot to gluon_pdf_plot.png")
plt.close()


# --- Part 2: Transverse Momentum-Dependent PDF (TMD) ---
tmd_set = pdfxtmd.TMDSet("PB-LO-HERAI+II-2020-set2")
print(f"Loaded TMD set: {tmd_set.info().get_string('SetDesc')}")

kt2 = 1

# Calculate central values and uncertainties
tmd_uncertainties = [tmd_set.Uncertainty(pdfxtmd.PartonFlavor.g, x, kt2, mu2) for x in x_values]
central_tmds = [u.central for u in tmd_uncertainties]
tmd_upper_band = [u.central + u.errplus for u in tmd_uncertainties]
tmd_lower_band = [u.central - u.errminus for u in tmd_uncertainties]

# Plot the TMD
plt.figure(figsize=(10, 6))
plt.plot(x_values, central_tmds, label='Gluon TMD (PB-LO-2020)', color='green')
plt.fill_between(x_values, tmd_lower_band, tmd_upper_band, color='green', alpha=0.2, label='68% CL Uncertainty')
plt.xscale('log')
plt.xlabel('$x$')
plt.ylabel('$xg(x, k_t^2, \mu^2)$')
plt.title(f'Gluon TMD with Uncertainty at $k_t^2 = {kt2} \ GeV^2, \mu^2 = {mu2} \ GeV^2$')
plt.legend()
plt.grid(True, which="both", ls="--")
plt.savefig('gluon_tmd_plot.png')
print("Saved plot to gluon_tmd_plot.png")
plt.close()

Additional Information

Error Handling

The API raises a RuntimeError for invalid kinematic inputs.

try:
    cpdf.pdf(pdfxtmd.PartonFlavor.u, -0.1, mu2)  # Invalid x
except RuntimeError as e:
    print(f"Caught expected error for invalid x: {e}")

Enumerating Parton Flavors

You can inspect all available parton flavors and their integer codes.

print("\n--- All PartonFlavor enum values ---")
for name, flavor in pdfxtmd.PartonFlavor.__members__.items():
    print(f"  {name}: {flavor.value}")

Full Code Examples

For more detailed examples, see the full tutorials in the project repository:


License

This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.

Contact

For questions or contributions, please contact raminkord92@gmail.com.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pdfxtmd-1.0.0-cp312-cp312-win_amd64.whl (320.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pdfxtmd-1.0.0-cp312-cp312-win32.whl (291.8 kB view details)

Uploaded CPython 3.12Windows x86

pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pdfxtmd-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pdfxtmd-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pdfxtmd-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pdfxtmd-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (451.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pdfxtmd-1.0.0-cp311-cp311-win_amd64.whl (320.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pdfxtmd-1.0.0-cp311-cp311-win32.whl (291.0 kB view details)

Uploaded CPython 3.11Windows x86

pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pdfxtmd-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pdfxtmd-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pdfxtmd-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pdfxtmd-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (448.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pdfxtmd-1.0.0-cp310-cp310-win_amd64.whl (319.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pdfxtmd-1.0.0-cp310-cp310-win32.whl (290.1 kB view details)

Uploaded CPython 3.10Windows x86

pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pdfxtmd-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pdfxtmd-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pdfxtmd-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pdfxtmd-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (446.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pdfxtmd-1.0.0-cp39-cp39-win_amd64.whl (326.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pdfxtmd-1.0.0-cp39-cp39-win32.whl (290.3 kB view details)

Uploaded CPython 3.9Windows x86

pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pdfxtmd-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pdfxtmd-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pdfxtmd-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pdfxtmd-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (446.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pdfxtmd-1.0.0-cp38-cp38-win_amd64.whl (318.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pdfxtmd-1.0.0-cp38-cp38-win32.whl (290.0 kB view details)

Uploaded CPython 3.8Windows x86

pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pdfxtmd-1.0.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pdfxtmd-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pdfxtmd-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pdfxtmd-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (445.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pdfxtmd-1.0.0-cp37-cp37m-win_amd64.whl (310.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

pdfxtmd-1.0.0-cp37-cp37m-win32.whl (283.2 kB view details)

Uploaded CPython 3.7mWindows x86

pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (603.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (736.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (656.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 320.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4dc0be510b6e4980a15d006195cf6c6d69b38411df96168b641f4575ed1dcda4
MD5 9e6542f38237b36803d4a142269e05d6
BLAKE2b-256 02d8d339b47023a1cd5afe75540298f1751a3d445765021fe1656130b716a3b2

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 291.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8767b1a3035223f15185acd95b4fa534105615d05c75e4417f1089ae06fcca64
MD5 8fef5fa90c261159dcc311aab9f60c26
BLAKE2b-256 e4b4705c497c6b6df405160e21821e9d9c1ab68d6f9df6a801e85b22fa71927e

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e428ed660226429a2297f3909b73b25184e41475f060b28599b3553aedb7bb4
MD5 ed9faf12578cbea0a43b6a42e7578c3d
BLAKE2b-256 769548ec4779de9046b92b94b95336ff2447584181751872b1a018def25e22c2

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bda93011bb71fbd8c545986c2bb10924264f1f4025dc8508af0344c88ca7f420
MD5 e738489df2ca711e241ff06f34e64652
BLAKE2b-256 fe69cd9054aa570eb874424fde5602cf5d1fa6d5dddae1aa70808a27c1b34809

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 189db4e161c5955d6c3755f57f71d1c9d4994479dfb24c4c94c7a1bb3060277d
MD5 b7a749bf7db5e1837a7967ad778c55cf
BLAKE2b-256 124ccfc9c4b90bf6991cff7cec002a363e9f5528b2f102b87e3ce989ead46cf2

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8f383591daab213c1acceba8cb3606ad3d01dee31a5556114263b034e475be7
MD5 614a9e8c32b9b2545239492fed5ef7f3
BLAKE2b-256 8de58afbc4a971355a0a7521d3c75066e2b68f114a1a8a1c901a04ac5097387d

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fdede041480cde4e474f8ec0550defc47a085cf8e381abe04eeff91a3a64024
MD5 a8bfe4cdce021e8e9dc2e54504df5d95
BLAKE2b-256 538e80d276ba2d7a098c0312ae5f5e1b38577ea9d5b9a7337b8494bdbdddd390

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81b085c239a48617c2c3b139cab3dd70ab27a92679d2c2663bd5d699664d4684
MD5 aaa8cd78b91de8be81b8999f1d8ed9ce
BLAKE2b-256 f601dc942c45d287c61cfe2b74391a828dbfbc76bbd26beac00f116e6a3d3f32

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24999bd7301813017f43caffe1db649bcf5d1c6e694b13c884a340ad86ffd6cf
MD5 2fb8f53c365a8d287d43a833e0c03cd9
BLAKE2b-256 d24bac1a2a4666fd0b681ca4bcd9c0b3c754a864e6d46ce82a1469d405c08378

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 320.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4cb53e87f68c7bd2e0f16c7ba12c833dacb51db4b465e9c949bd8b71c80cac9e
MD5 298c56f0d1ccf8d6594082bcdcfec731
BLAKE2b-256 53bd5e113fd34e690e99e6fbe7778ef63538af10ca3d5c028e7a331fb84e4491

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 291.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f69e817e8a88d7fa625b7e4a686bf4843f093fe69e9b5de2c9ab5cc1115a0799
MD5 723d443a37d75df349ab255e128da552
BLAKE2b-256 f7283c8ddf66afa96b6c24cdf19c10d3ade623317ac3dd76580ab71b373ab17f

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 581fc74729c08a8de0b9bfd9ebebf9a0580ebecb148385d02ebb9edfb79995a5
MD5 064805691ec20b088eb000adf2128f61
BLAKE2b-256 5ed284f5a927419247d57c728ad76cc910a8d14d195d54a349763b3c5c938b71

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b2e90dfaeb6a1408007b27c1086dfcf2b0192e827c0268b5438801fd042f778
MD5 5b3950854068b9ae405d4e8a7fb06286
BLAKE2b-256 75498936c3232702a6eb72f5dfb746b6ddf115a125eeb6bce6642fd4a69b239e

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1ba1acd0d0f062665a90d9235e13957f270cc3fb062b926d0d6f3288c1864c7
MD5 422fddd4f3cac6b035f351e29a06d6ea
BLAKE2b-256 4ad59781bfa2f4ef4d31c148534dbff0770c9fbe9f4fcb6ca13509973d9ec790

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37eff8ef3f940d8ba10a82d9e7f0de5e7b7ba6609ace7ce3f910f6e85f56169c
MD5 115887b13c805e38ff1c1febd25f9d39
BLAKE2b-256 ae48b39a7e6c685f5fd0e7eda355cc160b275f96d48104ebef7ba38ffc9108da

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0ef24020383a626c1661c1111b51d068c236e0944bd9a99eb088549f99f78ca
MD5 33f8c50f47cae70bf225f9fb49b1392a
BLAKE2b-256 ab8068d70ae88ba18a6c5900969f17c765c2049b5418c9c23042282e3875c5ca

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 349769d4833a31c5842541e13cadaaf3a7489c570c2b88202d7023899bb6076c
MD5 5fe355e5ce2cb3a9bacc5bac68a909d9
BLAKE2b-256 fc78cae2cfbb27dfcbbcef83a06b3e3afd70dfcae0e62434b845bbed5bd06c73

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2ccec5f399cfbee49e46db87f91f95425a4659a333b439b77f97e5e2ace8a93
MD5 5239487585d242078ffbe47a276b659b
BLAKE2b-256 f77688b72c4cd51134882130a87fe49cec027527ef2706f4cab90e4322d27620

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 319.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c537a2f8914ee657bd4a860aefe2b86f39237faf94c42e3571ccde895ce7b92b
MD5 7963ef5c2af5f27dcba404d466c05cbb
BLAKE2b-256 f89de35fe3f51957b3a7f6a28b47c19df23a01b356579080ee6faad611bfcad2

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 290.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 71de6ebd1595906c7da5eb88733c6dea2024e7b6c33d8ade63caf997747c6c0a
MD5 ce8af76bf19d5c46d27d45a71ef349aa
BLAKE2b-256 287e19a6358f9a34ca7edb49639452ba4b055c67dd82bff5701c0f8767bf46db

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2da892c9b2b02dd8be62da8028db0164ba7acc8213ff2cca7ad44cc8a3f2ff52
MD5 02a82f6cdf86e0af98a934b16a13be9b
BLAKE2b-256 16940887c8ae90288a39eb6520a60f59ee28f918dd49c78902e475ad561a5a5b

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ba9570b037a262ed5f33232095855595f3645dfada754124aff69e33be16b0d
MD5 e0ce55d9ab58438fdd84ba31ca63de53
BLAKE2b-256 026c7c073248e4fa5144991a4ceedd479a5b1b3af187894320a21d164a642712

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 705dc091910d7f1fdb51f36bde6f272fcccef21796770c9629c11d6848803101
MD5 9a67da8463b314f3c27f58504bf7de9a
BLAKE2b-256 dce77948e9bb8ac5e1c531b32f6e142c82665972e121be30290940bc43ebc720

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f03f7b90a213111ddda656bbe2f7118fd33cae8242ce3b6cb259bc68a7dd61ad
MD5 5ff6041682b4dd2c41afc958a00fb52b
BLAKE2b-256 339e8f9291f1317948eb4ce324b1a4574fdda0230f9006dbfd27ae0d8e6319a5

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c28516642dff804b7b02c6ae8dbab06e0cd62d954e91aeb31de84f58016dc689
MD5 d11b64c6dd13ed4d2be66c7ef18654a6
BLAKE2b-256 833b153bd97ecc97bd228d66769b0ec3713b43a31d01820318d55bbf55959818

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 feeee0f01be72b479e3e7e2319dd429818a6a9f4d9b6fece33b19ffa332a80fc
MD5 ccf43d8070e935c3ea4b8ecbb100cd5e
BLAKE2b-256 bc09093c5c21fde7ba72b0f9317d60b5a3d50be70a430e74e027fcd2b5f79e0a

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2462e4eec74b72324252469b60cd3b1e231f3ede6cdd7da2d06981b8dd2585d0
MD5 ddd189064f37660d6daef46fff710b14
BLAKE2b-256 65d48de3b0c79ebc7ac8da4065cf8cca736d9a274d3601b69b95d9b1a9424c25

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 326.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bbdc6715319d624b0924da669b2767d93b3e2db61b84edbd97a48c14018058ff
MD5 1dbfa671a6bda502c3e3567e5aed2cd6
BLAKE2b-256 c0ec28c59b339038c674700b00cbf2a67ec1677885af12802ef03d8eea0989bf

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 290.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2e7ad958d0d2e6abb9f775953bda30c378e3f2858b951047d6ba06488d89f32b
MD5 7dbceb06b8b336a119dc2d70c6d28b51
BLAKE2b-256 dad4181a275d5b7f5ad63feac6ecee56cab990eb4bee5359e990a63fa92423e5

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b1d69312708367c84e83c811494ca62d0c63c524259cbf9f385893fb5a6fe5f
MD5 3ce37ad689874953d82e4a7a650306b7
BLAKE2b-256 827fbb5b5fae2b784d6a7db9d998957749bd394cac91764cece5b6c42481d6af

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11f66bd16dc802a6857d061a94bbc5495d779bc1280ecf344f34ba835bfd7ae7
MD5 922d472747989000072f39bf4d204179
BLAKE2b-256 eafbbb095b1f45f97447571fd1f5406d8fe8b9ef9d438f0ea460b468461bc5f2

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbab74b1afe93db1aeac2c47193076ff8821bb8c7d2251008ca19596e0b5b57d
MD5 abb7508ca9d4a0886fe8b9b2940d9a79
BLAKE2b-256 050a511c91a8caf2736859eca2188a09c841121645206baea3284f9770f6d048

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7683365e9d53278bd41fa65f3cdeb4a8039f17a2455937c277efe252b8689159
MD5 10366e3f86ba948858448fb2b1f2e02b
BLAKE2b-256 797d16358332937424ad1f6ce2f8a0c96452f92707a2674efca565696bad767d

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d5e79e487128e9ee35a5ecaa2dfff24bb161f62fbf04b85233088042d5f41b4
MD5 bdd3dfd6c1bada04372bcdf78839928a
BLAKE2b-256 75666994d3088874689fa0e96f27cbaf622fe55892debac9cf269082d101e4bd

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5eca67563fd036619f428203207264ca07e8b73da8ab5c3fb7a0d5ca97abcc6
MD5 16806534d0788ab6c3008bd6054fd55f
BLAKE2b-256 68ce627b0523f89d01cc07504ca1722e6426b590c7d4b3bf7efac5b7abdf0de0

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73f82d692c854f7e72f462c911527317dc52675a3f233194a8667a540542375b
MD5 e7be3b887656d98c0ff07910828b2647
BLAKE2b-256 03832635389c743eed647074ea4fc52464248f283eb81a5e332b77ee9da79ab8

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 318.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dbd5b5e7c2f16e23e2cd088538636c916f7943173514d15315c2bfca21710903
MD5 26c798303581eafbe548218ba2fc34f8
BLAKE2b-256 d0f63a7c3512a60781482478eb15bbdd878efb859f8fa2f58278b909f93ae918

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 290.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 41fd19c0869a044663ab8bcb7b9ee5684ff62115fda13b0c8f693419b2952334
MD5 0d7c51e5fb97dbf431e1572f0fcc9b7f
BLAKE2b-256 6f2c50c10bfa42b896c122a2d503d19491ba449a9821cbb207cc62adb4a3fa3e

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37af833f31c8305642914dee0a32503ae9b06044c2aae2cc7cc978f401808fc5
MD5 166c7c9b3bb3a41ed70090567039a236
BLAKE2b-256 1917f47a703dd7ee8f50916a2b75930d209e81beb3a3609292b2d526ca43f0a3

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa20eb16eb03fa30e7091c787519c018988738dde53026e63ed8918fcfc55217
MD5 fae991757b216728f5994eb6f05c9072
BLAKE2b-256 2405521656ae99197dd41a7268635b373c828abe55dec63f9a7e2117a7b45497

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c27d6e56da9837cf687752f44eada96130217631be769d90886f89334baa2a6
MD5 209a69871bdfaa814f65b9a636f153d7
BLAKE2b-256 a8b77c78a5f2d86212f9ae0ef3da4cc49c1df9dbcf1f2509eec6101c07d8d3b9

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32fe6f1b79c1e1e22756786583c372c315fe1028712c1979fcd94fdb5321c9d8
MD5 e7914fa33b199c9cd0117d72c73b6baf
BLAKE2b-256 d17f07fca27c0d728dd1835318329e641afbd478639a43a584b5072a6b167cb3

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc25e20237ac7db63e9cae0502cb0aacffd9614ea64b2a27d83c421df34a582e
MD5 a792bd37ea47c82e4a987b56491b36ef
BLAKE2b-256 8c12ca297794125a3ceb2fcc875070948d7328bee3d8f0d17d57a52cf782f76c

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97cbb50f2986aec3a0197abb9ed52275abfd38b6bcca2c57f88394b7f0f03ff6
MD5 9a00e6638d949911cc4ff9b08f87996f
BLAKE2b-256 6b9d48339f93f91e42e39f04deb28b20085756c2231e0644752ac010ddd0f21c

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a716d418c500f3ec4f579a9de04ce589395d5e4e9c0b1451137e0e5fc3f10f6
MD5 4014b261056c7bb36033ca275702c0cc
BLAKE2b-256 4f7a5f11c03324ddb76835b4556576bbb95511ccd038632e086f88e5a9a29de2

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 310.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 22594ad09239ff62aa289b2ea5f23a2f18ff9ec71fac05baf44807c5dcfa2b38
MD5 3f8574013a0431b6ca71c76eda33dafb
BLAKE2b-256 dcbebb72abd816bfbfa14bad1bdc337be1702d782c399e5d3aa330193c12b6e4

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pdfxtmd-1.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 283.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-1.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e6e2f22b9568191093546bffb9c7310166022122c22cfecf9200b201d6591a78
MD5 5565ae0461dd4d44025631aa285878c7
BLAKE2b-256 ae2c1ed9dae6f5f9eeb13270b6fb3a5d57e619a33b29b013ea34943121fafc7e

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9caa97c1586f9b54dfce0b6c7c6933564eaf26f59e570cc01e8ee1a0d63a3e5
MD5 c1bcafcf736c67f1097ca1d9eb883628
BLAKE2b-256 023495af7c71dc11e9553ec32eed9e8576ac053a13002c628e53003bd8039c90

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05f7f3af77ccb5c5b03eee1eebee02a2cc8c2b213f79ecd46eb8fb781463a327
MD5 ab479d2c2eb18a66a54fd6b4eae48fe1
BLAKE2b-256 7eb4f738c6b6d3bd1769d7d3f68511452b660c925631dbfcf716882ece7a57b3

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fd0733079c030b6c63a80750c66baf831af297fcef7019e8feaca7ece3d2bec
MD5 7be40fedf6e7f7725741b842cfe24fe1
BLAKE2b-256 8cedcd508587ec8920b9f75f6e9b33cb89c5f571f7a13c289caa13dca43ece5b

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1331349b179870b03200eaa09b83bb6bce0402de4d499108641a8403d6ba0193
MD5 d252331401459b91d869a5fdf0f67618
BLAKE2b-256 a18e9c7b121fe67f27a3cdacb08e26132e7d043695377b4cfcdc652a121a1ebf

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd4bccf3da280b846a481d3c4e5f19e1ffbc41674ce9df2fa7b3ac4979899731
MD5 e2abea61cb5aa23c3eaabce952a0090d
BLAKE2b-256 936991514a7df22663f386f1ec4597cedb2520a2c3d217d21a36d283ce9c6596

See more details on using hashes here.

File details

Details for the file pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2e1cac03d9a630b4165fff51553339a98891e971f0f3ace277e5c7c8e85296b
MD5 20a2e087c8635062b8a183deeebbce51
BLAKE2b-256 65ee2e4151ad17f730ee35e38714b1a38101c6c974e4e2b1918ad7be5a41b622

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