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
~/.localand~/.cacheto somewhere else, in case of the installation reaches your disk quota in/afsfile 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,
GenEventis 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_parquetto save it inparquetformat and useak.from_parquetto read it back.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66fca4ad837c9bcd5bfc5d6ee23c2ff8bee0089a31df5ca2aff8085b3776162e
|
|
| MD5 |
c40c4de646aa464c4a71a4618b728ed4
|
|
| BLAKE2b-256 |
4ec9e9543aa1b032306606edd8d2e43f739541b9369d110849e80934ea50c6b7
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0.tar.gz:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0.tar.gz -
Subject digest:
66fca4ad837c9bcd5bfc5d6ee23c2ff8bee0089a31df5ca2aff8085b3776162e - Sigstore transparency entry: 1244149677
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da3022c60d60f9b8bc624ca2fa92592984b1c110d4a0cc6b09569147e88ed0c1
|
|
| MD5 |
87751f81a6e9fec357959dc349b9dfcb
|
|
| BLAKE2b-256 |
656f63f62f1399b1db94981efb9a9729e6d38ad6911fcd32087a92a1071ad72e
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
da3022c60d60f9b8bc624ca2fa92592984b1c110d4a0cc6b09569147e88ed0c1 - Sigstore transparency entry: 1244149728
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
491f1fb8016752a0e508e9cb20a48ca294e1cb4ad106e69ac27cb573968a6d47
|
|
| MD5 |
f1517826a0def4fdd622c7b81757998a
|
|
| BLAKE2b-256 |
c57807317ae1614cc0ba65de353a2e69c226baa852aa88f7eb593669aea4729e
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp313-cp313-win32.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp313-cp313-win32.whl -
Subject digest:
491f1fb8016752a0e508e9cb20a48ca294e1cb4ad106e69ac27cb573968a6d47 - Sigstore transparency entry: 1244149694
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59c1cc5962a6ec29a63967136efa0aabd5af154eebe52b916807cbfa8af2dd18
|
|
| MD5 |
ecffda34e0b783a438da0bf89b329723
|
|
| BLAKE2b-256 |
69bc4f475ecbce77113b6b1884b8b5cbccec7a1977a903f5211fcbf6abf38144
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
59c1cc5962a6ec29a63967136efa0aabd5af154eebe52b916807cbfa8af2dd18 - Sigstore transparency entry: 1244149724
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
- Download URL: pyjuno-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 130.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a38743c70dbda925868c2f44fea9e2f08586dec07aa50577fd78cb639a73cb14
|
|
| MD5 |
9892ee64dc9b59ec8f9b1384a4dfd8bd
|
|
| BLAKE2b-256 |
556f89843ee0d09dc8f5dfd55cc5be11e09d4a8356ba1165fa115eb690b4c084
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a38743c70dbda925868c2f44fea9e2f08586dec07aa50577fd78cb639a73cb14 - Sigstore transparency entry: 1244149721
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 94.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e388da600cffdd70171d7ad04d61322d91406982cc43d0161b866a303b6ee169
|
|
| MD5 |
6326f081e42a1738186add57dfd2b137
|
|
| BLAKE2b-256 |
d0b78fb2b0b57e6d50d9f98235059f02e5334148f5cbe242af1271469558d654
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
e388da600cffdd70171d7ad04d61322d91406982cc43d0161b866a303b6ee169 - Sigstore transparency entry: 1244149734
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f9ee1038f4d047b28459876a3a3ebea18bd51c6894e15da81d49ef9f5b3bb00
|
|
| MD5 |
c954851b1593397747794feb7837bff8
|
|
| BLAKE2b-256 |
8c62d76f7bc1d71a902dfb95679b3c57cc7e7cfbd90824b3c1b9504f56147ae6
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
4f9ee1038f4d047b28459876a3a3ebea18bd51c6894e15da81d49ef9f5b3bb00 - Sigstore transparency entry: 1244149692
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c77a0abfc4508f9565286e15dfbece1c5a467a745e551da096cdea53616571ca
|
|
| MD5 |
5582139553335a75b613dbc94edfb18e
|
|
| BLAKE2b-256 |
0298d965bc7b1662762807e290237658fb36bf62c716fb9e49551fa097bdd50e
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp312-cp312-win32.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp312-cp312-win32.whl -
Subject digest:
c77a0abfc4508f9565286e15dfbece1c5a467a745e551da096cdea53616571ca - Sigstore transparency entry: 1244149787
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9951975020f1c4df47492d6aea333a2c8ad6e7b14350378bf3518cbffda2d67e
|
|
| MD5 |
352bfaaec56ecb1995676b5532591e72
|
|
| BLAKE2b-256 |
dacdd7e979c55e939cd6bc2124b374774936c3ba150d1b8180e0cb40b7a8d211
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
9951975020f1c4df47492d6aea333a2c8ad6e7b14350378bf3518cbffda2d67e - Sigstore transparency entry: 1244149737
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
- Download URL: pyjuno-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 130.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a08b1890e62e82de00e4cfc1ed58d31c7b66118929b50b74a7a46e6769930411
|
|
| MD5 |
6951a63215134a89ef976cddd278616c
|
|
| BLAKE2b-256 |
44fab0afcd57188e28dd3d99cc14a9938ff741ea07e75cf36e502d23a0380dc7
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a08b1890e62e82de00e4cfc1ed58d31c7b66118929b50b74a7a46e6769930411 - Sigstore transparency entry: 1244149786
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 94.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36e579f5801d3aa873e656fa13698ee9e43bf547718f6f3cc2a88b74cacbebc2
|
|
| MD5 |
44d4fe07efd51695751c307878ebdf44
|
|
| BLAKE2b-256 |
bfc789fe13153608b34b01f72dc09ccb60e028a843d49ed4dc01460ac64c51dc
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
36e579f5801d3aa873e656fa13698ee9e43bf547718f6f3cc2a88b74cacbebc2 - Sigstore transparency entry: 1244149706
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9838196c7a11730d1a0dab4653a1062bb1aabd6a6a42a93f6176211b2714f11d
|
|
| MD5 |
8074bc7dfcc25a93efa402d81b2e5a6f
|
|
| BLAKE2b-256 |
bb1166b95ae413fcdcf1bc348c7c855855abb1c1379bfede9ca26edd4ceed4a3
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
9838196c7a11730d1a0dab4653a1062bb1aabd6a6a42a93f6176211b2714f11d - Sigstore transparency entry: 1244149758
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0716241dd825d27239b331d60bbac8c57952cb26a6c04bde6883c0d6495231b0
|
|
| MD5 |
5db796cd2ee33509b3b3e7f0cfd53913
|
|
| BLAKE2b-256 |
93bc9a372c8d68c35d9d448aca10c354f74761c780f331845806fcaf68bb4082
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp311-cp311-win32.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp311-cp311-win32.whl -
Subject digest:
0716241dd825d27239b331d60bbac8c57952cb26a6c04bde6883c0d6495231b0 - Sigstore transparency entry: 1244149763
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
580b047cca21bf57529ac81b0993b246cdd52a7ad9d4972c18c2a5dbd33ca4b7
|
|
| MD5 |
23e9793e07be6c11ff8cd230edbc1636
|
|
| BLAKE2b-256 |
b4b9ff71b63adb6f7ffefd83c552196b73488d2af9fe199b96d5d8c7af17ddae
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
580b047cca21bf57529ac81b0993b246cdd52a7ad9d4972c18c2a5dbd33ca4b7 - Sigstore transparency entry: 1244149681
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
- Download URL: pyjuno-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 129.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85ccf5aa5f6e4df76c377531455436f0bce7f2c939c3fe6726de37bf3ed92da5
|
|
| MD5 |
b5bc017f37da8da074f999e33cb4019b
|
|
| BLAKE2b-256 |
c60eedebcfebcafd0af0a16f608a5665d2458aaad9c831b4d0685789b148bf6d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
85ccf5aa5f6e4df76c377531455436f0bce7f2c939c3fe6726de37bf3ed92da5 - Sigstore transparency entry: 1244149761
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 93.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d7a4517f0e8972baf7c8e0dbe34cb2539f71cd3c8f0dc7713c808bc9ade629d
|
|
| MD5 |
d1596fa2ef1df8338a6c6392c183fe13
|
|
| BLAKE2b-256 |
c6f6720d6091af549592f2984ca12a0df7cff987411a4dbf170169bc39cd7e1a
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
0d7a4517f0e8972baf7c8e0dbe34cb2539f71cd3c8f0dc7713c808bc9ade629d - Sigstore transparency entry: 1244149768
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a09743440599132eeb888822a2261444e196e8e6f80594fc0f60ae752a9a0e54
|
|
| MD5 |
74a90c81e008b2f31b82fd9f9709de37
|
|
| BLAKE2b-256 |
7940eeab96a757464dad99208af8ef1f2cc6a43c04af4176871b7610246af37c
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
a09743440599132eeb888822a2261444e196e8e6f80594fc0f60ae752a9a0e54 - Sigstore transparency entry: 1244149752
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6da8c14cae33d6b92d182e4f95e487a9e07852c6cbe2cdff7a0426eb5562614
|
|
| MD5 |
eab79e0f4f90fb0ec7bea108c616e73a
|
|
| BLAKE2b-256 |
d376b4c8115e4e007b0d9aa353ef03e04afe3ce6446bd3396d874af5ff74b31f
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp310-cp310-win32.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp310-cp310-win32.whl -
Subject digest:
a6da8c14cae33d6b92d182e4f95e487a9e07852c6cbe2cdff7a0426eb5562614 - Sigstore transparency entry: 1244149713
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f5b92ad145c8da40e533f020f8826c227a7cc279bd817f577bc866c29efa105
|
|
| MD5 |
88c6e5a06aaf6642c10cb5b005f81cbc
|
|
| BLAKE2b-256 |
04d78eceb4ee7530bf60980c252e296b28f3bedc3ae0e826ef6dda918109d90f
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
7f5b92ad145c8da40e533f020f8826c227a7cc279bd817f577bc866c29efa105 - Sigstore transparency entry: 1244149772
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
- Download URL: pyjuno-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 128.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13261db945187478a7d370ec51bd3b627a49d741eedf7eae497d913dbcfe9716
|
|
| MD5 |
b76cfda4b8b442e583aaf70d7d7e77c2
|
|
| BLAKE2b-256 |
83250c2ecf84ae3cc04a212ed81f4a6e5d908b2b912becdfe88a23f3171b6099
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
13261db945187478a7d370ec51bd3b627a49d741eedf7eae497d913dbcfe9716 - Sigstore transparency entry: 1244149688
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 92.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3028501dd2450a4398ab2379153e818b0716df541a1f5c4a0092add3b6bb584
|
|
| MD5 |
1e3061b1525d261755f9df82d9e1c6fc
|
|
| BLAKE2b-256 |
3033a6913a9b3f64cbeb3f132588e47bffa6d2d02872c2b966bfed6d76105404
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
f3028501dd2450a4398ab2379153e818b0716df541a1f5c4a0092add3b6bb584 - Sigstore transparency entry: 1244149742
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
051f7726fa34efd937d5445b50aa718554c2182e3191dd6d728832b6ca98d73d
|
|
| MD5 |
d5cba8b062fe977fdcc049c592b8cc65
|
|
| BLAKE2b-256 |
e9911c122bb8cc46460eb82b4948ed197ac70807b8766cdfb574d9236961b6d7
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp39-cp39-win_amd64.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp39-cp39-win_amd64.whl -
Subject digest:
051f7726fa34efd937d5445b50aa718554c2182e3191dd6d728832b6ca98d73d - Sigstore transparency entry: 1244149784
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
290d3c9df7a4db676e84952d3741eb616f23671f71d3c7e514fc84c2a7128590
|
|
| MD5 |
af120d6e13eb8c4190d00ab32ab04d26
|
|
| BLAKE2b-256 |
69c4ec2e57181b231be7da3ba9f3b3bd0175d9c8ec4ae5dfbc68d7e67396bd64
|
Provenance
The following attestation bundles were made for pyjuno-0.1.0-cp39-cp39-win32.whl:
Publisher:
python-publish.yml on mrzimu/pyjuno
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp39-cp39-win32.whl -
Subject digest:
290d3c9df7a4db676e84952d3741eb616f23671f71d3c7e514fc84c2a7128590 - Sigstore transparency entry: 1244149746
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9be05856281e21ebc434c16d61b27f29e5f8897a3e7c74e4231cd02617fd43ea
|
|
| MD5 |
c262a7fa56f9ca8f782f07b104265014
|
|
| BLAKE2b-256 |
1222a278cc051a39786adb6c2b15ddc9e75a360227e5afc61b4d268b26c395bf
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
9be05856281e21ebc434c16d61b27f29e5f8897a3e7c74e4231cd02617fd43ea - Sigstore transparency entry: 1244149779
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
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
- Download URL: pyjuno-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 128.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5244f4794cfcddc9bda8f9f9fe72c1f62e71af3ab81d1e727bc2c7c9b4f33fd
|
|
| MD5 |
ea44e90fb507d08c6817f7135a074a69
|
|
| BLAKE2b-256 |
731bd54df343e367c6ea561fda16268edd6c43d3edf0aab156f28e7530ae3035
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a5244f4794cfcddc9bda8f9f9fe72c1f62e71af3ab81d1e727bc2c7c9b4f33fd - Sigstore transparency entry: 1244149790
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyjuno-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyjuno-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 92.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45377c948f6fd626b828859a4914016e03bd449dcb07aa8542b4568e0f64f968
|
|
| MD5 |
67a21c747cae5d27a037f0789c8fb38d
|
|
| BLAKE2b-256 |
677c1fb56e0d030ea2a7f1bf5f77b806599ada09d83614c4c454e77e9fe4948d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyjuno-0.1.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
45377c948f6fd626b828859a4914016e03bd449dcb07aa8542b4568e0f64f968 - Sigstore transparency entry: 1244149744
- Sigstore integration time:
-
Permalink:
mrzimu/pyjuno@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/mrzimu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0c11e513ce693e0f5d2afbe491fc30dde6636831 -
Trigger Event:
release
-
Statement type: