Skip to main content

odin_palace_py

PyPI Python versions CI License: MIT

Python-библиотека для парсинга банковских выписок в формате 1CClientBankExchange.

Ядро написано на Rust (odin_palace), Python-обёртка построена с помощью PyO3 и Maturin.

Установка

pip install odin_palace_py

Быстрый старт

from odin_palace_py import Statement, parse

# Чтение файла выписки (CP1251 или UTF-8)
with open("statement.txt", "rb") as f:
    data: bytes = f.read()

statement: Statement = parse(data)

print(f"Кодировка: {statement.encoding}")
print(f"Заголовок: {statement.header}")
print(f"Документов: {len(statement.documents)}")
print(f"Счетов: {len(statement.accounts)}")

for doc in statement.documents:
    print(f"  #{doc.doc_number} от {doc.doc_date} на сумму {doc.amount}")
    print(f"    Назначение: {doc.purpose}")
    print(f"    Плательщик: {doc.counterparty_inn} ({doc.counterparty})")
    print(f"    Получатель: {doc.payee_inn} ({doc.payee})")

Работа со счетами

for number, account in statement.accounts.items():
    print(f"Счёт: {number}")
    for interval in account.intervals:
        print(f"  Период: {interval.date_start} - {interval.date_end}")
        print(f"  Начальный остаток: {interval.start_amount}")
        print(f"  Конечный остаток: {interval.end_amount}")

Обработка ошибок

Библиотека предоставляет иерархию исключений для различных ситуаций.

Внимание: класс odin_palace_py.SyntaxError перекрывает встроенный builtins.SyntaxError. Импортируйте его под псевдонимом (from odin_palace_py import SyntaxError as StatementSyntaxError), если в том же модуле нужен встроенный SyntaxError. Имя сохранено ради обратной совместимости.

from odin_palace_py import (
    parse,
    ParseError,
    NotStatementError,
    EmptyInputError,
    UnfinishedError,
    SyntaxError,
)

try:
    statement = parse(data)
except EmptyInputError:
    print("Файл пуст")
except NotStatementError:
    print("Файл не является выпиской 1C")
except UnfinishedError:
    print("Выписка не завершена корректно")
except SyntaxError as e:
    detail = e.detail
    print(f"Синтаксическая ошибка на строке {detail.lineno}: {e}")
except ParseError as e:
    print(f"Ошибка парсинга: {e}")

Объект SyntaxError.detail содержит типизированную информацию об ошибке:

Тип Поля Описание
UnexpectedSection lineno, found, context Неожиданная секция
UnexpectedAttribute lineno, key, value Неожиданный атрибут
UnrecognizedLine lineno, line Нераспознанная строка
MissingField lineno, field, context Отсутствует обязательное поле
AccountParseError lineno, message Ошибка парсинга счёта
DocumentParseError lineno, message Ошибка парсинга документа
HookError lineno, message Ошибка в hook-функции

Hooks

Hooks позволяют модифицировать атрибуты секций перед тем, как парсер создаст из них объекты Document или Account.

Hook вызывается после того, как секция полностью прочитана (парсер встретил маркер КонецДокумента или КонецРасчСчет), но до того, как атрибуты обработаны и добавлены в итоговый Statement. Это значит, что hook получает все накопленные ключ-значение пары секции целиком и может их изменить до финальной обработки.

Порядок вызова:

  1. Парсер читает строки секции, накапливая атрибуты в словарь.
  2. Парсер встречает конец секции (КонецДокумента / КонецРасчСчет).
  3. Вызываются все hooks по порядку, каждый получает собранный словарь атрибутов.
  4. Парсер создаёт Document или Account из (возможно изменённых) атрибутов.
from odin_palace_py import parse, SectionType

def my_hook(
    section_type: SectionType,
    attrs: dict[str, str],
    header: dict[str, str],
) -> None:
    if section_type == SectionType.Document:
        # Подменить назначение платежа
        if "НазначениеПлатежа" in attrs:
            attrs["НазначениеПлатежа"] = attrs["НазначениеПлатежа"].upper()

statement = parse(data, hooks=[my_hook])

Если hook выбросит исключение, парсинг прервётся с SyntaxError, а detail будет содержать объект HookError.

Поддерживаемые версии Python

  • CPython 3.10+ (включая free-threaded 3.14t)
  • PyPy 3.10+

