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 Python bindings for fast and unified access to collinear PDFs (CPDFs), TMDs, and QCD coupling calculations. This README covers installation and usage for Python users only.

Installation

Install the package from PyPI:

pip install pdfxtmd

Quick Start

import pdfxtmd

# Create a CPDF factory and CPDF object
cpdf_factory = pdfxtmd.GenericCPDFFactory()
cpdf = cpdf_factory.mkCPDF("CT18NLO", 0)

# Evaluate a single flavor
x = 0.01
mu2 = 100
print("Up quark PDF:", cpdf.pdf(pdfxtmd.PartonFlavor.u, x, mu2))
print("Gluon PDF:", cpdf.pdf(pdfxtmd.PartonFlavor.g, x, mu2))

# Evaluate all flavors at once (output is modified in-place)
all_flavors = [0.0] * 13  # Must be length 13
cpdf.pdf(x, mu2, all_flavors)
print("All flavors (CPDF):", all_flavors)

# Create a TMD factory and TMD object
tmd_factory = pdfxtmd.GenericTMDFactory()
tmd = tmd_factory.mkTMD("PB-LO-HERAI+II-2020-set2", 0)

kt2 = 10
print("Gluon TMD:", tmd.tmd(pdfxtmd.PartonFlavor.g, x, kt2, mu2))
print("Up quark TMD:", tmd.tmd(pdfxtmd.PartonFlavor.u, x, kt2, mu2))

QCD Coupling Example

coupling_factory = pdfxtmd.CouplingFactory()
coupling = coupling_factory.mkCoupling("CT18NLO")
for scale in [10, 100, 1000, 10000]:
    print(f"Alpha_s at mu2={scale}:", coupling.AlphaQCDMu2(scale))

Error Handling

The Python API raises exceptions for invalid input:

try:
    cpdf.pdf(pdfxtmd.PartonFlavor.u, -0.1, mu2)  # Invalid x
except Exception as e:
    print("Expected error for invalid x in CPDF:", e)

try:
    tmd.tmd(pdfxtmd.PartonFlavor.g, x, -5, mu2)  # Invalid kt2
except Exception as e:
    print("Expected error for invalid kt2 in TMD:", e)

try:
    coupling.AlphaQCDMu2(-1)  # Invalid mu2
except Exception as e:
    print("Expected error for invalid mu2 in Coupling:", e)

Enumerating Parton Flavors

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

Full Tutorial

See examples/python_tutorial.ipynb and examples/python_tutorial.py for more details and advanced usage.

License

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

Contact

For questions or contributions, 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-0.3.9-cp313-cp313-win_amd64.whl (221.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pdfxtmd-0.3.9-cp313-cp313-win32.whl (198.3 kB view details)

Uploaded CPython 3.13Windows x86

pdfxtmd-0.3.9-cp312-cp312-win_amd64.whl (221.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pdfxtmd-0.3.9-cp312-cp312-win32.whl (198.2 kB view details)

Uploaded CPython 3.12Windows x86

pdfxtmd-0.3.9-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pdfxtmd-0.3.9-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pdfxtmd-0.3.9-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pdfxtmd-0.3.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (686.8 kB view details)

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

pdfxtmd-0.3.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (726.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pdfxtmd-0.3.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (653.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pdfxtmd-0.3.9-cp312-cp312-macosx_11_0_arm64.whl (256.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pdfxtmd-0.3.9-cp311-cp311-win_amd64.whl (220.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pdfxtmd-0.3.9-cp311-cp311-win32.whl (198.0 kB view details)

Uploaded CPython 3.11Windows x86

pdfxtmd-0.3.9-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pdfxtmd-0.3.9-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pdfxtmd-0.3.9-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pdfxtmd-0.3.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (688.0 kB view details)

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

pdfxtmd-0.3.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (727.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pdfxtmd-0.3.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (655.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pdfxtmd-0.3.9-cp311-cp311-macosx_11_0_arm64.whl (257.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pdfxtmd-0.3.9-cp310-cp310-win_amd64.whl (219.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pdfxtmd-0.3.9-cp310-cp310-win32.whl (197.3 kB view details)

Uploaded CPython 3.10Windows x86

pdfxtmd-0.3.9-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pdfxtmd-0.3.9-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pdfxtmd-0.3.9-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pdfxtmd-0.3.9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (686.4 kB view details)

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

pdfxtmd-0.3.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (725.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pdfxtmd-0.3.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (654.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pdfxtmd-0.3.9-cp310-cp310-macosx_11_0_arm64.whl (255.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pdfxtmd-0.3.9-cp39-cp39-win_amd64.whl (218.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pdfxtmd-0.3.9-cp39-cp39-win32.whl (197.5 kB view details)

Uploaded CPython 3.9Windows x86

pdfxtmd-0.3.9-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pdfxtmd-0.3.9-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pdfxtmd-0.3.9-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pdfxtmd-0.3.9-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (686.8 kB view details)

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

pdfxtmd-0.3.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (726.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pdfxtmd-0.3.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (654.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pdfxtmd-0.3.9-cp39-cp39-macosx_11_0_arm64.whl (255.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pdfxtmd-0.3.9-cp38-cp38-win_amd64.whl (219.8 kB view details)

Uploaded CPython 3.8Windows x86-64

pdfxtmd-0.3.9-cp38-cp38-win32.whl (197.3 kB view details)

Uploaded CPython 3.8Windows x86

pdfxtmd-0.3.9-cp38-cp38-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pdfxtmd-0.3.9-cp38-cp38-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pdfxtmd-0.3.9-cp38-cp38-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pdfxtmd-0.3.9-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (686.0 kB view details)

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

pdfxtmd-0.3.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (725.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pdfxtmd-0.3.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (654.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pdfxtmd-0.3.9-cp38-cp38-macosx_11_0_arm64.whl (255.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pdfxtmd-0.3.9-cp37-cp37m-win_amd64.whl (220.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

pdfxtmd-0.3.9-cp37-cp37m-win32.whl (198.0 kB view details)

Uploaded CPython 3.7mWindows x86

pdfxtmd-0.3.9-cp37-cp37m-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

pdfxtmd-0.3.9-cp37-cp37m-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

pdfxtmd-0.3.9-cp37-cp37m-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

pdfxtmd-0.3.9-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (415.4 kB view details)

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

pdfxtmd-0.3.9-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (499.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

pdfxtmd-0.3.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pdfxtmd-0.3.9-cp36-cp36m-win_amd64.whl (221.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

pdfxtmd-0.3.9-cp36-cp36m-win32.whl (198.3 kB view details)

Uploaded CPython 3.6mWindows x86

pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ i686

pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ ARM64

pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (414.5 kB view details)

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

pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (500.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

Details for the file pdfxtmd-0.3.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pdfxtmd-0.3.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 221.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-0.3.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86c5f2bb47ba363cd997c134690c8fa130f86d236ea4351a240f95f1718ba12b
MD5 2f4a6d39f1438a96b75077173dae5fae
BLAKE2b-256 1979f926d5b7bfdb2cf8f5e3a2307a9f7097f2166a2bca71a56ae9dbcde9fccc

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp313-cp313-win32.whl.

File metadata

  • Download URL: pdfxtmd-0.3.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 198.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-0.3.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fc350f0838bce1cb305e2356d0cf18af63deb50e4f9815ae7476faba7bdf0db0
MD5 3770e2ef51ef3a2a8085628bfbfc9ae0
BLAKE2b-256 b0689a2e5b284dff663897ab49a329595d29210fe7caff7907c9b9832aacd09e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 221.9 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-0.3.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 549a87cdc6f02bf2e31f0e67462afda2615260fda1c530f9037aa273b796aa24
MD5 a2ed1dc07139d2d68cbb155873d0137b
BLAKE2b-256 46cc3f2150e49553065b6ba3ce080f7ae48b27c8d95cae8ea74396dd47224879

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 198.2 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-0.3.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9262b2c74c47bc50daf25b4f0a4aae0bd732a48de8b6527de51a211179302a76
MD5 f50067b8e86c2561dc2aa45509e57f82
BLAKE2b-256 372bf874d345eec3a5ba44110ac66978047b43d1cb63b433bbd08e7680bf1b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 854e09d3ce5081da8a8aafd10c974855a19c28a16d088354df81dd1f2d7ffd04
MD5 6818dbd8d318c34c043fb5982feb1c22
BLAKE2b-256 3f4ca811b16ab6a350cfc58225728582851e3851a3a7a190a60cba300edc8a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b22c84087a940c99b14a67ac02ea43b53655f0caa978ff478fd45b9d08d84ad
MD5 cd26d09282774fb5b95f5d7d3eb8ccf6
BLAKE2b-256 03056affedc188408e3675b4beacdd15b7c9b10a40ba0a17a7ac72cf0cce1164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea54e2725ac4b73848ef5f08c1d3b15643fbb42b57a24f88561caed0663b64e4
MD5 2708ffbef6156e1412cf647059d44596
BLAKE2b-256 99cda687d23bbeddae50731826477ca4fe9ddbb54f90689b591f9254d6e206f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b97128b3124ff46c9e88420f118318a130440df2408ff346698de8312afbb37
MD5 84455ff778f98fe34bb809be5f14e12b
BLAKE2b-256 84f9a68441a42da1638e6c1cfe57686d9fd56ac5ead50cb279e4aaee7078c245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a4508eb73c9f5b13890b800f2674b769a829db2fb60e1e50b2e86db650d69aa5
MD5 3fdfb43b52d3b41095df29afe6750649
BLAKE2b-256 bbdef0ec8e42bd875c68aad4a2b3cb60d861ff45e53af026cb46dc149b54f0dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5341abfb605ead8702de30e10fc67f6e173b1694b76357b7abbf7681c431e546
MD5 871492b3dfbba716c6fa1db66b6505a7
BLAKE2b-256 4b53a67bb3cbfeca0a8100966f3a00fd666176b0de94e665d4dd325849322653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c3d4fa50f7f83e8f4bba4fb0a09e7a4039643adcb3df0d588b944a8019f0a61
MD5 df0dd3dc2c735c8727f793bf88da8cb2
BLAKE2b-256 d8851424fa1f6c0f0dee80121757f3dd674af63772ff8887f090234c1987f05d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 220.7 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-0.3.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fe46b766cf7b36c2119b661c53ce2cf694cf22d1ebf8e1422bf2c55b513a0950
MD5 de95160de79137a553dc0efbdab7a1bf
BLAKE2b-256 22540a8c5cbd31b97cc0d79707f504e3c8ec7756e712459d86114e60825732c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 198.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-0.3.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e8b8fca82aecdd1379eda4d4b27ca3df4b5234808c0a6d46000fd8b487253ab0
MD5 e9edf4d3d6fc4ae6b7f4c89622459140
BLAKE2b-256 b203c52b10e0ec79db2e52c2920ce790dc97969c4eb5b7f728f0f51dca923b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab0bab2508d775b429116762d7206cd73fa9283fb92b5cf55b6b25197b85b39b
MD5 6026ffd5eef871c5bc4fcc051e0b7ab6
BLAKE2b-256 bd1feda3782f1c24e8268010e16f69142486b0b880473a651eeea5b48db51391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b3edbd331b0a64a644beb8c28c472eb6825d7d9233655d4ec19e8e5c6f48d91
MD5 281fdacbb78cd794c5c13abefc57d247
BLAKE2b-256 32bbd4f8ff2266f635289122a38ae7f51687a149fbccc708706ab5d9251d986f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5441adaf2cbc2a1ff6a96c04a9935751a122996eaf2585735fc278fda1489fd1
MD5 50ebac2c0db979b5d1b6aae3bef919b1
BLAKE2b-256 a021fafe58f00462db9b29844f6feb31d829df3b3e0e5dc48e4f0045b8354614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d1a756f406ff2e8f0356295157e2136adde31291f2bea158f0b68eff28f1456
MD5 44760261caf277406287618535fdb974
BLAKE2b-256 0c7449282c4a5249dde899d38fc96f76d2d97edd129e247ef49fa79ba254172b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71582a6568deea1d39c554248a57f4c78b3ee5f67325c77e1688de89fe9e1c0e
MD5 fa3f21ea56095c7e9f3be32c2751c9b9
BLAKE2b-256 c9a94a1755ea12249ecafa7c6b0f4662bf1b4d0ef2fb9cac7f594e25c04b4601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cc89f5f1cf3ebe2a700cc9f97d285ae5d267b9478c6d0bdc629573d56cb30ad
MD5 6daa135f6bb2621aa73bd4a035913ca5
BLAKE2b-256 1062bff454899e0522a0de9b6f5dc821ec665e8f030721e34b707e6d67067860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 870d3e6252efc2263db62d68a6f6812bd7b2fe03a04ca97512700ad32faab501
MD5 c707d182e19c90c71cf4ec701cd66a3c
BLAKE2b-256 7ea48e68454675981595cd70a77489783dc6e51bed2ca8e763aa7d01ae17ffb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 219.9 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-0.3.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e759fafe5e67814fe14b0a96ccd12f82e79136e2d03bd8593025a86e5d4795af
MD5 be1a7cf35096934c0a629be33022d50c
BLAKE2b-256 0d4ada817f0718369b127b040ab8adbeed926190b698125036ea8e6aa11c83ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 197.3 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-0.3.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c86c42da22f941201b68b28f68f8e9b7ada696907a4c683536aee672f452cbf4
MD5 3bae393132f58e823db06bbac8d98643
BLAKE2b-256 ae5a1d1509fbbe918f0a27b53c8083f87beb954ce0d46f8d9a3ecb3ad4106387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2dc08d41ab3bb1130623bdfe8a16934190c7aff70469e9f3e6609743c58abe9
MD5 b519d7f68816bf38cad88c467c5c619f
BLAKE2b-256 e3863c97d365b3a7b2315d076f26b28b2a634a74b8719b4c93de44c5c0c0fa70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56300516a9694ea7a1dcdeb0bcd653db091b4b9da3fbd1db30ecffa0e4b27641
MD5 5be39b73241f51f552bec7d34ab369f6
BLAKE2b-256 b946ae72dfc7feeb29f075b9561d0cc712305006cce9ede91b4738e15d151e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73641e70ae1e447f6fb10e40043a3d3d5ea94a199b3357a3b8ad8cb0a97ca17c
MD5 d627e5e26ddb8110a18e3c901c4e31db
BLAKE2b-256 62f569e4ebc63a984ccaf3642adcadee2ece2860e58fd1ae66cac1d506ad98ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85be8e9e2d525216408a95f5d897fcc2fc0ce5813202cd14ee0c7368977e8190
MD5 b38cd41604a4012afad0a6c546894eca
BLAKE2b-256 2a129acc8cfd4cdb41a7a114749ed214630f60b590b6e55dc7248e00eaf61f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 189b79477619b8ebd5203d534c366754eb35bec85705a0f5ad81cece985aeefe
MD5 b3a72259da059d875ab8f9edf7c5347e
BLAKE2b-256 99d28280bdb2fa4248e73c814b8570a705870f0f08d543ad9b177a0876fa4c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87be673765bcfa6273c23397653076c754b6cc42cb9176d89872c9e5ad6e7109
MD5 002ac8ce0f72a0a45915048a5ed01ca6
BLAKE2b-256 d7fb330ac332b94282afaa277a5b9798594e67dd0abffbebe7456cbd670f79d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8274955ea23afcc1e7479cd2e61a76e944a20cc4006ed0c767ed439bd2501c9
MD5 a8618ece32766f2635db1f26463504da
BLAKE2b-256 2704dd4155609a7732aab488b5371fb7e30ad608a21031061e672e299495a160

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 218.8 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-0.3.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e85d3e1f7567ee28355cf2ad7ee23d5102d5b06119d1f2c7e17349db6d7537ae
MD5 81ae036a05291bc5d08e29509bb7d33f
BLAKE2b-256 6038696f3a3e139c24557421266f8ee93dd3e3b808aaf66361c8af774544df27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 197.5 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-0.3.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 57ddb226abfee8c46cdbab76e1458594a19bc876d29e0b4acd9757985a4a5f80
MD5 297a5b2f9b907d276e5dbd020c0da4ef
BLAKE2b-256 2d6b81d0d8e19709fdc088ad0c80980f64e30f50f8d2321e68f00e31f0f8f10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9f362499d8dbd2fad019a5a4acdd0d28e0b3a72d04bdd2dd082ab87c9d5668b
MD5 7d0cc647bdce8d83f561647fc9f2375a
BLAKE2b-256 ac2ff24a9c5088a37c7f049bd30ae5beb98e3b22d6364f019fffc5aaa248357b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 feeed294b5cad49548df7c7c2f69e2604b1f0bbfbd12ad34382feb899b1b55b0
MD5 f70e46f54d97fdd58f2a6103c330a08f
BLAKE2b-256 9a586aa6e4d0f42eed1b4cfc2146ad003297c85321a712972f1094be78bdeae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd0ad72ab7f1a0153d09fdcd549fb4888112d8a99157dd6f750f6455b47cb18f
MD5 f5b1b646636255099ffe618dffaf9f64
BLAKE2b-256 ab599b799348333148580c7379c982ce612968b3a97889c618584a4c121e2573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ac539f1463a3ac149a557112d16f7792132834855a145f988e9191fda862c90
MD5 d722c8cc4933058f18553cca21f2c12b
BLAKE2b-256 6776b6a9938ef47a94d3befb5e029e98dd76c9cede16f36772bb8698050b9187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 031016258a4ef2fd4548fe8c80d4acb46013c2f494f8e235ddf82ec4ba5e2e31
MD5 7aeec0197b1103516c2a3cb739205a82
BLAKE2b-256 f6c248aade7072c947ed43d10ae61ed190b1a198adfa829b339c2fd594f8911d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c9391f7e5dfe477c7c003e2a12890c447836846f1ae3860b36eca773a159aa4
MD5 7432db27653c663fd1ef78272867a683
BLAKE2b-256 a12feb5ebec6e2924a3d4f81f79a32781612a517f93c234c174b09a9d6e943f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2679d5c5c02ccf066104637ced04ce06adb937f09ec1fa3fbae1080dc859e94
MD5 c6433e0d5f148aa31fd64cf5dfd80338
BLAKE2b-256 882714aafe69fbf5a93945d74cf6277f70730cfdc1701a1176e6dbb0ddbc0dec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 219.8 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-0.3.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eed7d488ec5eb5d17b568af4c08d3ac81294cb34fc1a9eac40ab93bd9652ed9e
MD5 b36c8be8cbebed7b036d45db62a64031
BLAKE2b-256 3e18f78cb83c102f8f202552920c2e4937ae696127d6d88615f4ccb29422e0c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp38-cp38-win32.whl
  • Upload date:
  • Size: 197.3 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-0.3.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 25c60f394e39b4cf10b41bb3ae46fba1e3da57d1aa560eb636f7c0200c8e3d45
MD5 4fd673e3116bf6adbb6fc2a8cd0858a2
BLAKE2b-256 110d36059884d84ed1e654ceffb2916f4328830ec3e4745d03c50cf63bc0c3ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31635d27b31a3cb11ffab465a124f712a54ac98574374d618652df176b276591
MD5 56ae10736948fb157ea7b8caba722e96
BLAKE2b-256 6fce6d0f4e1d1d423ab6ae4571da1de3b8d0ea49f3e1ba3e963e04177043a7c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0451118701bff2df1bd92f2925c6de81ca123b0ec0ce12afc1301877148f2632
MD5 a6819bba0bb96211058c2118b54462ce
BLAKE2b-256 e17cfd5c0818b1ebd85d84747da90bbe98437197fe5b293f14e54f963e5aa210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1efa025b0cdcb89a24c0eda83143ee64b907b8df3b8c85ddfa022f6e50dd7f6
MD5 6fcab88ddcc4b29a2f49eec339b33985
BLAKE2b-256 aea0e30b5d73b40e63f465c61c13b556c4c5ea55d4b322db245e6580e23a2f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e30f22cab895542d15e7e31b4691d0d80f60733d6a455ae350c0f4298eead1e
MD5 7d6ea85b1c672601f934c87d3231cd1f
BLAKE2b-256 f902bc9c865a24b89da63651760789397f27b8daffa1a06d167c02b2ad2f31ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4029ae2c1b6b4de58a351754ec49a749a14197a23407b510ed5baf01c6e83564
MD5 c216e7177a849ffa8001554b01e120c9
BLAKE2b-256 57fda4236b49700d61fa49a6cb7c21b005a49dcc2c4a8d3adda5b854b847854e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3d46f9ece700bb50a48acceb2e618a0132cbad01ab2d2d6a77ba60b3072c3d5
MD5 d0bc86e085b59494d85c280131aa8c22
BLAKE2b-256 1d9a334584c091e36fbdd2ba74532d9635c3a934f5fccfd3b00b7ed3274f3bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d5e08335c07b108a0d29348057d27660e8ebc5e6b2a714cae5ef53f55a78d70
MD5 71bb0e85c1c2fce59ad89ba77844dfa8
BLAKE2b-256 ce9f04e1f738149d055373b94662e51927de2ebd174e76cd9868997908b5ccf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 220.5 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-0.3.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b7797b7e717dd5c183487c411a1d8472136974b744447aa84e2559b6b723e33c
MD5 c52fd55ff1d9f9dc43912f4c6467e6f4
BLAKE2b-256 06ca7a7eec8738ef73226098eaa17ddb6e06c3a4401b8d841ac9fb14523a40d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pdfxtmd-0.3.9-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 198.0 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-0.3.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ddb38410024644d87125daa14057dd770d8076be9ac32d88dbc152a27f1715d6
MD5 231f91820b459a80df2fcad87fd64119
BLAKE2b-256 684fe22c84049ab6ba0594553adba09f38f916e7b31aa404ea9d58d89787079d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80f39049618e4b9771915a682a44df07968c1d089972ef3a2401056f64aca6b8
MD5 c9da27027f315977f0ebd284d1d12879
BLAKE2b-256 5415da5c92b0acfc3cfcda758579912c5aa8e5b78d3523b6f69ce15d8c8d09f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26d110c0b118c0f4484d00b747805503f102af08facf43d0e9733e831880616c
MD5 cb758cbd63a91db940673cc50abd7333
BLAKE2b-256 4499cff0d6461efc46bc16837c01a7502c9a6f8356804550a7216b09debf72f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52b1a0ebba73e22fdd3b21c075e4269245b3db405bf94f6ec353d69e9a55d3e7
MD5 09b9da1f99b9c93b3fa9407fa7098ec1
BLAKE2b-256 d13457d56bfc331e83cb9ee67e8f842cfa7364c9682830ff08b747122c7e7f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9686bfa5ba3d16593a2d946476cc07f4a5b5b534c0aa48493060d8b2fda2ef54
MD5 8a69e72fb39260b9470eb6c4cc1fdcbe
BLAKE2b-256 293048aa5b5943b84755f47a35e42ba180e35605a076894468e6fcad1790f273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62540a156a519619e569f683acfdaf407020fc28a57eb09551392ce1cae68cf0
MD5 6424b47f330f982b11cc9ca54969f5a1
BLAKE2b-256 90ac80d137e5ffa1b8ea777a43d2205bf676e4cd83948c5eafabe20fd6f733c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65aae0232dbe7d74983a0922c9534d9435740c418de864f6fa8103bf416eb3f2
MD5 ce0433d6554e969edb450f524d1ba3f5
BLAKE2b-256 fdae3a60015c12bf8e980425a66b330aca359e29ee857502673672d7158436c4

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pdfxtmd-0.3.9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 221.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-0.3.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5facf7ff39991e51fe3ddeb2766fd52ce44ff061ff97dfcce8ddc8b6315e3cff
MD5 ab566876db2abd34474e271938bba334
BLAKE2b-256 b016b97b665667294356f28b9b4c6577f7386a1e9bf6be403a6e190992bf659e

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pdfxtmd-0.3.9-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 198.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pdfxtmd-0.3.9-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2fae355b43dda19a0ceeab1d80b7e47d1a50e35138608518d5254da6ede35fad
MD5 1c05ee0df56cef11f0f9f4ceab92bc62
BLAKE2b-256 c2b8962b0c4580b5457159a148c664a50cb99a053acdf91d0c47dc5a38ff89ca

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55f078d4b04c1a9aa8dc6d70ce02fb62d0f3a1635e0d8a05b6c9d2c94dafe533
MD5 44a544d3ab088ce7832e15cb8e4bc7a0
BLAKE2b-256 e773052074d8afa88530b6492e2e6662b047e16f99b202a246828629b82718ec

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bd27b6087cdc4b0b2d2795b1b1d4950dc04d6abe910a5ceb096208e772e0ccd
MD5 eddfff7dc9c93a2e9d41257a79de53dd
BLAKE2b-256 73643c51be2483d756f8ce3061588b0f7652f13880c3d9d96ba0e78d1f4950f5

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2619b621ab3b47fdd586245bfa27242e9c152f1d816d30154e289a32eaae1d4a
MD5 2ef211af27a39fbf5afc1997327e25cd
BLAKE2b-256 ad9832d8b56c5261c0e092bb1bd928ad59aea29da257a0e521c9a8475728f203

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 181349267e0878b28e087b3110150c76b794de74e1ffed95d7ff612091e2e299
MD5 263897dc66e46646415e899b3946c706
BLAKE2b-256 d2ea123534a8562b0625a58916d4b959d46c8c05822a31145773c01f4e8b1334

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17c35f9214b53b4ae694b65d30d70258b198a8036ff2df9d4b599aa54ef018d2
MD5 c90c1ad4bb53748d76cf6128c6f871cd
BLAKE2b-256 e9b96aa1079dc2ccbee93840b70e97e7854571b6bddc74ff0f884507cdec307d

See more details on using hashes here.

File details

Details for the file pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pdfxtmd-0.3.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7e781ef029507c7f53e292203d02909030e4f59a1cfa347aed197f87ef995f8
MD5 02dae8cbbf3ee85c709cb8eed6f4f744
BLAKE2b-256 b130758de0c768866d3ffc4d0acd2f04246b9885a355675fa3825bf609e3c944

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