Skip to main content

methods for reading and writing GlueX reconstructed event data

Project description

gluex.hddm_r - i/o library for reading and writing reconstructed events from the GlueX detector

The gluex.hddm_r module is a python wrapper around the c++ library that implements reading and writing of reconstructed events from the GlueX detector, based on the HDDM event i/o framework. Every hddm_r file consists of a plain-text header describing the structure of the event data contained in the file in xml format known as a hddm template. After the header follows compressed binary data describing the sequence of reconstructed events contained in the file. All files with valid hddm_r events share a compatible template indicated by the class="s" attribute in the first line of the file header. All such files should be readable by this module if they are compliant with the HDDM standard. For more details on the standard, see https://github.com/rjones30/HDDM.

For details on the hddm_r API, install gluex.hddm_r and type "pydoc gluex.hddm_r". Here is a quickstart example of an analysis tool that reads from hddm_r input files.

from gluex import hddm_r
for rec in hddm_r.istream("http://nod25.phys.uconn.edu:2880/Gluex/simulation" +
                          "/simsamples/particle_gun-v5.2.0/particle_gun001_019_rest.hddm"):
   for pe in rec.getPhysicsEvents():
      print(f"http streaming reader found run {pe.runNo}, event {pe.eventNo}")

for rec in hddm_r.istream("https://nod25.phys.uconn.edu:2843/Gluex/simulation" +
                          "/simsamples/particle_gun-v5.2.0/particle_gun001_019_rest.hddm"):
   for pe in rec.getPhysicsEvents():
      print(f"https streaming reader found run {pe.runNo}, event {pe.eventNo}")

for rec in hddm_r.istream("root://nod25.phys.uconn.edu/Gluex/simulation" +
                          "/simsamples/particle_gun-v5.2.0/particle_gun001_019_rest.hddm"):
   for pe in rec.getPhysicsEvents():
      print(f"xrootd streaming reader run {pe.runNo}, event {pe.eventNo}")

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

gluex_hddm_r-2.3.3.tar.gz (10.3 kB view details)

Uploaded Source

Built Distributions

gluex.hddm_r-2.3.3-pp310-pypy310_pp73-win_amd64.whl (39.3 MB view details)

Uploaded PyPy Windows x86-64

gluex.hddm_r-2.3.3-pp39-pypy39_pp73-win_amd64.whl (39.2 MB view details)

Uploaded PyPy Windows x86-64

gluex.hddm_r-2.3.3-pp38-pypy38_pp73-win_amd64.whl (39.2 MB view details)

Uploaded PyPy Windows x86-64

gluex.hddm_r-2.3.3-cp312-cp312-win_amd64.whl (39.3 MB view details)

Uploaded CPython 3.12 Windows x86-64

gluex.hddm_r-2.3.3-cp312-cp312-win32.whl (36.5 MB view details)

Uploaded CPython 3.12 Windows x86

