Skip to main content

Standalone Python module for JUNO

Project description

pyjuno

Pyjuno is a Python package that helps JUNO users analyzing data more easily. The core functionality of pyjuno is its JUNO-specific format data reading.

[!WARNING] This package is still under developing.

Installation

pip install pyjuno

[!TIP] If you are working on IHEP computing nodes (lxlogin server), it is recommended to move ~/.local and ~/.cache to somewhere else, in case of the installation reaches your disk quota in /afs file system.

JUNO format data reading

Basing on Uproot, uproot-custom and awkward-array, pyjuno can read most of JUNO-specific data format without ROOT or junosw environment.

Standalone subevent reading

>>> import uproot
>>> import pyjuno # automatically register JUNO format to uproot
>>> f = uproot.open("rec.root")
>>> calib_pmt = f["Event/CdLpmtCalib/CdLpmtCalibEvt/m_calibPMTCol"].array()
>>> calib_pmt.show()
[[{m_nPE: 0.842, m_pmtId: 269619712, m_firstHitTime: 386, ...}, ..., {...}],
 [{m_nPE: 0.427, m_pmtId: 269500928, m_firstHitTime: 433, ...}, ..., {...}],
 [{m_nPE: 0.751, m_pmtId: 269500928, m_firstHitTime: 385, ...}, ..., {...}],
 [{m_nPE: 1.04, m_pmtId: 269558272, m_firstHitTime: 387, ...}, ..., {...}],
 [{m_nPE: 2.41, m_pmtId: 269500928, m_firstHitTime: 979, ...}, ..., {...}],
 [{m_nPE: 3.9, m_pmtId: 269586944, m_firstHitTime: 899, ...}, ..., {...}],
 [{m_nPE: 1.33, m_pmtId: 269615616, m_firstHitTime: 673, ...}, ..., {...}],
 [{m_nPE: 0.539, m_pmtId: 269496832, m_firstHitTime: 401, ...}, ..., {...}],
 [{m_nPE: 0.478, m_pmtId: 269554176, m_firstHitTime: 377, ...}, ..., {...}],
 [{m_nPE: 0.554, m_pmtId: 269496832, m_firstHitTime: 389, ...}, ..., {...}]]

Assembling all subevents

In JUNO, subevents are not always present in one event. To assemble different subevent tree, a method pyjuno.assemble_event is provided:

>>> import uproot
>>> import pyjuno # automatically register JUNO format to uproot
>>> f = uproot.open("rec.root")
>>> events = pyjuno.assemble_event(f)
>>> events.show()
[{SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...},
 {SimEvt: [{m_tracks: [{...}], ...}], CdLpmtElecTruthEvt: [[...]], ...}]

Reading all data from file at once could consume much memory. You can either read less events by specifying entry_start and entry_stop arguments, or only read necesarry subevents by passing filter_path argument:

# Read a small batch of events
batch_events = pyjuno.assemble_event(f, entry_start=0, entry_stop=10)

# Read CdLpmtTruth and CdSpmtTruth
spec_events = pyjuno.assemble_event(f, filter_path=["/Event/CdLpmtTruth", "/Event/CdSpmtTruth"])
# or
spec_events = pyjuno.assemble_event(f, filter_path="*pmtTruth")

[!NOTE] At present, GenEvent is not supported to be read in Python, since it contains recursive data that awkward-array cannot handle.

[!TIP] For frequently used data, it is more efficient to read it with pyjuno once, then use ak.to_parquet to save it in parquet format and use ak.from_parquet to read it back.

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

pyjuno-0.1.0.tar.gz (531.9 kB view details)

Uploaded Source

Built Distributions

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