На время парсинга без hooks GIL отпускается, поэтому parse из нескольких потоков выполняется параллельно.

Разработка

Репозиторий ожидает локальный checkout ядра рядом:

parent/
├── odin_palace/     # ядро (Rust)
└── odin_palace_py/  # этот репозиторий

Секция [patch.crates-io] в Cargo.toml подменяет crates.io-версию ядра на локальную. В CI ядро автоматически выкачивается соседним checkout; из sdist патч вырезается, и сборка идёт против опубликованной версии с crates.io.

just dev    # собрать расширение и установить в .venv
just test   # pytest + cargo test
just check  # форматирование + линтеры
just bench  # бенчмарк FFI-границы

Лицензия

MIT

Release files for odin-palace-py 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for odin-palace-py 0.2.0
File Size Uploaded
odin_palace_py-0.2.0.tar.gz 99.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for odin-palace-py 0.2.0
File
odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ x86-64 Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ IBM System/390x Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ PowerPC 64-le Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.5+ x86-32 Details
odin_palace_py-0.2.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x Details
odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le Details
odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32 Details
odin_palace_py-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
odin_palace_py-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64 Details
odin_palace_py-0.2.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
odin_palace_py-0.2.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ IBM System/390x Details
odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ PowerPC 64-le Details
odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
odin_palace_py-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-32 Details
odin_palace_py-0.2.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
odin_palace_py-0.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
odin_palace_py-0.2.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ IBM System/390x Details
odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ PowerPC 64-le Details
odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
odin_palace_py-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32 Details
odin_palace_py-0.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
odin_palace_py-0.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
odin_palace_py-0.2.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ IBM System/390x Details
odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ PowerPC 64-le Details
odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
odin_palace_py-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
odin_palace_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
odin_palace_py-0.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
odin_palace_py-0.2.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ IBM System/390x Details
odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ PowerPC 64-le Details
odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
odin_palace_py-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
odin_palace_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
odin_palace_py-0.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
odin_palace_py-0.2.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ IBM System/390x Details
odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ PowerPC 64-le Details
odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
odin_palace_py-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
odin_palace_py-0.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 50.3 MB

Release files / odin_palace_py-0.2.0.tar.gz

Download URL odin_palace_py-0.2.0.tar.gz
Size 99.0 kB
Tags Source
SHA-256 checksum
How to use checksums
be2eed848ee512f9d25a9350597ab0efc457698d0233ffb406a03601370ed74d
BLAKE2b-256 checksum
How to use checksums
e681584ee4ee48b4176ae697ca81c1df3b01182c4e15fcc97d67f4874b3d3449
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 696.2 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
bb0d521b3d0578bd362505020ea36b6ce1931ba4e930da7129672602962a43f3
BLAKE2b-256 checksum
How to use checksums
a7df7585e94b221ea92b6a9c718394675d4a8410502628fe673799f5d250f58d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 724.1 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
6862980e2994336f580c4482532d230d68f2e5fd5f291047a7805dcb3256a320
BLAKE2b-256 checksum
How to use checksums
77fd9335b636ce1b6c30bddfa9fc6d87a7cdcd2f7a93fb9cd6744883a9621f8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 755.6 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
30dd1db1b5ec63cca5e70fadea410aeeabf0f9a0f713c53b1dde306352c480d4
BLAKE2b-256 checksum
How to use checksums
bd845621a37d9fc97095625593431620357ff14c9cd651ff6ae14bd373c58455
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 647.1 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
aff715ec51618405e780b10d6ff8138f1c8fe513f3ee6466d9dad22831809cd0
BLAKE2b-256 checksum
How to use checksums
8c83c2c2693bc14b14501dc37ebaff079f7bdc5c4c8805323df3fc58f9348ece
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Size 482.7 kB
Tags Linux glibc 2.28+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
8aabcbad38c1578f5a5f7ef40606f2d66edc6716f05e93d359c6404186537f07
BLAKE2b-256 checksum
How to use checksums
47b91c930161739ef813c85d8483911e937d79e081d8887f9c66028eae9f66de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Size 525.1 kB
Tags Linux glibc 2.28+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ef694708c7d5c1df88ce4568325563673c28eb6768559b1bd1b2719c71167436
BLAKE2b-256 checksum
How to use checksums
ace9dadaba09ef4c00208e05256d15746c17f3e7c7841e2d6cb4ddffb6417b05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Size 519.9 kB
Tags Linux glibc 2.28+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
0391284f0727eab365681e74dd9dbe316a87464cfe59a58b55f481fba8a7edf5
BLAKE2b-256 checksum
How to use checksums
e96033f78ff75c8c35b944633154e0a1287102ccc3482da60d7d555565a8925a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Size 469.6 kB
Tags Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a00e3573351b6ba0be673dc4b4422152d636d18fa97f23bb23380a49f460351f
BLAKE2b-256 checksum
How to use checksums
b46bcc336e53a1795acf8185a35d133a334e5bb33a26d48b122aabd76f9ed794
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 478.8 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ff1e9746f4dfe02d891d1d3b37b845102c0da0fe792a4974267e45656ed8d06c
BLAKE2b-256 checksum
How to use checksums
9ce8daf3acca309bee110797e087d40650a6deedb459428d352aff0edde85c29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL odin_palace_py-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 508.8 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
217dc6a3c2ee362a70bd120cc6a60020b185803932539bf8b6d68c1aca87f32d
BLAKE2b-256 checksum
How to use checksums
fc22007eeec35290748beeb6a63d31097f89088488754c6318ca4500c93daf64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-win_amd64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-win_amd64.whl
Size 396.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
77bbbee24bcc8734753f3ed388203c964a19f294cd7365acc15658559c5a2265
BLAKE2b-256 checksum
How to use checksums
ed4df130681c0c8dc8613064b28931464f16ae57db1c23b2befd29c880e58b87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 691.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f55244f291c8568618da1923b9102bbec1cc325134ccf1ab2c390b68dcf4eef4
BLAKE2b-256 checksum
How to use checksums
5bb4e40c6c4285895d1858f65bbbf5e8f200a291151bcc59f28d5a4221abcc34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Size 718.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
fb0da6eaf43dcf177f5e07b4c00fb6592e31eb270e8017932bf00eba18bb7cfe
BLAKE2b-256 checksum
How to use checksums
0360aa7de5da72e1fb2ebddb018a7f909c8b794e0b40e098fe448e6007528309
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 751.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
b887a25460731e8ef59365f3041bbe72ec272007aed6d9f74d2cdb0ddbefeee7
BLAKE2b-256 checksum
How to use checksums
454b70a0fab2afe2b5a87a2d4359d3561119bc825b23776fd4e812d6737ba188
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 641.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a2e7f7a492f379b1a7e691fe49758e29958148e8dc89a7016f2b798952b0cbe7
BLAKE2b-256 checksum
How to use checksums
1899e43c7fd9e53f2bcdfbc0c7f37de7ddffbfc2aea83fc092caa36f2d688abf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 478.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8d525437f573c7d95942e567cb3de5756d2955ae51a0e835082d3fef80f50947
BLAKE2b-256 checksum
How to use checksums
c65ddc5b59e8d7144d6ded577e8c8c7962fe553ba5c26c0b9d02b30e19003f6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_s390x.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_s390x.whl
Size 521.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
72960c83eb070cddc0ede66a97eb6a270daa44516455566b2335df21d3144458
BLAKE2b-256 checksum
How to use checksums
c54235808451af0c907776cb0c64074b91a003f82109091c026d04bad6502ec3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_ppc64le.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
Size 514.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
37761c8977cea410286461fb6ad0e2e3f8e8550ca03040563d54271849e0c17a
BLAKE2b-256 checksum
How to use checksums
8b82185023a401d4e753120422b54878702107b809612c67e134295cf299f784
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 464.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
018bf36cdf6dc426db0c5afdd8b6994944beb002818ffdc30301a1ec9332cf09
BLAKE2b-256 checksum
How to use checksums
d9fa376ed0b72d6e189b1bb4faafa4c12025a2cec4b0f69ae6d995a0dec1472f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 474.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
811e2bc6538063af07789707465d78f6cafe096e7fe9dc1931a1aba9e53e7941
BLAKE2b-256 checksum
How to use checksums
884a40b368795e408a9a7928215737429b0ee02dd35539a0fddd2ef7b86e3098
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Size 502.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
63602832fcd9751319e1f837953daa23638bed9b3ad9969e8bc42b9e6bf1ccc6
BLAKE2b-256 checksum
How to use checksums
cf66e82a341e72a755df50dab44773696aa133e6eb6e1cf0df608ec02e0416df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 447.7 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
292fbb156544332ba7ed4fe259d146369957c27dc882b56532948dc0a91de903
BLAKE2b-256 checksum
How to use checksums
8c93bfe453e81a7497d082a2acf2325277b72a5ed048c1875178bb1af2246fd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Size 461.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
af10755736fee01c4835757b5018558839f5a35f359e2373e50b2bf4125b7330
BLAKE2b-256 checksum
How to use checksums
27763e69b94e0fecbfeed35a0d22007c4e61f5e0916c97e97bd38c9ff52fe37e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-win_amd64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-win_amd64.whl
Size 396.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
0c1e77bbff20ca31e1266d3821ec87a2000c63460fc323334944cab311b7818e
BLAKE2b-256 checksum
How to use checksums
5da0d8f3feb27086ab5c8102a8d7153c0f859205a0167dc2db0ae7122d71f744
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-win32.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-win32.whl
Size 384.3 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
9d18936b7e42c91bbf114327b3bc59e9e5233392b696fd7adba1f3f79933526e
BLAKE2b-256 checksum
How to use checksums
fe594298d16f0e454895f9f1e01df08d319b1510af60e809a579feea2597b484
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 693.4 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5cc7bdde4b9f4c3676d41a98c3649946dacd37b91655b2764c81d9d127da14df
BLAKE2b-256 checksum
How to use checksums
c2a828fc0b3a138552282f864026374137bb550f627555e37e5e1f2f7bd57155
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_i686.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
Size 719.6 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
da99ecf462e62c8bc6d698fb17e6db769dbb15a76c9511706002fdb73fa7c5fa
BLAKE2b-256 checksum
How to use checksums
13ababd94b17cc526d7811b711f54f63b5558ab31460fecc7c56d22418cec644
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Size 752.7 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
d35ff51c63562fe6016a8064615b299c7bd5f9f241aaed5896be68fd8fb4b8b5
BLAKE2b-256 checksum
How to use checksums
32004261482434dca0c323f5dd12eb500d7a37b4f95928bfa6cf64c51b1f35af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 643.3 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2b25f5d69b4b6c905f9a4eae60a33fd44b75edf7e4e1585c913fd9e411861eb4
BLAKE2b-256 checksum
How to use checksums
5d26115f8152403bb4af3fee26b15b5a49c91126df4dc351c7b56665903de7ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 479.9 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cc177d4ec9e02dac0ee9416327bedd324f458b7152de1759001edd4d59c730d2
BLAKE2b-256 checksum
How to use checksums
be61b83d126db360cd83d846c9c016fc423b3593868dee7337663eeeb1bf5087
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_s390x.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_s390x.whl
Size 522.8 kB
Tags CPython 3.14 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
ef41a10c0309213b884e7edad172924a9f664a0f01aceebab6c643a6b7462576
BLAKE2b-256 checksum
How to use checksums
005e6a22402a1799570d526265fbd46c32570945592f30dee426acf3237bdfdb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_ppc64le.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Size 516.4 kB
Tags CPython 3.14 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1ab8bf4a72ce2d1a76710e5bbd5d93361dd5fbb1a1ec30651444e84b4b701d33
BLAKE2b-256 checksum
How to use checksums
374a428e800e4030d3d3b091f1cbc70eb5e87d43221f120ac2bcc1b641299774
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 465.8 kB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
92084b1cceba15c0cb6689577dc677b80723cd066096b5f07e648e72a472aacc
BLAKE2b-256 checksum
How to use checksums
57b4445f592fafdfa307faa905cb077ec4db5445d0f70e162ed9c73afefb11b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 475.7 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
fa34918b4a1b2b211ea11a78201a77f79999c6a38386f4ad43101ef2a951847d
BLAKE2b-256 checksum
How to use checksums
f736717f4de33aa424931f2036e51dfd6730dc5a4886c73e2f32de8192ea4774
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Size 504.3 kB
Tags CPython 3.14 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f2d05a56b2916470f1a024dab60a29b6ce2bff8628b0a0fd026d9339fda85abe
BLAKE2b-256 checksum
How to use checksums
294eb4b3631615562c3ccab322efd7a294f89bb0c8db3ff5e97b26e21e5970b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Size 449.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5d71258ecf0a471b536d6eb2a3ccd0e70f2595556fd1efb4a70f577155c47181
BLAKE2b-256 checksum
How to use checksums
cef72e2d70e2fa3ae3744e5129e8a75dd9071a52beea255958a858374c354c34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl

Download URL odin_palace_py-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 463.1 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
80889f08d698580e4e9795b37d64b601130565bf798758293ebf84cab5222f61
BLAKE2b-256 checksum
How to use checksums
a492b5696c9dadb22089a5cac6f963ce3b8e5f3cbf01a605bd944bb049c612b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-win_amd64.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-win_amd64.whl
Size 397.1 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
73842a2e41ea81c254a3e86e69e0740b56547591c10f2c3d295140b19835672c
BLAKE2b-256 checksum
How to use checksums
9ca53490c0fd753bbc6ab04f18f237b76d1ce9668dac7595053451aa2944f359
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-win32.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-win32.whl
Size 384.4 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
a0c2b4d916d7d5e6f5ed5d962d5c76b223469bf768040e159aee543aff819131
BLAKE2b-256 checksum
How to use checksums
64d1a757b743f78692540dfd1b3ac472df91982b418d6e5bee9eb2c6d002a58b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 693.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4e5528d141eed9a1a3f230aeda92c5978260fd33a476a17c502465485314515d
BLAKE2b-256 checksum
How to use checksums
1bec016032a84bc920f5f8f119071b30ba4984c1b9bc02ea5612e81668d321a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Size 719.5 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
9d2e51f8f0c77e8d30fdde432bbea0b053ce824fad0055af9a88a0ec39718a7e
BLAKE2b-256 checksum
How to use checksums
4ea289c81dc4bd689fe0808294bee6b1ce957ee4f9d727bc08d36906562001d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 752.7 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
0f38f735d0a5aaa9bcd2a1506dc7cc7109b1d49f0cc1025ef7c7c2ef53cf9994
BLAKE2b-256 checksum
How to use checksums
c147541579baeb173e773c77cfbf00119d52656fb3e11787fbd848506c8c2ec0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 643.3 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
35a7a02c4ddefc5bb5478bce3162381d4610bf939010d3e0fa2774a63edf1b78
BLAKE2b-256 checksum
How to use checksums
11bbdeb49b332a9b17df90bf76779bf9de330dcd20992b07321a7cbd9bacb0dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 479.9 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c23ea19787780ae131febbafd4c820d1356215de01f1b3bef9c7a5ece0732354
BLAKE2b-256 checksum
How to use checksums
58c70445647031c05908bc2ce7fdaf17c7a7de3ed660342b977286fd216a8134
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_s390x.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_s390x.whl
Size 522.6 kB
Tags CPython 3.13 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
7b38a530dd69319f251098c14d7f99e1b0688abbf546d087a0cb5b3d8718276a
BLAKE2b-256 checksum
How to use checksums
792a85dc84c451c11db8762b9688556f54f6b089484d6eb8d279c7eb09cd394d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_ppc64le.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Size 516.6 kB
Tags CPython 3.13 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8cdd6c6ed57eb1bcee7689b3a099747a6ffbdf641353dbead76b219ebe1984df
BLAKE2b-256 checksum
How to use checksums
023c4c98c630aeba10d0f13ddadd4784ca8ffa506375a5d3036a72618a74f419
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 465.8 kB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
aacf4b3a297ed10be70cf21685693e60d7f02045776719667029303b5abf8a79
BLAKE2b-256 checksum
How to use checksums
d0797c63a82cb7a6e0a9191e252b4bce6bc505937fffe37635b2176fc5869cda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 475.8 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
35a273b6bfc038bf3dc3e8ea83b195dea804cfabd8d80b261561442581529478
BLAKE2b-256 checksum
How to use checksums
34d69ba69c431c3b9686fd8449b64a16506c1bf476dbaa51433d90144490c397
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 504.2 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f13784abfe0357543741ec061bb1c662692e75dd3bc672c9b3d7a27c903f0580
BLAKE2b-256 checksum
How to use checksums
394b941e4b32efff4235d4769c7e9dc59ba818dc051776a259a9fb8f8ad53524
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 449.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dbaf4d268e2954b01bd6449ed8be37c1d8defabee40cd10f16da8d843dbf6ed4
BLAKE2b-256 checksum
How to use checksums
c153f11fbf5e5d7efa160337abafc039c3cbba0f580364cd853f6c7b68181327
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL odin_palace_py-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 463.2 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
0f541d98685d7b85d88fedb0ae756ed0a8e14ef3856efdf4a68fb51bf03971c4
BLAKE2b-256 checksum
How to use checksums
680228d99e6b0fdfb1d374904667537497ecf2e4e8ff364f93c358e5f65175c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-win_amd64.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-win_amd64.whl
Size 397.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
406d45b9b2b403be7a4914eb95ff13436f21e7c6a6cc362f130bea86a532a87b
BLAKE2b-256 checksum
How to use checksums
a71852751816ce93fcf01ff2d567796da5b2793669317c9caf1165e5fb637b0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-win32.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-win32.whl
Size 384.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
86fa33b6ee9cee697aef20b3e27b5c5cd8790a0c0e94d576eac12b2a95cce933
BLAKE2b-256 checksum
How to use checksums
01085a2b695a1c309f595be15cf27fd9d13cc2eb28bb00a1406b6868e7dcf1ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 693.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3591b4333ae657612d7db1eae2f38734df384b79295b5c47b058709b1cd25c3e
BLAKE2b-256 checksum
How to use checksums
65df7c32f607f0399d41a697060882525065e7ad699d8a7fbcd6d8bcbf31ad9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Size 719.3 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
c428e70bf4d766e87acb4643864fc0cba8a4891c0f96cb1883343c96b870b50d
BLAKE2b-256 checksum
How to use checksums
1fc1a21e4403521dc118a1923baef882246d8b1d9a7dc2757d2d6bc427adc4d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 752.7 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ee9739845c928631b81272135897303d883e07851a06f4e855fb430201cc9c15
BLAKE2b-256 checksum
How to use checksums
cb63058308c1a3a1b739a30ea2c05c656d7acf7d80318b7758e95ecc5f71678e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 643.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ddd8da3d44293c6a8a08c1170b7fe483a9a4f6c15a15bda33ae6e400576a130f
BLAKE2b-256 checksum
How to use checksums
d3bdb301805d35ee7c3d33eb3ed9e174c8d1bc6ac6f3ca7213ef224129aa24eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 479.7 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1287ce3aaeb3922328db17208f5412e26cc5744e486fcc3abf74c4f7f31436ca
BLAKE2b-256 checksum
How to use checksums
f23232868b7e4d695bd68bdcbef619b1c0c349d66a10a72c94481325a0ba0728
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_s390x.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_s390x.whl
Size 522.6 kB
Tags CPython 3.12 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
a1fca51e064f87fcc01a4ef4c98a917db4c5ca49f434cfa92e435d9ad4f58dce
BLAKE2b-256 checksum
How to use checksums
1d840f27e96a3b8db9a76779d6e47743ed26d8791cf75acf839b37729dac2477
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_ppc64le.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Size 516.5 kB
Tags CPython 3.12 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6e94ba1ee3b431061890329ff4e017c5e480629d62d0ddc2dc332ccc92d38805
BLAKE2b-256 checksum
How to use checksums
7710925e299f526866da2f3321c240244ece4bfafac01d1b19c0507b87852325
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 465.9 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
78113e3a2dd7df110bd880b3b06baf7eae35ba0b9ff93e6446a6e194a3a649f8
BLAKE2b-256 checksum
How to use checksums
1093f59cb6f25a6845b6b12e446df21da2ef65b1e2181cc53c3665a11a950fd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 475.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
fd0469ab64d686426050403b6aae4634f25aa7f87c342afae540fd0303bc3f4a
BLAKE2b-256 checksum
How to use checksums
f45639d7a0babfa46092e47e194d86e70897d4eb2e2e007d8861f158c96d826b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 504.2 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
12c38699a3504e9f12bd8ad0b2ecec443680717a9e1de32477bd4804101ce7de
BLAKE2b-256 checksum
How to use checksums
6dc2c17441d66c539e990f8c071ccd71ba318f8acd3705c560b19ae00a3cd9e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 449.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3dbefe2b39d07bd965d3002b6b68e9295d31c707d8d49fa576c871c3e60061f0
BLAKE2b-256 checksum
How to use checksums
b673b2731737ae294a515c7eb5ad7f556e87ca9e1ed87678dd7361b9793f121f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL odin_palace_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 463.1 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f1c09c761e8afdaeb9578e0faf0d4ede0c08eaeecdc8d7f6a55aa062e2d43fc2
BLAKE2b-256 checksum
How to use checksums
8a3acccfed1ee87d737e6d9ba58bf30b510b96424a4030fdd2aec2d0706c1bef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-win_amd64.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-win_amd64.whl
Size 398.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
3098c559fcb9ad51de841f1b8cc0aed5bf1dc657b13973063faf76e0427044a7
BLAKE2b-256 checksum
How to use checksums
4e85013e0ee1c475174ee70d224d644c0eabb5a60de036cfc1933f956b9a227e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-win32.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-win32.whl
Size 386.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
f19e2f6c83acbbdc1547da4d85d6d1c569f672295eada76022d97bce69c36025
BLAKE2b-256 checksum
How to use checksums
f5138c59582737db0b46b71f712fe879eb2d570845c6d92c39d37c34c67b44b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 693.5 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bf9768b2dabb48547f65c4eea945b578f229981154f1b322167dfff34d3b8ffd
BLAKE2b-256 checksum
How to use checksums
ad95ece078972f57626bc4f501a80c78485ca6f4424aff8504f2b0899cdd0fa2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Size 720.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5aa618be8c629a3fd890ae791e24c4a05ca1848f52c0c49f85ddbaed89117419
BLAKE2b-256 checksum
How to use checksums
26e6539ac5d0f93c015b4ddb3996167e8e0944239a663d7d95f4039509533f73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 753.3 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
656586be80f5f0300ba72f1de99ac01f808cbc7bdfc5dc8ad20f406d8f59f166
BLAKE2b-256 checksum
How to use checksums
2bf87b8d3d5c1d86c8026789bce2454e007702f57d641ac35ddb0ba9e023f495
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 644.9 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1fb8cebc72267c7d70ee2188be0a593d3d2302dd1638834c59438da19b62b4b1
BLAKE2b-256 checksum
How to use checksums
f2bbe5b67ded878ac12d2e8506ffc47bb3a464bbd97d7ce4522dd77f0a3b48ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 480.0 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d597bede5d851bc9668a9fd48b20d7aa0f44cbb0814a0917b0d55359aee7892a
BLAKE2b-256 checksum
How to use checksums
751944e196937e1ddbea3a2828383c341fb864a071176d9766393a545e7c08ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_s390x.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_s390x.whl
Size 523.1 kB
Tags CPython 3.11 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
95ddd679e5563006e721c53dd55178b541d9a98cedd9c9a74520e7a4f46eaf9c
BLAKE2b-256 checksum
How to use checksums
b7eafbf69fecc4ba1243cac491ae05279b733c90af4526278e97c2d0597d68f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_ppc64le.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Size 517.3 kB
Tags CPython 3.11 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
88273e923f283501d021d9f47eb3f6df68846a6f082444710db5ffc976a74253
BLAKE2b-256 checksum
How to use checksums
618cb1a4ef55d5db0e0111fb5f61c9a1978d7f5365409ded7fbbba9af3f9e8b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 467.4 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0be1c4f167d8acadedfea355830cb59fe811b437aacac5c62ff0d7d177a7ce8a
BLAKE2b-256 checksum
How to use checksums
32c389452bf3169699f6f06fd9162e900cf2c047912a8d3cdb7e299ef449c11e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 476.3 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
3084f49fca541303e2d21f7946581dd2140d6ea24470901d186cce4d2b63330a
BLAKE2b-256 checksum
How to use checksums
d95d9f5855a1ef8dc0a50fbfbc653f52a9dc754e8af1d5466505b7c4b7474f8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 505.6 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
79d4905b2b54f7a450b0e16a653b957b4634d10f73ef18e8ae715f8417692977
BLAKE2b-256 checksum
How to use checksums
cc986dc02238df6b48fc43ebf8dfe82e992b4047b8e2db2673c8c0f8d08cf814
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 452.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
05dcc378d39209e2f5bcf3d7e29752fb9421bcdc714d94505eb3b3658181ae84
BLAKE2b-256 checksum
How to use checksums
6d0bd7f5e596bd43ad8a9b2fc273230f895702417bea346081476d8f1e180f76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL odin_palace_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 460.6 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f25b63776ff18346be3e89ea0b56a8657ddc37d3a387279aed84671f624d5ddc
BLAKE2b-256 checksum
How to use checksums
ea1eb8ef13f1027664efd51eda6a91f0676467d568748cf287c5fec18655ca7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-win_amd64.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-win_amd64.whl
Size 399.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
406bd4c0d5651aae9ca89ed152cbfb3a2790041cc3efee4b092b5a4e04d8940e
BLAKE2b-256 checksum
How to use checksums
d57e938b61fb0b664b188868e66aba79fb7b651011bceb177a3f7105480d8a95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-win32.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-win32.whl
Size 387.2 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
3975a9980ce4f5ff1b80746d0ed62f4478e66fcdd171edbc60fb162fb2b06b88
BLAKE2b-256 checksum
How to use checksums
9f59514671c524551523d21e3b848846f2374e34c61f558145d89221c09ac540
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 694.1 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f70001fdc6aeb5fff7a55e3268950c52d5b5d1404a233b0e361deab863e6a055
BLAKE2b-256 checksum
How to use checksums
b0d412ae34e7528ec0b7463b9f45080ee6b79d0e9cf41afe30a4104b4ee4026c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Size 721.2 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3051ea57615266af92cb427e678dedc732ff100fa22d79ec50d8a2a712808de0
BLAKE2b-256 checksum
How to use checksums
d227f07fdd7348068c9c5135da4a127b74b79ead64f592effb6d3c9fba79f1cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Size 753.7 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
9dccc756df6098e6631d73795b7180d3e40bfe459dcfa3408900454435ed5065
BLAKE2b-256 checksum
How to use checksums
29e1279ddef734009593c4b6255c0d8c96994cf636037cea1147991514300960
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 645.3 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d3451ceb1a871d63a4646c1bb51ede2f07a46165f53ea5851b342d6129fe0aa0
BLAKE2b-256 checksum
How to use checksums
5de95f3a3e427a5b910ac831ac73aa56624ac03486b843a7f0c79e082a5510ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 480.5 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
53a9a7edda9f742f04ed57c56f373f25efcfc3f61ad5a010c4d71dc0cf04dbe8
BLAKE2b-256 checksum
How to use checksums
e92ba9873b5cda3ac774e24a00de6428c28bbfb780123e6b6bf11d02298de1a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_s390x.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_s390x.whl
Size 523.8 kB
Tags CPython 3.10 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
28e06097c3676925b9e18ef00af872d555685f890deac3219012f1c0c821276f
BLAKE2b-256 checksum
How to use checksums
3d66774cfdb8984928622aa111844a601e47faf749d8d3738c1d684f5ba50206
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_ppc64le.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_ppc64le.whl
Size 517.5 kB
Tags CPython 3.10 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3937db1b5041628fce0f7fd462546ce3117b95188a33c25e4b65ef1f862422f5
BLAKE2b-256 checksum
How to use checksums
28b47b9090c4a8e104af065083b24c6339926f440d4d6fab3e06e9f6cad91dc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 467.7 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9367e1b6dc18488d27a8241e888bfde28ccf4f448198c3eee3ca2d3a5358fcc1
BLAKE2b-256 checksum
How to use checksums
a73ccca23bf2c4f415eb0797d369b10a3501d58fb5b4084a1d392e76b35b1a0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 476.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
871d7c722933fe65c14cb1e6be136d9b17401e926d03190acd984728e1e54ebc
BLAKE2b-256 checksum
How to use checksums
26ee95f42135b045a308d93a65558465828543177ec2e7e9c7b1ad1aafb3fa92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 506.0 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
80b8f693d6e1af0e142b60d3df13ef542e36d615ab83bc028f1c0b1fe1715ff2
BLAKE2b-256 checksum
How to use checksums
e514ebb9b76dff4bd9adbfd82ac1bacd42f77694291d72d898f42f27e5a352e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 452.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
85c9d2774d533e922d42a38a2667b390fd9c4477c10cb1002299c0e450cbc6b3
BLAKE2b-256 checksum
How to use checksums
172c3b9cd30495518b6d94946c9a1a6dd5f31c134600e9e92f2c1a538884526f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release files / odin_palace_py-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL odin_palace_py-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 461.0 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
9dd4ae24b3876d2569af96525884b0ef83810ff0eb03b842f60ad21e230c48e5
BLAKE2b-256 checksum
How to use checksums
209cdf4b0e172e527223a00287231945dc5745945c184503b866e7910ef64314
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 7, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.0 This release

94 release files

0.1.2

92 release files

0.1.1

13 release files

0.1.0

99 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page