gluex.hddm_r-2.3.3-cp312-cp312-musllinux_1_1_x86_64.whl (69.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

gluex.hddm_r-2.3.3-cp312-cp312-manylinux_2_28_x86_64.whl (60.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

gluex.hddm_r-2.3.3-cp312-cp312-macosx_11_0_arm64.whl (30.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

gluex.hddm_r-2.3.3-cp312-cp312-macosx_10_9_x86_64.whl (27.5 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

gluex.hddm_r-2.3.3-cp311-cp311-win_amd64.whl (39.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

gluex.hddm_r-2.3.3-cp311-cp311-win32.whl (36.5 MB view details)

Uploaded CPython 3.11 Windows x86

gluex.hddm_r-2.3.3-cp311-cp311-musllinux_1_1_x86_64.whl (69.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

gluex.hddm_r-2.3.3-cp311-cp311-manylinux_2_28_x86_64.whl (60.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

gluex.hddm_r-2.3.3-cp311-cp311-macosx_11_0_arm64.whl (30.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

gluex.hddm_r-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl (27.5 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

gluex.hddm_r-2.3.3-cp310-cp310-win_amd64.whl (39.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

gluex.hddm_r-2.3.3-cp310-cp310-win32.whl (36.4 MB view details)

Uploaded CPython 3.10 Windows x86

gluex.hddm_r-2.3.3-cp310-cp310-musllinux_1_1_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

gluex.hddm_r-2.3.3-cp310-cp310-manylinux_2_28_x86_64.whl (60.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

gluex.hddm_r-2.3.3-cp310-cp310-macosx_11_0_arm64.whl (30.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

gluex.hddm_r-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl (27.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

gluex.hddm_r-2.3.3-cp39-cp39-win_amd64.whl (39.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

gluex.hddm_r-2.3.3-cp39-cp39-win32.whl (36.5 MB view details)

Uploaded CPython 3.9 Windows x86

gluex.hddm_r-2.3.3-cp39-cp39-musllinux_1_1_x86_64.whl (69.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

gluex.hddm_r-2.3.3-cp39-cp39-manylinux_2_28_x86_64.whl (60.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

gluex.hddm_r-2.3.3-cp39-cp39-macosx_11_0_arm64.whl (30.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

gluex.hddm_r-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl (27.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

gluex.hddm_r-2.3.3-cp38-cp38-win_amd64.whl (39.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

gluex.hddm_r-2.3.3-cp38-cp38-win32.whl (36.5 MB view details)

Uploaded CPython 3.8 Windows x86

gluex.hddm_r-2.3.3-cp38-cp38-musllinux_1_1_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

gluex.hddm_r-2.3.3-cp38-cp38-manylinux_2_28_x86_64.whl (60.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

gluex.hddm_r-2.3.3-cp38-cp38-macosx_11_0_arm64.whl (30.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

gluex.hddm_r-2.3.3-cp38-cp38-macosx_10_9_x86_64.whl (27.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

gluex.hddm_r-2.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

gluex.hddm_r-2.3.3-cp37-cp37m-manylinux_2_28_x86_64.whl (60.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ x86-64

gluex.hddm_r-2.3.3-cp37-cp37m-macosx_10_9_x86_64.whl (27.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

gluex.hddm_r-2.3.3-cp36-cp36m-musllinux_1_1_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

gluex.hddm_r-2.3.3-cp36-cp36m-manylinux_2_28_x86_64.whl (60.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.28+ x86-64

gluex.hddm_r-2.3.3-cp36-cp36m-macosx_10_9_x86_64.whl (27.5 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file gluex_hddm_r-2.3.3.tar.gz.

File metadata

  • Download URL: gluex_hddm_r-2.3.3.tar.gz
  • Upload date:
  • Size: 10.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for gluex_hddm_r-2.3.3.tar.gz
Algorithm Hash digest
SHA256 922beaf9b483ac4b23da99ce4efc6589dd2c839a36aceedc0a61303ad577e27a
MD5 2edd9467404031f98bc0b8e50f74be5f
BLAKE2b-256 7acc575e8011eeeaae3b309dddd1e7a7e86e6e328db48e4d8e699a937da9c8ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex_hddm_r-2.3.3.tar.gz:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d48e56e76586dd1abcef4409a2b1fbd33947600694c1485bb6e81be867ec9eab
MD5 fb77d6008124eb640e79fff143344a6c
BLAKE2b-256 f890a5f944c42bc05e00e904fafbf405bebd7bf73a194ee95d240f082aa5cda0

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 929dd2e20bbd05948058ea779ec6c21b7b968ec9f71241f22980711e1d670d9f
MD5 6c99513854383504302c4dc6a7e50d79
BLAKE2b-256 fa4db8cf176508821a5efd2654acd24abd939b2c35c3f16a8b6fa0878390f1f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1661322f63f68e8d13d6b826fc215821381a85169dd999c5142440e18f042fc0
MD5 ce04dde4b8baa0964abcda1e95abec47
BLAKE2b-256 141648b782eccd03a49d4cc5ddb0920470ce5474bbcaea908acb89c27ee9519f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-pp38-pypy38_pp73-win_amd64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 452eacfcb439c3983fe7b86903f6709d73e3f414e5e4aadd43d0f8f3d872f47a
MD5 858508bb0889ee08420e3c73f9485ab7
BLAKE2b-256 5b905e50586d365e5da9644d7e2a72e74365005f6455d3efafc299c4090d9ba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 867324d76e975c834e5dc01f36eab5708021bbee7a9a2de2e5140d36488e4b3b
MD5 d5f85e6e2cd6ace8a2710cd6e2f7b29a
BLAKE2b-256 c4881cf8628534ad85729da742962cf09f1110c190855f46dce9b3a26b6fb764

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9bf2166a5aa3bd6426e7e333a5adae9da48ddfb804c6631e3dc672e6bba1d098
MD5 06a29a5b71a899ab684ec99c8cba89b6
BLAKE2b-256 00ceee4834987667452a5594575ac38c25f1586efd78be098f7ba706cf0bd5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7174b06aa3f6a6c58d02f041dbb40fc6b48726a6f138e453176bf359c5b05193
MD5 f5db1da8f3481be4315c77115dba635d
BLAKE2b-256 b7a2e28eef1d09270b5bebc3f92f1638b58cbd6d2757165b77e4607da781dcef

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af5e8aea0aa0cc11e96b7fde9617895dd1ef113a4c97b860f0a6232583172a06
MD5 83d68fa2bf9b743fa3f193b074c6e3f8
BLAKE2b-256 1518882c2cdb5d49e38e72e2dff1ef6d3ae98baebb10982357288ef4b8ea4167

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5b719e17ac8fa4cd856867364e113086a090d9e0be5802ba387810bcb3564d8
MD5 3808fc64207874a47e1431abd9f66507
BLAKE2b-256 442d0f95b56845ef84b553a01ec160ee279cb0d274123dd5d95cc5a4b5d9afad

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a5dcef1af49011a80a85c9bb7940f35493d278c765226402c200e63605eba5df
MD5 ec51ab5553fdca0c06af7a38554271bf
BLAKE2b-256 c9463330d8dfe3673d6ec14e040e772614560b582805c18208af19fe93cdfaaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fee2d81fd7fc7d53e566276067cdbb1b9b8f1bf0874cc83e1f04e0b6f73daa98
MD5 d77e27c4863c2909cede4ca1b0e3a2dc
BLAKE2b-256 f3b59bd8b5223739493b0b1cd4294263bf58a8dbe956592c6ddd84f1d85ad5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c0455feb667f080b4206fc09fd73f43ed9b17a55d23dbe7b7eedd6f2a80beafd
MD5 573717c2cbda367c82b867237dd0793e
BLAKE2b-256 b966ed44431e588761c2251870819eb6f173037c65ff90cbc9b4481915e66fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62d267cd9fd3b89d596a490e2c4d38641a28ee73e3289d51f4fcdb5a61f9856b
MD5 290a1e8d7a00f435ae51b918490d6efe
BLAKE2b-256 5031e7b557766c995825a7fdbb646654561a85bbe5b24aeb53a5a5d8bc4bbca8

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c87f476bb0886801997baf3f67f36ce89651dc62894ba02239166fb8b6b90d1
MD5 036a9da8a36e7d834acc608329aa7a61
BLAKE2b-256 e01e99eb7cd8cd21afc218c53eec3b538d13e943dd4fef84c76796636d9e9284

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f19d82eaf3968bd3d34be2f1a465d178631828af1a2c97235bfb145b6d72ece4
MD5 3f917d2d5f9797a4b27bc1b097921676
BLAKE2b-256 29e7c2ee7ef542d72c83fce459eb62b8d62fe45b294cd7703261e37adb24acd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d44121502d98b7970c00a0204bec6c61e8f72727488674bd78305dfb1c31e248
MD5 13658b6e76d072b029371d9b3868aac6
BLAKE2b-256 99132f2441f9616a0a4bb74d381961b28f3f7566769d5e14b83b869680ad4c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a32f150535f136009d839a587afdb7bdb5413a0546e4844f165dabb661334240
MD5 67cf4c8ea58cafc69eeed00ee77b3dd7
BLAKE2b-256 f597fc497852d4e9d81d355c2dfe272b214c011861013b54063d76b58931e611

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fd9ff134a00cd6be68958c5b438eec16e106034601b127cb0fddba1f6b5882cf
MD5 620e9d4a1effa02c0dea919ff45b75ad
BLAKE2b-256 f39f7adb0a24a3e5b6c2d1fee3d6224df84fc6a86d3c7b2259efc62255365cbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 556b57a620a354b9d188e4bd7f1e202ab5b64b7743d1bc43f027b61a0ad878b4
MD5 5c626173569238aa837deb5ab4291ac1
BLAKE2b-256 f624f830317eb73d66f6887fceccd2e1de8b14e78af13c0ea8db4932776b3ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2202481658d56e556add05506f24c96951f2ae0717b0e7173d54d735a0e55453
MD5 81f41615e915dc6623a7f0446d981848
BLAKE2b-256 ea9aecc49d5c17e8a6dc12b20d136e00b9ae85a2b8b561a859898817feb15737

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4edbb27c955eb8db072c97f7d7390f247d10fa7c23903a977b78a931f9ab836
MD5 9f200a371ac113f592f95bb885c1a55c
BLAKE2b-256 d99ca34f765d534cc76f1e81237069459bd1b39cc9d4e6c50ef374b710cc3ae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bebb3ffb2d49729574a4fbe3ef61956fbf2e3f449a3b2e8d2195174dbdb2742d
MD5 8c0ccaef35d3725e84f66beaff986ef2
BLAKE2b-256 1ceb257c34f5801d842cb73935569bf923692942d5c727940f2828b40b52fce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: gluex.hddm_r-2.3.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 36.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for gluex.hddm_r-2.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b792b52f2cd29fabdf0646575256541d56f39421051313574293a3f21550df11
MD5 b33f7dfba12a27b9a50ae59d307ed693
BLAKE2b-256 536f7f2d6558ca1a5c08c8dddc91e3860d21cef921cb7ae622563cc62fe16167

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 69ab4a352636b142a8df693f250e5e7569bbfbb638f392c856f3a88654a5e42c
MD5 c78502e6e8aa7eba77f7d808e94624c7
BLAKE2b-256 3c13d74736437292a95b1df7057bfa5112c8aa6767f5472ce8af02b717561a0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eaa4d6a2953ad3d14c7a38b65fc024533bc2b7efb5a67927d08206fe0dee5fbc
MD5 3295e901581650c00408e1c9c3e3d723
BLAKE2b-256 fd65dd00c02e7eb4fddbebabd88d707b3f329fbba49e937b00529a28bd77891e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 204831661ea59fef9356638bed88b5529dedaec6d5305ebc0ffb09d7edb4994f
MD5 64953fd1e6cf23b3cb831e6a7f31b8ad
BLAKE2b-256 88399351ea15a8840eeabe552969ec6813e0a9a3e3de010bc48528b5bb0153d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f907d9c188108cb42a3a14cd45bbdf157c6fb3afb2f8ee18591199bd9190dbd
MD5 c0acae4e363e6b3ff24216e6f99477cf
BLAKE2b-256 e851192a1912f545973c0ec3df85f14e596ebfbd69dc599693bbd231310f6c4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fabc3d1885e5fefdef344853ec6a485a4a9b14c348b165a5198242d6d844c368
MD5 b56604866b019a2de5a4a7c9df367eba
BLAKE2b-256 ef18355a673dc80d7c221d7db2c1b84726670b8c2fbceb17a86f5b08edc8f88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: gluex.hddm_r-2.3.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 36.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for gluex.hddm_r-2.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5a19e6369c0d432c9d8ad2d1116f36c00a9779a9d2af37ce2f455837aa5e9dad
MD5 070be73781e5de0fbf2196a30e735ae7
BLAKE2b-256 dcec047e71c1181ce65f1a1b64604da32eeffd1a48a2711b7fe5549c82f0a9f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp38-cp38-win32.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cf21374efbd38c454abcbee2fb8b7b8527dff27768495134f686127db4a564a1
MD5 84b73269a022cd88896115319c286b0f
BLAKE2b-256 d955015d3de3e750e286b7978a6ea3d5c553a61d4ca20ba78b74ee9b73a27f53

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a96e7d4064fdf988daffd20aa854f4038f92ea532c020a5093a5870956ccfa0
MD5 515ae1ff306dc20c98e9111b8bd44328
BLAKE2b-256 884794c0e48563b2eafbca06cb9a9cfd096a7c9fc94247b6e5b8b94b39fa77a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp38-cp38-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f68798ac4968fee061276d34836efe86b43be0819c03eda21f514dc52e4ac3dc
MD5 792ae18b7f5bd565b7b9c9cf87eeb719
BLAKE2b-256 772ae2c3d87dae03289c857b336e8678d26cf867bb067c2abafd2dcd447b6d5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf7958db8b2740045b143ebbf4f2b46f874bc78cb04c67d57410b9673f371dd2
MD5 f1eb8af76a5f2a9caad307c211695457
BLAKE2b-256 e766c3f16ad11dafc4b9b45ea008714f584cded38a77c88e58328c890b6d3ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d621eff9a487a34b5fb49f22f0f03595fc36d0866def151d75c075f91ceeccd2
MD5 ee9fcaa5bf478f9d93bcd7b4a03297d2
BLAKE2b-256 a5cefd3c2ba06696dc8bd018287cb6ae2ea18a9f4ad2e3188a5a38ca303be2b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f772cc81504f086ba61510c01bcb4e4362244c2ea6d2ee54cb404808e0ff255
MD5 31266abb6f1b9e81654f39c4d0073f7c
BLAKE2b-256 b3d76bb2c6705c4fb08d7362b9ede5d99eb7d3e0045dffb12e2d5ddc1d6a26d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp37-cp37m-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b277e282584245af5e5bb434b287e66f6555b740800067ec4a074872f86491a4
MD5 53b9996aa21831ce6db081910a1cc108
BLAKE2b-256 b9ecd17ee363dfdf64716f3c93076ac29cb66f6d598f33960c7d80746e497f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 64ed01497bc68a09f6db62743f0a4ca80f1e0f07d3c8e3c4798eb40d9e8b3c66
MD5 50aeb5a8af68fdb64194dab699ddda06
BLAKE2b-256 f5802d95f1a312f22c6956d3ae7586be1de32cb33c028bd1b973810adab67d92

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp36-cp36m-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp36-cp36m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 435e3413c5c23e9f0d9556a8150e7fc06e351e2b10fc1718a35b9cf577d4011f
MD5 15718cfdc0148235577a41be010cf733
BLAKE2b-256 71ebab8c2a4a634801c3ca23d70a0eada194d37140261427e3f36baa78ded688

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp36-cp36m-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

File details

Details for the file gluex.hddm_r-2.3.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gluex.hddm_r-2.3.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06ce625a42fe23dc31602be6337c9db48e43c1c7d7b2bb2e5d8894508156c376
MD5 dd4b38ab8006ba88cf34f014a91d48bf
BLAKE2b-256 5ebc14ad2a7a689ee819d69b01054efb45079c56cb0f0674369a7498165bf680

See more details on using hashes here.

Provenance

The following attestation bundles were made for gluex.hddm_r-2.3.3-cp36-cp36m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on rjones30/hddm_r

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page