pyjuno-0.1.0-cp313-cp313-win_amd64.whl (101.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pyjuno-0.1.0-cp313-cp313-win32.whl (91.2 kB view details)

Uploaded CPython 3.13Windows x86

pyjuno-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyjuno-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (130.0 kB view details)

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

pyjuno-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (94.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyjuno-0.1.0-cp312-cp312-win_amd64.whl (101.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pyjuno-0.1.0-cp312-cp312-win32.whl (91.2 kB view details)

Uploaded CPython 3.12Windows x86

pyjuno-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyjuno-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (130.0 kB view details)

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

pyjuno-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (94.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyjuno-0.1.0-cp311-cp311-win_amd64.whl (99.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pyjuno-0.1.0-cp311-cp311-win32.whl (90.0 kB view details)

Uploaded CPython 3.11Windows x86

pyjuno-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyjuno-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (129.4 kB view details)

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

pyjuno-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (93.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyjuno-0.1.0-cp310-cp310-win_amd64.whl (99.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pyjuno-0.1.0-cp310-cp310-win32.whl (89.3 kB view details)

Uploaded CPython 3.10Windows x86

pyjuno-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyjuno-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (128.1 kB view details)

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

pyjuno-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (92.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyjuno-0.1.0-cp39-cp39-win_amd64.whl (99.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pyjuno-0.1.0-cp39-cp39-win32.whl (89.5 kB view details)

Uploaded CPython 3.9Windows x86

pyjuno-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyjuno-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (128.2 kB view details)

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

pyjuno-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (92.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file pyjuno-0.1.0.tar.gz.

File metadata

  • Download URL: pyjuno-0.1.0.tar.gz
  • Upload date:
  • Size: 531.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0.tar.gz
Algorithm Hash digest
SHA256 66fca4ad837c9bcd5bfc5d6ee23c2ff8bee0089a31df5ca2aff8085b3776162e
MD5 c40c4de646aa464c4a71a4618b728ed4
BLAKE2b-256 4ec9e9543aa1b032306606edd8d2e43f739541b9369d110849e80934ea50c6b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0.tar.gz:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 101.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 da3022c60d60f9b8bc624ca2fa92592984b1c110d4a0cc6b09569147e88ed0c1
MD5 87751f81a6e9fec357959dc349b9dfcb
BLAKE2b-256 656f63f62f1399b1db94981efb9a9729e6d38ad6911fcd32087a92a1071ad72e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 491f1fb8016752a0e508e9cb20a48ca294e1cb4ad106e69ac27cb573968a6d47
MD5 f1517826a0def4fdd622c7b81757998a
BLAKE2b-256 c57807317ae1614cc0ba65de353a2e69c226baa852aa88f7eb593669aea4729e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp313-cp313-win32.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59c1cc5962a6ec29a63967136efa0aabd5af154eebe52b916807cbfa8af2dd18
MD5 ecffda34e0b783a438da0bf89b329723
BLAKE2b-256 69bc4f475ecbce77113b6b1884b8b5cbccec7a1977a903f5211fcbf6abf38144

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a38743c70dbda925868c2f44fea9e2f08586dec07aa50577fd78cb639a73cb14
MD5 9892ee64dc9b59ec8f9b1384a4dfd8bd
BLAKE2b-256 556f89843ee0d09dc8f5dfd55cc5be11e09d4a8356ba1165fa115eb690b4c084

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e388da600cffdd70171d7ad04d61322d91406982cc43d0161b866a303b6ee169
MD5 6326f081e42a1738186add57dfd2b137
BLAKE2b-256 d0b78fb2b0b57e6d50d9f98235059f02e5334148f5cbe242af1271469558d654

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 101.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f9ee1038f4d047b28459876a3a3ebea18bd51c6894e15da81d49ef9f5b3bb00
MD5 c954851b1593397747794feb7837bff8
BLAKE2b-256 8c62d76f7bc1d71a902dfb95679b3c57cc7e7cfbd90824b3c1b9504f56147ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c77a0abfc4508f9565286e15dfbece1c5a467a745e551da096cdea53616571ca
MD5 5582139553335a75b613dbc94edfb18e
BLAKE2b-256 0298d965bc7b1662762807e290237658fb36bf62c716fb9e49551fa097bdd50e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp312-cp312-win32.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9951975020f1c4df47492d6aea333a2c8ad6e7b14350378bf3518cbffda2d67e
MD5 352bfaaec56ecb1995676b5532591e72
BLAKE2b-256 dacdd7e979c55e939cd6bc2124b374774936c3ba150d1b8180e0cb40b7a8d211

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a08b1890e62e82de00e4cfc1ed58d31c7b66118929b50b74a7a46e6769930411
MD5 6951a63215134a89ef976cddd278616c
BLAKE2b-256 44fab0afcd57188e28dd3d99cc14a9938ff741ea07e75cf36e502d23a0380dc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36e579f5801d3aa873e656fa13698ee9e43bf547718f6f3cc2a88b74cacbebc2
MD5 44d4fe07efd51695751c307878ebdf44
BLAKE2b-256 bfc789fe13153608b34b01f72dc09ccb60e028a843d49ed4dc01460ac64c51dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 99.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9838196c7a11730d1a0dab4653a1062bb1aabd6a6a42a93f6176211b2714f11d
MD5 8074bc7dfcc25a93efa402d81b2e5a6f
BLAKE2b-256 bb1166b95ae413fcdcf1bc348c7c855855abb1c1379bfede9ca26edd4ceed4a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 90.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0716241dd825d27239b331d60bbac8c57952cb26a6c04bde6883c0d6495231b0
MD5 5db796cd2ee33509b3b3e7f0cfd53913
BLAKE2b-256 93bc9a372c8d68c35d9d448aca10c354f74761c780f331845806fcaf68bb4082

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp311-cp311-win32.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 580b047cca21bf57529ac81b0993b246cdd52a7ad9d4972c18c2a5dbd33ca4b7
MD5 23e9793e07be6c11ff8cd230edbc1636
BLAKE2b-256 b4b9ff71b63adb6f7ffefd83c552196b73488d2af9fe199b96d5d8c7af17ddae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85ccf5aa5f6e4df76c377531455436f0bce7f2c939c3fe6726de37bf3ed92da5
MD5 b5bc017f37da8da074f999e33cb4019b
BLAKE2b-256 c60eedebcfebcafd0af0a16f608a5665d2458aaad9c831b4d0685789b148bf6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d7a4517f0e8972baf7c8e0dbe34cb2539f71cd3c8f0dc7713c808bc9ade629d
MD5 d1596fa2ef1df8338a6c6392c183fe13
BLAKE2b-256 c6f6720d6091af549592f2984ca12a0df7cff987411a4dbf170169bc39cd7e1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 99.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a09743440599132eeb888822a2261444e196e8e6f80594fc0f60ae752a9a0e54
MD5 74a90c81e008b2f31b82fd9f9709de37
BLAKE2b-256 7940eeab96a757464dad99208af8ef1f2cc6a43c04af4176871b7610246af37c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 89.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a6da8c14cae33d6b92d182e4f95e487a9e07852c6cbe2cdff7a0426eb5562614
MD5 eab79e0f4f90fb0ec7bea108c616e73a
BLAKE2b-256 d376b4c8115e4e007b0d9aa353ef03e04afe3ce6446bd3396d874af5ff74b31f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp310-cp310-win32.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f5b92ad145c8da40e533f020f8826c227a7cc279bd817f577bc866c29efa105
MD5 88c6e5a06aaf6642c10cb5b005f81cbc
BLAKE2b-256 04d78eceb4ee7530bf60980c252e296b28f3bedc3ae0e826ef6dda918109d90f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13261db945187478a7d370ec51bd3b627a49d741eedf7eae497d913dbcfe9716
MD5 b76cfda4b8b442e583aaf70d7d7e77c2
BLAKE2b-256 83250c2ecf84ae3cc04a212ed81f4a6e5d908b2b912becdfe88a23f3171b6099

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3028501dd2450a4398ab2379153e818b0716df541a1f5c4a0092add3b6bb584
MD5 1e3061b1525d261755f9df82d9e1c6fc
BLAKE2b-256 3033a6913a9b3f64cbeb3f132588e47bffa6d2d02872c2b966bfed6d76105404

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 99.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 051f7726fa34efd937d5445b50aa718554c2182e3191dd6d728832b6ca98d73d
MD5 d5cba8b062fe977fdcc049c592b8cc65
BLAKE2b-256 e9911c122bb8cc46460eb82b4948ed197ac70807b8766cdfb574d9236961b6d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyjuno-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 89.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyjuno-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 290d3c9df7a4db676e84952d3741eb616f23671f71d3c7e514fc84c2a7128590
MD5 af120d6e13eb8c4190d00ab32ab04d26
BLAKE2b-256 69c4ec2e57181b231be7da3ba9f3b3bd0175d9c8ec4ae5dfbc68d7e67396bd64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp39-cp39-win32.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9be05856281e21ebc434c16d61b27f29e5f8897a3e7c74e4231cd02617fd43ea
MD5 c262a7fa56f9ca8f782f07b104265014
BLAKE2b-256 1222a278cc051a39786adb6c2b15ddc9e75a360227e5afc61b4d268b26c395bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5244f4794cfcddc9bda8f9f9fe72c1f62e71af3ab81d1e727bc2c7c9b4f33fd
MD5 ea44e90fb507d08c6817f7135a074a69
BLAKE2b-256 731bd54df343e367c6ea561fda16268edd6c43d3edf0aab156f28e7530ae3035

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjuno-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjuno-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45377c948f6fd626b828859a4914016e03bd449dcb07aa8542b4568e0f64f968
MD5 67a21c747cae5d27a037f0789c8fb38d
BLAKE2b-256 677c1fb56e0d030ea2a7f1bf5f77b806599ada09d83614c4c454e77e9fe4948d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjuno-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/pyjuno

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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