Skip to main content

methods for reading and writing GlueX simulated event data

Project description

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

The gluex.hddm_s module is a python wrapper around the c++ library that implements reading and writing of simulated events from the GlueX detector, based on the HDDM event i/o framework. Every hddm_s 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 simulated events contained in the file. All files with valid hddm_s 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_s API, install gluex.hddm_s and type "pydoc gluex.hddm_s". Here is a quickstart example of an analysis tool that reads from hddm_s input files.

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

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

for rec in hddm_s.istream("root://nod25.phys.uconn.edu/Gluex/simulation" +
                          "/simsamples/particle_gun-v5.2.0/particle_gun001_019.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_s-2.3.3.tar.gz (11.5 kB view details)

Uploaded Source

Built Distributions

gluex.hddm_s-2.3.3-pp310-pypy310_pp73-win_amd64.whl (39.4 MB view details)

Uploaded PyPy Windows x86-64

gluex.hddm_s-2.3.3-pp39-pypy39_pp73-win_amd64.whl (39.4 MB view details)

Uploaded PyPy Windows x86-64

gluex.hddm_s-2.3.3-pp38-pypy38_pp73-win_amd64.whl (39.4 MB view details)

Uploaded PyPy Windows x86-64

gluex.hddm_s-2.3.3-cp312-cp312-win_amd64.whl (39.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

gluex.hddm_s-2.3.3-cp312-cp312-win32.whl (36.6 MB view details)

Uploaded CPython 3.12 Windows x86

gluex.hddm_s-2.3.3-cp312-cp312-musllinux_1_1_x86_64.whl (75.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

gluex.hddm_s-2.3.3-cp312-cp312-manylinux_2_28_x86_64.whl (67.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

gluex.hddm_s-2.3.3-cp312-cp312-macosx_11_0_arm64.whl (30.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

gluex.hddm_s-2.3.3-cp312-cp312-macosx_10_9_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

gluex.hddm_s-2.3.3-cp311-cp311-win_amd64.whl (39.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

gluex.hddm_s-2.3.3-cp311-cp311-musllinux_1_1_x86_64.whl (75.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

gluex.hddm_s-2.3.3-cp311-cp311-manylinux_2_28_x86_64.whl (67.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

gluex.hddm_s-2.3.3-cp311-cp311-macosx_11_0_arm64.whl (30.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

gluex.hddm_s-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

gluex.hddm_s-2.3.3-cp310-cp310-win_amd64.whl (39.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

gluex.hddm_s-2.3.3-cp310-cp310-win32.whl (36.6 MB view details)

Uploaded CPython 3.10 Windows x86

gluex.hddm_s-2.3.3-cp310-cp310-musllinux_1_1_x86_64.whl (75.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

gluex.hddm_s-2.3.3-cp310-cp310-manylinux_2_28_x86_64.whl (67.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

gluex.hddm_s-2.3.3-cp310-cp310-macosx_11_0_arm64.whl (30.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

gluex.hddm_s-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

gluex.hddm_s-2.3.3-cp39-cp39-win_amd64.whl (39.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

gluex.hddm_s-2.3.3-cp39-cp39-win32.whl (36.6 MB view details)

Uploaded CPython 3.9 Windows x86

gluex.hddm_s-2.3.3-cp39-cp39-musllinux_1_1_x86_64.whl (75.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

gluex.hddm_s-2.3.3-cp39-cp39-manylinux_2_28_x86_64.whl (67.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

gluex.hddm_s-2.3.3-cp39-cp39-macosx_11_0_arm64.whl (30.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

gluex.hddm_s-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

gluex.hddm_s-2.3.3-cp38-cp38-win_amd64.whl (39.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

gluex.hddm_s-2.3.3-cp38-cp38-win32.whl (36.6 MB view details)

Uploaded CPython 3.8 Windows x86

gluex.hddm_s-2.3.3-cp38-cp38-musllinux_1_1_x86_64.whl (75.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

gluex.hddm_s-2.3.3-cp38-cp38-manylinux_2_28_x86_64.whl (67.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

gluex.hddm_s-2.3.3-cp38-cp38-macosx_11_0_arm64.whl (30.6 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

gluex.hddm_s-2.3.3-cp38-cp38-macosx_10_9_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

gluex.hddm_s-2.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl (74.9 MB view details)

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

gluex.hddm_s-2.3.3-cp37-cp37m-manylinux_2_28_x86_64.whl (67.0 MB view details)

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

gluex.hddm_s-2.3.3-cp37-cp37m-macosx_10_9_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

gluex.hddm_s-2.3.3-cp36-cp36m-musllinux_1_1_x86_64.whl (74.9 MB view details)

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

gluex.hddm_s-2.3.3-cp36-cp36m-manylinux_2_28_x86_64.whl (67.0 MB view details)

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

gluex.hddm_s-2.3.3-cp36-cp36m-macosx_10_9_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for gluex_hddm_s-2.3.3.tar.gz
Algorithm Hash digest
SHA256 8196b8b97341ed53d1989371551dfd22ce40167374dafbb88e3321f27b2572f4
MD5 ca8b9d66a530e256bc32458666802a90
BLAKE2b-256 f11b4ff8695a97529977d848fea29d8927537aa9a2ec9e5c565130aa28e41281

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 94b204281fad563011fce374b861e5fe619d03af4e616e40ae7788760629794c
MD5 72f0d4f28dbdb3387b4bc81517f4ddb1
BLAKE2b-256 d5786e6c1ff42ec15cd2faa26a68972b6de301e558d074d4d9240b23c9b4388c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f91673208fbe1d485e2290f3ffb83e1e64f6a5a363ce73dfc882f1407c2f4f05
MD5 c9db54b3e951e1a070f2ebb6b8f3163e
BLAKE2b-256 98408bfa294d504911c88f7bd584f4bdad7ffb86b8c0e0cbaf81e73651e7027e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9ac08c33113e654303a3f58f0670dd7fea17c452ef5d0a15cd4653309193748a
MD5 04550271fc2bdc8d0108ac9fefd7c3bc
BLAKE2b-256 263345cd5699f2522dacd85677259629fe03f56c6cd5438b19aa148d9f9a8698

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 59177183a31325396c7b762894b89b2f29fd3e533a0bed3607784033df56db5c
MD5 12e29e3c0bf4b45e40b4d54049339dc3
BLAKE2b-256 50352a72e4367554900a6a0f404faa1ca8e18b37f3d53c7154848a387fcba39a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 79eac1ef742ceb9155f308b1f4756ac697cb99768982f99a20e32a9a73afbdd7
MD5 da0b2493fa96bac0bcb88bda6aeb4a6e
BLAKE2b-256 6f113092a5b6a4a6431e466942b8cd227e16dc1067ef8cc10d921a26d1be88ef

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1fb718aa9cc6e20f43fcb350690290302e900ee2a8b5521483c8f1fb6e649f50
MD5 ccc651cf90a9f6e2b026fdacf464006e
BLAKE2b-256 d13e06a327212d1af0dd4a7a2ba3c94da32db34bf89c91a190553056b72594af

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bb8c55e6cb8f58d9f94470387a0f0a6dc08d7ce14e141d44c57f0802f2f18a0
MD5 93753c231f6ceb1d57f901c19d1bdbd4
BLAKE2b-256 31c57bd9c598098d84efdc6df88caf037d05b3105aa3821ad54a9a66de91830d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fa9ab380a873524d2696cfba3ae31d3767a5bb4faa52ef725b4e3e1cba779b4
MD5 dd083c49efe67d3714b671ed89eb5c54
BLAKE2b-256 0dd33529740a92a6a16bedf6524c8e16231793a0105e845681a21eba1ab2eca1

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d34edf51fd247f5752db410e4263011e46a4b9121f80d4dd4e14adffbed9825
MD5 96fc9963bd3b8014956ddef950ca5403
BLAKE2b-256 59bbee9723afcfc6af4c29152e5ce6c70cf1f1d037b5d58f7fe77692b9932e1a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 edb9a2709f7f4802e61469ebcedf4015a2009d35d6e32ad9a12412e16cd4b100
MD5 ca0f2ebd1ddc373025ce7ced05a40949
BLAKE2b-256 27a54082cc025d6d687650afbe696cc01813b410a60cca53593df0038cd67b0d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 15725f7c7e96da0c3a7f42faf559b9b8b8223e9c61f1e9e4b718b4e6486e186e
MD5 d7204f00cd0c131ee99b0891b2af7723
BLAKE2b-256 8a75f51b6fbd1fe05024bf0079884dc726ce2c8801baf96be2894b5173e4470f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2905c4d170a0be2d423c1afee1f163c02a72bcb6ca9f902e0afb4ab5e9a9ec1e
MD5 b41bc25e8d34c28dab798f28c1986e6a
BLAKE2b-256 f4a1c0fe0a75182255f3a7e5ea068c6f4c66b619fd761bbf2cfaf4d8730165a9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ead82760bffe3173391309eb677d1de9d46f6bc3d55e54362dcc4d1451c897a
MD5 08b0204f0b4f994e72ef518ca478e56d
BLAKE2b-256 dcc4976d0f27f6c8c2535f831674a3c835bef27846147a34f046ea93cba96eef

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88d51ed47892013556cd51667187e9d463803c28b8c9bd8ab086d9b24ab20998
MD5 2e985e0f9448bed29aa8cbbeb58a11dc
BLAKE2b-256 eb3bc0e5070eaff6472085bd2f0f931794bd180f198168cca6bc1408e9676c1e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 711b2e35b182de7fb2791ddd8201dcc2d92c3129675784aa91bd183c7edaf75c
MD5 c6e9a38d6af7ac871603e9df0bc866a1
BLAKE2b-256 7488a0c31bd0834bbd43279a0364a8d2fb71ccb0b35f03e93d76248afd8369d9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 32ff14a0fc62dfe831a659ff934857a19e0d6368928c78b9b3ebfae14403835b
MD5 745593ff7dad253f6c4a290ab50a3007
BLAKE2b-256 a0ab0db81fa8a8341422ca58dd6457a6a6c2770b5c3013dd8bdd1d04b7be8e32

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d239c71b74b97bd99b92c91f068a57331047f8991892e27f90520154aa873125
MD5 af98ba630ca5ee0d9bfc8bb9a43aa0c3
BLAKE2b-256 a514181e48383fcbb6d30f8bdd8d3aa3ee0794b2c700073c4738eb830911e3b9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f8205df9a6cba571229629245686b8438589a5eda035caf541b43a20b0b1baf
MD5 3af48d2f24d74d9f7d5279ea3fa87606
BLAKE2b-256 050c7ee594db0d210660e9b6967d96b32c1d13dcc0b7a5d080120dfec3599f08

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f16c5b629ddd734e03f2e720c6b99f9040cefd2a831526da13c44d9c781c452
MD5 ab44c63615b8a9fb1d307238a3b597b9
BLAKE2b-256 07b18ed22b15ac5a7de49af843efd10c8b81aebefc73aa4d937430304d0b438a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 658ce1d6fed9d31ae2c4e2f11f399ab0b2afbc3e2ab4e4f244ffab5aa5375a7a
MD5 42dd91f099cbc3bd74f6db93d0299565
BLAKE2b-256 579b4cae28db4c4c6d01479d111ea532ad114f61b6f768c921f95f2a8f93c455

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c9cc3236e3c25c3e4d02819f218086067a603c994c7f030b0d8497db7a1605f
MD5 644b250e14d81dad024e11389a5ede6a
BLAKE2b-256 b978269b50ee5d0219c2bf3b646125296f701fcf25048fb34c8212bf915b74cf

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1e64c9484c17264e2a5e48a5f1f0a0bef74e409fecb4d020e97635f2cc6dc1ea
MD5 70ccd26920912a16a2068b2ec68a59bc
BLAKE2b-256 570c36f7d4501b12f6f97d9febb8d8414e7e2ea9391062512c1a171d313b2d60

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

  • Download URL: gluex.hddm_s-2.3.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 36.6 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_s-2.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7522b55ad709baf40877ed6fcaf0f787befbc254f9d1645f479623558f5d184e
MD5 688d1599b43e40202f4fed9c20907833
BLAKE2b-256 67644e9adefc33b45f41d6523906836564277f12a68cba99de5b77ef45e2f71c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 14fae2ee944528517d45481cb36d5eee6ee3322910142a73fb303fa647221db4
MD5 b411b70b0eec4ff47dd2c4d6a22db4a8
BLAKE2b-256 713ad15b1fcc9ed49912caecb51cadf9864505c5274c25606e40186008245b89

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8f487f6352b9fe366e2985e1b00019043e8ed28350eab8f2660ea129f758287
MD5 19cf1c995a9cf2f6f5ae3a816ecbd1a3
BLAKE2b-256 5f29be60bdf95601edfd17901f784c5901a60823efd49085be8e4c3a1d8b4171

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf6da2167e047974f9f783340e6a86a2c04cc3a4cf9ddb75dac8aa3cc7ab1bfa
MD5 e424768a5c4fb5a6912e68eeb28870e6
BLAKE2b-256 60725008a3cb323afc03382f2018fd69ac8808b7b600540086f90a63f1560347

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c26707b3a70960d11b1bc8cd99158f16c3645ada430fe8f6bae25553bcc35405
MD5 5f2710e77829d5d124b93801747a16af
BLAKE2b-256 39cf088931f479fa4267f14c6d9636c35228a49672c1d9c2b35f8d9d33699e47

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4b58d5404a10b04abe8f354dc93f2109c31c089e865bc81c2807e6bd131608ea
MD5 2f79996c410219d1f5a8a381aa3e5673
BLAKE2b-256 48668d2e856659f49b4a8051f8a3d5a0d9b09e5312682cb5aaaa3ef4745d5a9b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

  • Download URL: gluex.hddm_s-2.3.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 36.6 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_s-2.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6b9867ed52da8cfdfe85b835b2803360f47b40b534413d0e0e017931be304c6f
MD5 4c9fb3537ccd5ea3b8b02d806136a61d
BLAKE2b-256 629339933c4d1e9bb25417915c0b56c1a0130f3843e511d60eaa641d6507d6bf

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7d5ca1263b8f40073267ddc1450802b5812793b1271996a159e53c7f93cba2d8
MD5 8457418e59b3a45375c46b88d3af20ab
BLAKE2b-256 b6b40551d3b12d2584f71a58c6befb6a749e7e4ec9fec693a47f05322e6e27b8

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b2b204bd62bf69447e92ffe15586ad21f6dfa185f34db904a2348b4280131da
MD5 38adbee2c6fbd6e47529768a6a22dadb
BLAKE2b-256 d3b2e8949188e3782c6476b6b438bcedb848eaa1e86497fc78688aae616df648

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf75840cb651fe369ece6355811c86336896c8abfe08a341f36f8d3842f9b161
MD5 1293fc324114d91cfcde7ae7bd7f26a6
BLAKE2b-256 9ef78e89489087ce8fbd5f96671c8e19a7da84025df3aa659a1517bc710755d0

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5e94ecfba900cc2a612535fd57a8250b176e1cdb3865525100c25e4487ac147
MD5 e7ad5fc185ff91cfc451c3d11f99154d
BLAKE2b-256 93922868e09eeef90c0b607f0cc2cd9f8786894353e0e2d19ff14549f6f1b29f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab2a6000526a4d35ef1d5ab4bdfe32e79cbf6b2fa70ab9c4972c77f4f8131839
MD5 c7f34e196948a0e00a3d78ac7b30942c
BLAKE2b-256 9ac60780bf0b5e37ba574894cf64ae74b23cda5d645b73b03cec08ae762f8292

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f9ebeb27f0e78cccef4eefb33265b7a8c3033e9d4679a136df2f826b4b92384
MD5 5c141b1d51c60aba732d2672413042e0
BLAKE2b-256 b70a9621e81926551e9170240d35f6727dbb97e9b85e6f51a54b500d4f7439a3

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49ebddea04018b34aa9b456a1aa111e0a75f4b29cbd97829210f9626be4c1120
MD5 a8f5f1a45d628a483523f2344e0b6106
BLAKE2b-256 ecac0d48cea9faa5e83dff2454a8e93dcab800bee1eb88541fa60a92cd591d55

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 58da5a35a440c6f0530aa3e66eefc09a31d614cca9fa09448a36b4b91c6d0033
MD5 5ca213504f4f7598bf71c3857cc2cea4
BLAKE2b-256 94de286b1531fbaf981a6d6c63e70e608da97d615e2863adefeeb2b6ae6455b7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 879a25d8a83c5c433991c893b1c9d32e1b9dd4e149526d61efa287e80c49bfe8
MD5 cb0238456b31ae8d777dca3b1bcfbe4c
BLAKE2b-256 b8b739f80350c70a7484bc80653226662795594d9cba5a9cbaea9a53969749ee

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

Attestations:

File details

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

File metadata

File hashes

Hashes for gluex.hddm_s-2.3.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60f70af35688e92d48dcad33cbcc98e4bfbd0b07db4647155f6c86bdafc38e28
MD5 21c59548ebba31ba6affa3464529293c
BLAKE2b-256 158b8f9f914f1ae67361c25c5327bf224b8cfb8f9a481c10348bb7c5db548494

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on rjones30/hddm_s

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