Photometric knowledge quiz engine for lighting professionals
Project description
eulumdat-quiz
Python bindings for the eulumdat-rs photometric knowledge quiz engine.
195 multiple-choice questions across 16 categories covering EULUMDAT, IES, photometric calculations, BUG ratings, color science, and more. Fully translated into 8 languages.
Installation
pip install eulumdat-quiz
Command-Line Quiz
After installation, you can run the quiz directly from the command line:
# Text-based interactive quiz
eulumdat-quiz
# Or via Python module
python -m eulumdat_quiz
# Launch the TUI version (requires: cargo install eulumdat-tui-quiz)
python -m eulumdat_quiz --tui
Quick Start
import eulumdat_quiz as quiz
# Browse the question bank
print(f"Total questions: {quiz.QuizBank.total_count()}")
for cat, count in quiz.QuizBank.categories():
print(f" {cat.label()}: {count} questions")
# Create a quiz session
config = quiz.QuizConfig(
categories=[quiz.Category.Symmetry, quiz.Category.BugRating],
difficulty=quiz.Difficulty.Beginner,
num_questions=5,
)
session = quiz.QuizSession(config)
# Run through questions
while not session.is_finished():
q = session.current_question()
print(f"\n{q.text}")
for i, opt in enumerate(q.options):
print(f" {chr(65+i)}) {opt}")
choice = int(input("Answer (0-3): "))
result = session.answer(choice)
if result.is_correct:
print("Correct!")
else:
print(f"Wrong! Correct answer: {chr(65 + result.correct_index)}")
print(f"Explanation: {result.explanation}")
# Show final score
score = session.score()
print(f"\nScore: {score.correct}/{score.total} ({score.percentage():.0f}%)")
i18n Support
All questions and UI strings are available in 8 languages.
import eulumdat_quiz as quiz
# Load German translations
locale = quiz.QuizLocale.for_code("de")
print(locale.ui_title()) # "Photometrisches Wissensquiz"
# Get translated question
q = session.current_question()
translated = locale.question(q.id)
if translated:
print(translated.text)
for opt in translated.options:
print(f" - {opt}")
Supported languages: English, Deutsch, 简体中文, Français, Español, Italiano, Русский, Português (Brasil)
Categories
| Category | Questions | Description |
|---|---|---|
| EULUMDAT Format | 15 | LDT file structure, fields |
| IES Format | 12 | LM-63 versions, keywords |
| Symmetry | 12 | 5 symmetry types, data expansion |
| Coordinate Systems | 12 | C/gamma angles, nadir/zenith |
| Photometric Calculations | 15 | LOR, DFF, beam angles, efficacy |
| BUG Rating | 12 | TM-15-11 zones, thresholds |
| UGR & Glare | 10 | UGR formula, CIE 117 |
| Color Science | 15 | CCT, CRI, TM-30, SPD |
| Horticultural | 12 | PAR, PPF, PPFD, DLI |
| BIM Integration | 10 | TM-32-24, NEMA GUIDs |
| Modern Formats | 10 | TM-33-23/ATLA, XML/JSON |
| Validation | 10 | Warning/error codes |
| Units & Conversions | 12 | lux/fc, m/ft, cd/klm |
| Diagram Types | 10 | Polar, cartesian, heatmap |
| Diagram Reading | 20 | Interpreting diagrams |
| Standards | 8 | CIE, IES, NEMA, EN 13201 |
License
AGPL-3.0-or-later
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 eulumdat_quiz-0.6.0.tar.gz.
File metadata
- Download URL: eulumdat_quiz-0.6.0.tar.gz
- Upload date:
- Size: 324.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7279b2a4d8a6afc7699773b33152189191e458f2d550774d08ef5963036e479
|
|
| MD5 |
3d6f05b20bda644b67ab88869c062cb7
|
|
| BLAKE2b-256 |
193e87d1836b541074a8ddf42dc0f5813d86836d17eb0fcedc535ed197a99a38
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0.tar.gz:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0.tar.gz -
Subject digest:
a7279b2a4d8a6afc7699773b33152189191e458f2d550774d08ef5963036e479 - Sigstore transparency entry: 1057506854
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 627.1 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
112cc9d9de5e049b1c37e7f0092271ca2271bad54a4b343a8158c39b65402612
|
|
| MD5 |
04deaf952f20624a686c771a97dc3e72
|
|
| BLAKE2b-256 |
7408e989ebeea2cf3180aeaa0ece98ed33056ea2b6caab31cdd4747eb4f8e913
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp314-cp314-win_amd64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp314-cp314-win_amd64.whl -
Subject digest:
112cc9d9de5e049b1c37e7f0092271ca2271bad54a4b343a8158c39b65402612 - Sigstore transparency entry: 1057506979
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 696.9 kB
- Tags: CPython 3.14, 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 |
717be07974bf59e4c4c58af370d21a170fce7ccb89f16041ec238ed28a5ace9a
|
|
| MD5 |
5911ca0de17082b2ef7662ae6cba942f
|
|
| BLAKE2b-256 |
89c71f6b449f58b2689154129f14003433cfe883b09d41429ec528bfb56384bc
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
717be07974bf59e4c4c58af370d21a170fce7ccb89f16041ec238ed28a5ace9a - Sigstore transparency entry: 1057507107
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 709.6 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3f1308266517598a907820f845edfe20c8d929b20483567d07a9d4b3b5c3919
|
|
| MD5 |
8b3dd45e66c89f2c7832547f7bd84faf
|
|
| BLAKE2b-256 |
1d130b7cdb82877513fd0e7173b89a5e5c5ceef629c60867ca20085384f68d2c
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
a3f1308266517598a907820f845edfe20c8d929b20483567d07a9d4b3b5c3919 - Sigstore transparency entry: 1057506872
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 951.4 kB
- 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 |
6411200ea9df3ad890bb9d98e480a8b01f30031761561fd04f0a85fd22cfae47
|
|
| MD5 |
60c36de63e04c07aecc1bc2be2b3837d
|
|
| BLAKE2b-256 |
ca6db1a1e48355c01b74a5c0b3b16f9fe269d8341c740157bbb29557a97d4b68
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
6411200ea9df3ad890bb9d98e480a8b01f30031761561fd04f0a85fd22cfae47 - Sigstore transparency entry: 1057507012
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 908.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
439f17658b3ed0ff9cae77135acdbb0971daa71f50a6154701d0274154800385
|
|
| MD5 |
9b8ae6930d1c99ffaf7fe4a602642ad0
|
|
| BLAKE2b-256 |
3bc2b3eeebea7a352cce3bf4a43e1984bd112930533ede95558624629bd9fc91
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
439f17658b3ed0ff9cae77135acdbb0971daa71f50a6154701d0274154800385 - Sigstore transparency entry: 1057506993
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 733.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23dda690fff4a3dfe4fc9fc44bac91ceed25d6ecb1d4d9810b9f834d77d88f29
|
|
| MD5 |
b6f55ce583fecb0db758359265585c84
|
|
| BLAKE2b-256 |
e1feca0150dee963cec92864e2848ca42bf57d43811c64ac0335a6808655d941
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
23dda690fff4a3dfe4fc9fc44bac91ceed25d6ecb1d4d9810b9f834d77d88f29 - Sigstore transparency entry: 1057507000
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 952.0 kB
- 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 |
27aabdf0b654b3830af5adbe58bcdd5c0ac943515104e0e03039b1c60cb711bc
|
|
| MD5 |
e018bd57c5e84ac81756ab2903ef9818
|
|
| BLAKE2b-256 |
f3125d76d3adc70ef89ffb6eb28c1d941660a4e7b33e68dbf77dba0d06e43bf4
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
27aabdf0b654b3830af5adbe58bcdd5c0ac943515104e0e03039b1c60cb711bc - Sigstore transparency entry: 1057507048
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 909.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28eb01b26d8ed7178d1e6c6f61e274ef692be260058c672ff7a853bee20c4516
|
|
| MD5 |
b0d55e035868bbd01f00ac82291fd48e
|
|
| BLAKE2b-256 |
34b35a8a0f1d23eb2593fc6db8b5ca2a23f21128085deafc6fa34ab4e6521ab7
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
28eb01b26d8ed7178d1e6c6f61e274ef692be260058c672ff7a853bee20c4516 - Sigstore transparency entry: 1057507094
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 733.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28afcba2329b363eeb832a502921b8ac95511ebc56b07786017f57d3ed4bd7a1
|
|
| MD5 |
af541da166390b610f1a14d757808ae3
|
|
| BLAKE2b-256 |
db23931393ea16959e7a65e29cf87398a7c857d80cb3c9c574ce4c6616bbab7b
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
28afcba2329b363eeb832a502921b8ac95511ebc56b07786017f57d3ed4bd7a1 - Sigstore transparency entry: 1057507025
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 953.0 kB
- 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 |
fa4bba010f6639b77f7fc7a2785536347569ff9b9d0b64bc1f5da0bc57957549
|
|
| MD5 |
8a42358d79fa6105ebce99591a807576
|
|
| BLAKE2b-256 |
eba78ea1580d88778de8e9e9ea5369ca1e678309fb835493563bcbd93a5700b8
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
fa4bba010f6639b77f7fc7a2785536347569ff9b9d0b64bc1f5da0bc57957549 - Sigstore transparency entry: 1057507071
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 911.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2121808b8cce16a0693a7a3d4025cf4106335afcabbce651601aae25f91b6206
|
|
| MD5 |
7b55c4f74a004d2cdc060a6cd9a4748d
|
|
| BLAKE2b-256 |
b9aecc696eb4ab340615a3ded11264794ef924a685c3a91e5ed8a94cfb9fbcde
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
2121808b8cce16a0693a7a3d4025cf4106335afcabbce651601aae25f91b6206 - Sigstore transparency entry: 1057506893
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 735.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fcd05e11e683dc84ee0ebaf4eb45456d6d7872fdc9da19bc8186efc979673ff
|
|
| MD5 |
6ee13953c0464c46bdbb281d5bc8e602
|
|
| BLAKE2b-256 |
3afbb4c802b642c30b9e71e690cb3bf5eb56442c529e22a47b2b4fd7f7ba7b08
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
2fcd05e11e683dc84ee0ebaf4eb45456d6d7872fdc9da19bc8186efc979673ff - Sigstore transparency entry: 1057506922
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 953.5 kB
- 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 |
949fa308c7b596ac698f30b8557b8b2d285ab81295dfdc110f954fe6c3d8669d
|
|
| MD5 |
7b324a5b84720d034b2ac8475f053bc6
|
|
| BLAKE2b-256 |
43bdb7dbbbee52b14d46c62a947df1b6dcfb75fed7424ef5fd30b026acb53806
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
949fa308c7b596ac698f30b8557b8b2d285ab81295dfdc110f954fe6c3d8669d - Sigstore transparency entry: 1057506958
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 911.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0c91a63de38b7f4298717123d97a37eba129d8bd2d6ec2879c2a9e57d959002
|
|
| MD5 |
ab039cf10d2ce7953f6324e0d9d476bc
|
|
| BLAKE2b-256 |
62105bd1f1994a30b413b494c76af0e319f57ea7f0867eeb771556841b623346
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
f0c91a63de38b7f4298717123d97a37eba129d8bd2d6ec2879c2a9e57d959002 - Sigstore transparency entry: 1057506933
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 735.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d1f764555a317007ccc842fe2c9b4799e9a460626240b8a9fc57b7dfd0c2166
|
|
| MD5 |
03c288bb2e99b48cd83fb7ee34decf53
|
|
| BLAKE2b-256 |
a562d1b9f13cf3c02d2c0544c77e829d3cb858dbf5683e5f4f638ae6e77907d7
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
5d1f764555a317007ccc842fe2c9b4799e9a460626240b8a9fc57b7dfd0c2166 - Sigstore transparency entry: 1057507062
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 955.4 kB
- 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 |
98070e2e182a2a0f6978f96a6a70bd5b90d520b0e0665afff1949765a8d39ea2
|
|
| MD5 |
7e463b99d428aa6cdb800fea619d1fb1
|
|
| BLAKE2b-256 |
3c67ed50cd49e4808ad23cec6011b74eea99b0aeaf9a9e16351123de3bbe3cb2
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
98070e2e182a2a0f6978f96a6a70bd5b90d520b0e0665afff1949765a8d39ea2 - Sigstore transparency entry: 1057506907
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 913.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93c120fac6809ed21720cc3159779cda3942ecc184ca62e43fa8403f38558c28
|
|
| MD5 |
beba225a68ddf63cb5d6cf77456be505
|
|
| BLAKE2b-256 |
3cd57691a0f683996c8903a16f7ee7db9b858e9dc55242e69410b97d6206ce45
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
93c120fac6809ed21720cc3159779cda3942ecc184ca62e43fa8403f38558c28 - Sigstore transparency entry: 1057507080
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 737.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a518a297151b02166ef7d4d27a27446967f340060c27cb6ef945c337890f012e
|
|
| MD5 |
842d703e2e3a4dd25e84be4cc06f0b45
|
|
| BLAKE2b-256 |
39681836aab7286668e179c3efb88807951fffd53a20994d718c12e78ced00f6
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
a518a297151b02166ef7d4d27a27446967f340060c27cb6ef945c337890f012e - Sigstore transparency entry: 1057506948
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eulumdat_quiz-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: eulumdat_quiz-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 751.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66aae08de720b94ea922862ffa9f4f397d2eb482abb02aba3d65542d2af5c0d4
|
|
| MD5 |
ef8249641f8d1fbef7e2bf86646be28b
|
|
| BLAKE2b-256 |
764a606fcb2ef4ebbcf299b28015bcabbf86292550b0e55f268b34d231dddf77
|
Provenance
The following attestation bundles were made for eulumdat_quiz-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
python-quiz-publish.yml on holg/eulumdat-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eulumdat_quiz-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
66aae08de720b94ea922862ffa9f4f397d2eb482abb02aba3d65542d2af5c0d4 - Sigstore transparency entry: 1057507036
- Sigstore integration time:
-
Permalink:
holg/eulumdat-rs@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/holg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-quiz-publish.yml@5cca60bc8aff2e070f5a151fbd80ddc216eaf9ed -
Trigger Event:
workflow_dispatch
-
Statement type: