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-границы

Подхват нового ядра

Зависимость от ядра каретная, поэтому patch-релизы odin_palace не требуют изменений в этом репозитории: установка из sdist собирается против свежего патча автоматически. Перевыпустить wheels (ядро вшито в них статически) можно одной командой:

gh workflow run bump-core.yml

Workflow откроет PR с бампом Cargo.lock; его мёрж запускает обычный релизный цикл. Минорный/мажорный релиз ядра по-прежнему требует поднять версию в [dependencies] вручную.

Лицензия

MIT

Release files for odin-palace-py 0.2.1

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.1
File Size Uploaded
odin_palace_py-0.2.1.tar.gz 100.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for odin-palace-py 0.2.1
File
odin_palace_py-0.2.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
odin_palace_py-0.2.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
odin_palace_py-0.2.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
odin_palace_py-0.2.1-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.1-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.1-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-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.1-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.1-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.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
odin_palace_py-0.2.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
odin_palace_py-0.2.1-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.1-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.1-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-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.1-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.1-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.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
odin_palace_py-0.2.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
odin_palace_py-0.2.1-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.1-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.1-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.1-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.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
odin_palace_py-0.2.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
odin_palace_py-0.2.1-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.1-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.1-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-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.1-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.1-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.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
odin_palace_py-0.2.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
odin_palace_py-0.2.1-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.1-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.1-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
odin_palace_py-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-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.1-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
odin_palace_py-0.2.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
odin_palace_py-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 51.4 MB

Release files / odin_palace_py-0.2.1.tar.gz

Download URL odin_palace_py-0.2.1.tar.gz
Size 100.6 kB
Tags Source
SHA-256 checksum
How to use checksums
e53db8aaf6ffa09850443506d010bb7eb44c75f2599b402dcc7298a38a054f1a
BLAKE2b-256 checksum
How to use checksums
d1ad19e41d3528285806d640f4104f97993043a1618b01b4daec2faa1064972d
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 707.7 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c09a484ff2349ca11030215cf4145021de21a63d713b38185b18a386717179a2
BLAKE2b-256 checksum
How to use checksums
40447d41cb596a18cbcc7758a9236ec869ce0572451e44d23a756f652dc86bc9
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 733.7 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
8e2d4270a83a4bdfa9a0392850fcd0ed95956cc50fdc95afd761f29c7af5a06c
BLAKE2b-256 checksum
How to use checksums
4764ca85920bf52d969bfedc47d638b3c28927db49437269bb6a70576133db29
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 765.3 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
24cfb33f56c2c5acd39415fe2b28f48835ffddddbad95bef92d08f48fbbf24aa
BLAKE2b-256 checksum
How to use checksums
a1226e2174899c3ff3f2e5221fe8fd0de062a443c9d067a92b9adf2d99c338f9
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 659.0 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
6f217bac5ee00f97dbf72aac7113fe7062744f49a04d70641d3342ecd536a7d6
BLAKE2b-256 checksum
How to use checksums
946a50edc64ea95bb5ea34c4deabf79b189d3d1ae022cd33300bb593e3a3af9a
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Size 494.4 kB
Tags Linux glibc 2.28+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c8dcd3b0e6b418cf34be54d5092b1c0ea0bd137ba959f9cd84e740a1bb7295f7
BLAKE2b-256 checksum
How to use checksums
f2e48d6e00df96ac38237aa49e86c859926b25fd7c3e05f3b3b62eb1e3229a21
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Size 537.4 kB
Tags Linux glibc 2.28+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
b2ad9a09b862a6292f24f396a8b0ebe5681ecf45ec88b41bc83dc42a1ae82a9c
BLAKE2b-256 checksum
How to use checksums
c4bed1192ede9f2c3528caefeb023fcf92d40935e6de9db6176cfaa7a526fe76
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Size 530.2 kB
Tags Linux glibc 2.28+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a0178ad49aa0b894cdec4317fd4d701c1ce31cf23860487cea1c114e94351bc3
BLAKE2b-256 checksum
How to use checksums
698dbc21f8fac14edb2b899af8c827968b22bb45c762290ee04f5cd082162054
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Size 480.4 kB
Tags Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
638fc350b2a6c22f7eec760f6e138080426e609fdaa5636c37e0e4042784b065
BLAKE2b-256 checksum
How to use checksums
ae4f3285bb2529fa1aec9dac5c620ceed78bd512c7b10b5d914121e595fd3042
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 488.6 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
f3d9008632199ff746556f351188b64705126134ae9a12cff38fe133af043cd1
BLAKE2b-256 checksum
How to use checksums
8fa5d4c31081dc6a7cd4133a20f30c65aacc79d4555ee040a9240f878035b48f
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 519.2 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
8d09a591030656e89d563b971c92bfd557ea1377c11e0245347e1f3e33b19f51
BLAKE2b-256 checksum
How to use checksums
7360dd6eb17f9118877b5bdb38c1dda4f12dd2a383bc672a20868a6d42f9339a
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-win_amd64.whl
Size 414.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
7d3b08cfafa89f527b190526061a8b4ea0334abf5a1561dc4eb5ab1253439d2f
BLAKE2b-256 checksum
How to use checksums
ce0b440e3853b9a6024b3cc30589f2a2a9fe89d6d78275a6bf6f8ecea84ad34d
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 703.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9f96f3fc23f325a16bf850817f7f39051fbb1df4813842acf4c6efce9cfbd99e
BLAKE2b-256 checksum
How to use checksums
8009408689b069cc312393551976b907db4631aaefbdfcdf9346bafaf8d6e92e
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Size 728.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
9f16c8b375c31645392e069fdec2e3415d52feb4e697baa20fbddbfcd42e20ef
BLAKE2b-256 checksum
How to use checksums
a95d1449cbe03bc2e3ee37212c62602ac06e209c4598cf02638d6910edf4c478
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 760.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ae425c5d2423a73fa8b79d91e89e37e20cc41bb8f3b8956f89df8653078d3b07
BLAKE2b-256 checksum
How to use checksums
d43a4f87e488aa312b4c1e3c079b119bb41beac888e533b7922e828f140578ee
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 653.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
50fe4ebb7c48c98cc7b6e2b18d7f5a033f916bb4c2bf9d221280f2f6c9d3f235
BLAKE2b-256 checksum
How to use checksums
f76200358ea34f44024500aba0948f0bf07da13401bb6066b5d81008c2ffbc67
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 490.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1cdbcf896f0f94ea526dcc9309828d3465f4f7e659dbb5dfdc50d572d3597738
BLAKE2b-256 checksum
How to use checksums
4ad96a8ae7b0c30148327f7a007261fe0a47df8e44ce75e7d6c7704a60e114a9
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-manylinux_2_28_s390x.whl
Size 533.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
a7c9204affcd18eef58e03f2ce54be07528d2eeceee67adca366991f38a12677
BLAKE2b-256 checksum
How to use checksums
49ccf2daab930aea3d83c6d89db9b5c0c1913bc9bd12a886f7b9c5fe390b968e
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Size 524.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c11be16866d80107e593c2643a09a813656f7e5f69ddb325a5360fab8a2571b3
BLAKE2b-256 checksum
How to use checksums
9c463d3e3c67826d6e0e76fbebcfd6a8be45375200485189dc8c4ba8e986045f
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 474.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c82a81edcdebfc7510ccd8bc767340f8b13986686c1c65f75792d9285f2de4b3
BLAKE2b-256 checksum
How to use checksums
074acd404373f3a4eb392923b7d6497ff1be34712f8eaa7acc973ddb41a9b5f1
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 484.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c1546a4a23df8a2edc034dc72c7d561632ecf73e8b575f45121dc597b8baf5ba
BLAKE2b-256 checksum
How to use checksums
64f8bfbef40522717f7fdc141127b46efdb4bc4a015d782f94e59406807e2a35
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Size 513.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d87f24f41a60db4770b51ad884f8430930b32b5c89dd6d842b6cddbdcb619915
BLAKE2b-256 checksum
How to use checksums
84574316e5cc86f6620cf9f36f8939939d2a8aa67995e3cb215f790628963aab
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Size 458.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cebd65785dcf1459b296e729bac2f39bc991082bebda05f1da23ffd09c230ec1
BLAKE2b-256 checksum
How to use checksums
3f70660ce34c8ef2fe53d9e588380df127238cb09539acc89ac0c34638d6ed3b
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
Size 472.8 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
35856539d46139f30765bbb8e6db0583cad86dbca0f6e0ac57760e8840455c21
BLAKE2b-256 checksum
How to use checksums
f1a3539b93aa8b59265db38d1412155e1275a1e9c798e2d84b7ffdea912da29f
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-win_amd64.whl
Size 414.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
58e5177bdea0d0d8c29bc12d6cab39f7f40395fb5e34849e51bd8fefaf328c67
BLAKE2b-256 checksum
How to use checksums
ca09484d5ee8eb91164ae7e151218f1a235049cf588152780b4c3a1879a0e2e8
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-win32.whl
Size 403.0 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
e46e80633b7bb0080097dfd93674ea98c0b56983c17ce047ccc2593084231d5d
BLAKE2b-256 checksum
How to use checksums
209001b984e034eddd238ec12d7728cea6c6dfe979bd11a0d3368fd19fbab28f
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 705.1 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7786950d5b7b551532bff2a35516ba861074706c7e13040d16c3a6265be74d7d
BLAKE2b-256 checksum
How to use checksums
b77eb8b6c249f90cbeb68bc6ea989855f36d473246a89950f7b460e16bdd4309
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Size 729.2 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
543b76f220bea49995ad7460dce6a3985f5368cbe7bf72a27c46c21ed070bb08
BLAKE2b-256 checksum
How to use checksums
c3f6e722951565f7a4e41c7fa2397db385056e5c6864bf8a7c606073edf6eeca
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Size 762.4 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
46091f96c35e7420759bc9be56e2e2b50b714e3fddab2c8246c1e276397af0a7
BLAKE2b-256 checksum
How to use checksums
2898ac227beb2ba91683d827b984c6c5f71bc3857b5288a4ceb6b08656408b4a
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 654.6 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2bc48a1d467a0f91021b7220bd3b254268cc4675dc3c52860129a6a111265030
BLAKE2b-256 checksum
How to use checksums
6d5eab404b7d770268602ae184c8cbf8303732091a507b91c9e3beeeab97b7b2
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-manylinux_2_28_x86_64.whl
Size 491.9 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2f24d2fce394e2948df4b9a8a0894975ee71c53e30f2321b04623bbf678bf014
BLAKE2b-256 checksum
How to use checksums
5573761f0d3fdefe06740c77a34d1bb174f925491e4f6861df382b94d5f80626
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-manylinux_2_28_s390x.whl
Size 535.0 kB
Tags CPython 3.14 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
cee243f84ce018a22d1fb998a22ee2fc73f2b023f0c07a43ea2a4791e085c0ca
BLAKE2b-256 checksum
How to use checksums
513d1b9dd45adb131da0ba2804fb71cca5f450dc9e882f7ab6559dac7f6c4920
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Size 525.5 kB
Tags CPython 3.14 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
cd2e4a35b75eb5038e7b79472d00bceec5043f3bfcec862d6a4629b6328f2a2a
BLAKE2b-256 checksum
How to use checksums
d7bcb89fa7fae23062867d842f2e81e13228086e66d66e41f9b2f1256edf52ed
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl
Size 476.2 kB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1029fc1aa214907d3539925221d8ed94bff6f8e8b3ad25a0f547584fa604b444
BLAKE2b-256 checksum
How to use checksums
49509f146cd2b7ae5bb096943c6162de7c1265dc581bff44ddeffd235184835c
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 485.5 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
343d89b60cf59e940a58e44d1ea59f7f30873551c3ca5b9c86006bd1a3c84224
BLAKE2b-256 checksum
How to use checksums
af854b00637dd9b4cc4200d8967fb38c5665dfa62abe0cfd7fc9c7bf0b8acbd5
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Size 514.7 kB
Tags CPython 3.14 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e22d029a143192d96ead2c357d7dd42158b5e3c6f7ee67425a7c83a3b9eb0403
BLAKE2b-256 checksum
How to use checksums
42bb85999db721d3e39212d199bddcfa66269177ac928ec5be6aee55f5826e29
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Size 460.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dd3329998b74b5adbc33222e994b5aa480ce1b1ea52c88888e3e4e14dd27b65c
BLAKE2b-256 checksum
How to use checksums
0218bcf6f18d7fad79ec950d0af733f0a61c0e1fae8d3de2b990be45810934a0
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Size 474.7 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
075a2343e0300c05ab0945d6fec30cf7408b3cc5ac7e88e614d3c45c496e24c5
BLAKE2b-256 checksum
How to use checksums
16655d61797a5cdbc8d13a0f2e6564b46b383e78817a67b80d4fea7294010307
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-win_amd64.whl
Size 415.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
a1f00a52231b257cc8e873bb6296a8da2e4b8b79a79a2f06db5c558f1fc9a845
BLAKE2b-256 checksum
How to use checksums
8554365fa5c9d6d7141897abdd2bf919846675d6f95dde2fbafddda5ffee1918
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-win32.whl
Size 403.0 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
2236dcbd14d8daf3616572012817f71d23fd84c2e205216ddaa00e1044e59950
BLAKE2b-256 checksum
How to use checksums
453be7f906f5a738f4bd1c85419bfd622d678af1a42f6151d92fbaf9f5aaa2f0
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 704.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0e6a8b1b45c1c529dfdc271df59efa877c66e70b8255445ce7b566402a260171
BLAKE2b-256 checksum
How to use checksums
f6a39d09c56ed9fce263101f410bc47d4fb253521def9332a6fadb5ba89f4e1f
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Size 729.1 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d992b21cfcf3cc48af2ca57748739725e484c84c6a1479cd4f68b7c1398170be
BLAKE2b-256 checksum
How to use checksums
bc82b5015cb1c373b3d5d77bb7c19053ae8344c7c649e0251ec7ca643a30e937
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Size 762.3 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
207fb99adcb41baa871d1085868f088f89f722b99d15a891dd958cfa2309fd97
BLAKE2b-256 checksum
How to use checksums
46c6520aa7fa8a9ec151a650eefb92d672101306dbb9d36b30ee359be55424f0
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 654.6 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
264d1ebf59467e61c9e305bc1cdf5d4bbf44194b3114d67c7403e4e1f44daad2
BLAKE2b-256 checksum
How to use checksums
fd7253cc690298977efbf1effacfaaf391a3271be65bf9013d5998ae319a95c7
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
Size 491.7 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3fe07e2b10071a134c75d28cc0fc770ee92c1b6a9809a92d3ae422cacf886eb3
BLAKE2b-256 checksum
How to use checksums
d7b5bbcfce67754359e01f2ef9c07f4d259be6288ad3666d69062982ce519614
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-manylinux_2_28_s390x.whl
Size 534.8 kB
Tags CPython 3.13 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
b39b6d9cee7f8ef2e5bfbf41cf350b09243fee9dbb56b969498545e0e6eeb4cb
BLAKE2b-256 checksum
How to use checksums
36a2dd1ca80d1fc8d9d0cf6dc05e584c538adb6d45438be8aebb87ee4d206d6d
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Size 525.7 kB
Tags CPython 3.13 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1331dcbfe6d0b9a76fc523b80ae5b5f4c98b8a5bbabf64c0de67ff1a17f058a5
BLAKE2b-256 checksum
How to use checksums
44f891823f2dfc1434244cec058114f8a93befc4045d25ad6213488e26fc3bef
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl
Size 476.1 kB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1ac9d49a64d56bf8d2d3b92d1fa0aebbffc026a088946fdd15344a48ff3a58cd
BLAKE2b-256 checksum
How to use checksums
f5e63c47a78f9daaf242df81e674dc45c1d082de60d361e8ada951db2f5591de
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 485.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
2e1b71d2146d142160b0bccb1c9dd000573e9c07cb4b9615d6e4dcafa57fd4bb
BLAKE2b-256 checksum
How to use checksums
a3543c1d9ebe66ac65507dbbdff937f3fca3436b3afce774f666e0f5b1e0e37c
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 514.4 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
45ea9330dcb27852d924f199522165ef663bbf3331b24edf702932c9e490dada
BLAKE2b-256 checksum
How to use checksums
5e10cc0795324ba63ab05581ee1bf39e8535023047074ef25a6ebd416f4414bf
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Size 460.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e0c0d5bdd44a8d11717505c303ec192d069c89684a8728a1923aa19b834380eb
BLAKE2b-256 checksum
How to use checksums
c7aed84e9e574b5ecc78d435fc3c0788832cb790fc5df63243b48c59b9af2074
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Size 474.7 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
21671eb9758d72e1e33cea3167cf1210e6c425aa77b9db7e64b05f8aa86a7084
BLAKE2b-256 checksum
How to use checksums
104a6f07e9530b9ed638c73050029b1ce74fc140d192563de1df7a2add20b238
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-win_amd64.whl
Size 415.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
1200b016cc40ebe29c8d6487e38439e02c2b204500dfc0542bc2e75acadeace2
BLAKE2b-256 checksum
How to use checksums
1597e9e49d5cb49ef297dee76f8fe2a798c0fd19534290eacf12d5e0c20a8938
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-win32.whl
Size 402.9 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
d3a3c00cc11ee7373c945e3f020ce49f03daac6bafe633d44b7a08528b2e41ed
BLAKE2b-256 checksum
How to use checksums
5346979aa54143ed6a4d29fbe7a5724fcbbb9e4a6ded5bde0455a43c8ac93836
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 704.8 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fbd719d55551dd3a1544c4d3f589f200ad8455f09242bf6e7c453c19b822e25e
BLAKE2b-256 checksum
How to use checksums
c277b5834cc6226bbb129c243b505cf80e7d23e6acddc58758f984724d42c9e7
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Size 729.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
8dae3d8b7694889d41127f8af5d1f0c64f391a8b0c2ea7fcb7a6ba82f0c99f34
BLAKE2b-256 checksum
How to use checksums
f90a190f6648f58bab451013a9281add7a0d89abcc41d1cd4b4e13cb53af1fe9
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Size 762.2 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7edb287780f99160d6a98825aef38644bb00e00bebf24442ee203d07b2f251dd
BLAKE2b-256 checksum
How to use checksums
f7124ee85ab3cb9a6b556377cd4848dd63ec9695cbf7a4746a0376c7868d5a0e
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 654.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2572b6f29b445bd7389925e117521281054a842971fc97a18c5aec8379c1ee7c
BLAKE2b-256 checksum
How to use checksums
2a7a8b5728fcfe4b316f759528917579ed92f21350c5ed60d96eecda7368e0f8
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-manylinux_2_28_x86_64.whl
Size 491.7 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
bc600c1aae7ff99b48c47bc184223679fcb3b3f4c6a8a31b642d8a0e139fedb7
BLAKE2b-256 checksum
How to use checksums
39746085bb5f72fe3c43982275fffa73a765a91cc5b0ada89a359b0687232c19
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-manylinux_2_28_s390x.whl
Size 534.7 kB
Tags CPython 3.12 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
63fca10877b6f005b281ea79294ec16d0ebc3d8806f21a733d45687a1743ed1e
BLAKE2b-256 checksum
How to use checksums
1ebbda3a32fb79c97cff9323c3547ba0d8fa0c7a6f2b46bf9330a35e49f78613
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Size 525.9 kB
Tags CPython 3.12 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0d44ee218154656734d54625ad65fd65544f07235490e0bc91e14230d8922972
BLAKE2b-256 checksum
How to use checksums
528bd962f256d8c5b9119137666e5180a82bf2ba4d358c0d56d97c47dd52be2d
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl
Size 476.1 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1a09833753cca26d72c5d15f14c2a08cdd12d5848e53ef5cc774196d13d352a8
BLAKE2b-256 checksum
How to use checksums
b289c9f4decfbb3860748744e7e967a8ad22c6c775def633ef6734560852f57d
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 485.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a29c858d2d5ba972b7682bdb62250752fd52913c2412160b94e423b1fe0efbbc
BLAKE2b-256 checksum
How to use checksums
b2a39e69e20a81e5b1892b491bbd2a00cd27e0e015e5cacd94ea13136689f5a1
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 514.4 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
84e9fb29d377e8284d6ebd451e7b501a39c0d9fd83056006ca2ac485db1dc312
BLAKE2b-256 checksum
How to use checksums
353215cb12ae34435d2fba259ea628beaed5a7e538ee04d67a84b5a668da1e8d
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Size 460.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c68c0e8ac88947d930b7df4987f632af5e3222ede3c582866ec0cfc5d2584bc8
BLAKE2b-256 checksum
How to use checksums
d27b94540c68f36fee81a8d5de5d285f41cda9ccfe527498e54da3a90884ecec
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Size 474.6 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1618d10acea1eb5036ea604b00bbec40f3683eec1323fd1a352b20d3e6c439f5
BLAKE2b-256 checksum
How to use checksums
bfbf87a905cf1f2f34624e4834bd4678709a5a23872d2de60c9f754008fded27
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-win_amd64.whl
Size 417.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a3cef8c3fd97ffc585db163bf38d7ef1b8c63863b6f900a598e81bc98622ebaa
BLAKE2b-256 checksum
How to use checksums
1012d08076035cb8dd6a17f13ae13a037b3da24e0e0b8c161675c48fff3202c9
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-win32.whl
Size 405.2 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
d2774310941f51b853717fea38ca45fc0dded7a863d4328f6ca020a8985445a9
BLAKE2b-256 checksum
How to use checksums
a20521a83fb9dc3aa68fe93f8e1aeb41501935f3c481f2123bae9c80a01bf476
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 705.2 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3233d5b244fbfe73a844386a4fd943f8b57974c08ab495f6bb33b8654f55bc32
BLAKE2b-256 checksum
How to use checksums
b122c31843d3ad2fd2e0e7b9b19f377a6c433412464105ae08deb8cf1f3de8d3
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Size 730.6 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
ac464dd1acbdb6e44eb5b114b424a0501a7ceb16edf8dc058146dabf9b46f10e
BLAKE2b-256 checksum
How to use checksums
eda384dc3f010a3ab6a313398f2e0842870b6618faa37cf330f2f94d7deeff6c
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Size 763.0 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
34eedffff6613c6781c3258335d5d2a45b1b47b1814ce762bf3391e44abf185e
BLAKE2b-256 checksum
How to use checksums
4dce74d1e5c3af89f8a6c89c8716f65eead16d5d339ab37a2bc726b3d118d5e0
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 656.2 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
afcaa774f040da379d841647efa42593e259d1b3ef2c15038cebc9c895f66b3e
BLAKE2b-256 checksum
How to use checksums
a1e892ce09e97ae06908da6fd9d291318dce5b4ee62519a78b56a4670b5efd36
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-manylinux_2_28_x86_64.whl
Size 491.9 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
34771625c14557b14fa869670a73360e3e7b5cfb8c131512833567ddff31d434
BLAKE2b-256 checksum
How to use checksums
909aa55e7b639026416209e145678cea0d54d36643fd35eec63dd72e65f79a65
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-manylinux_2_28_s390x.whl
Size 535.2 kB
Tags CPython 3.11 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
035cf3d4146a720ae8338fd863df1f9d697432c60557a0b65e8a5e75fddd226d
BLAKE2b-256 checksum
How to use checksums
7e5f8dbba111643f39b260f11f6da6cf427f21bcbccbdc7ba38ddedac78833ca
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Size 526.5 kB
Tags CPython 3.11 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c5d7880db1b058d5e00538b7f9a996f14e4ac5765676cd5a29d4893c6c7921e0
BLAKE2b-256 checksum
How to use checksums
efff5c59d1a1e2a2729c364e52f5f3502d9fbbfcdf0aaace7f270af4ffa2df85
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl
Size 477.8 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
29b0f31395fa8b01a70961f25345d3b724b9789d2f6f29a90de3ce81ed292c90
BLAKE2b-256 checksum
How to use checksums
899f590e68314d387081f2592637de56600ed5fb19d5b416ae59e4c273154292
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 486.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
41317e05041dac99b71fa550f96c29a99d1a59b6fe6ca877de85f2d5cf955522
BLAKE2b-256 checksum
How to use checksums
08417b89998788f6dce1b6e6d438ad71b575d1fdf44e4cdd8c7bed9a30a9a5ec
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 515.8 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
402f0cfb3e00b3972f969dd82ac45a8d0c3cf486536e68a3bd5f99f224ec4070
BLAKE2b-256 checksum
How to use checksums
7a119912ebb75ef19a78f5e3464e3627d7aa419e87afc0d341e822b08e348c5e
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Size 463.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ac9bbf7a75977ade8477de8e70a0134f79ffb5ce6b5c2e060e42593ba7086dbe
BLAKE2b-256 checksum
How to use checksums
0980ce56f285f271c8b205421fa69b17be249798ed93d524d19eea21c4eee974
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Size 472.3 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
9aff08ab19b3bb60f0f84e719d2a67c14f94a384b6ebf3d1b0972c5929c55a50
BLAKE2b-256 checksum
How to use checksums
13e9c6932c6e17cedc5b75c1c51b9df3579397838185a3280d31130db24534e9
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-win_amd64.whl
Size 417.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5f734567ef7a08571ffd93e7bfa7f91b302bb5a9bd5a58f75268399a3a26092b
BLAKE2b-256 checksum
How to use checksums
74d864c817c5e50cf5c4d1ec5f1aef612c236eaedf99c535aa487dddffaebacc
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-win32.whl
Size 405.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
d97e958d5bdc398292d576ca45c4911df5a7a23a5ae38c01b22e729e18f16838
BLAKE2b-256 checksum
How to use checksums
fcb8b87f7db12f82c79889ba800eae3c9207c883fe444101940a0e28731e12ea
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 705.7 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d7a81dc9f7e634c8ca2967e95386e7579a9252413cbee28a0e563e9d5b5e8c1a
BLAKE2b-256 checksum
How to use checksums
4a71aa7709524bb712a1efe490c063850801434511a5a8eeff88728a5feafcf3
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Size 731.0 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
a1ac9e3ab78e84ceff34dc4ef05c72bf178e204b5960ddc207977b047de83b15
BLAKE2b-256 checksum
How to use checksums
1742464ccdd5a2c90935d0039cf530b0775620d1fe22d8078e2f200d004e2585
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Size 763.5 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
325ec93efe29299c43fb29489f01453f58a19341f886b0229ca1e3d1ad0ccf4e
BLAKE2b-256 checksum
How to use checksums
b9d345a1de835db4819d41f2a374d65894632b3fd54edc9d3f72f0d68b73b4f1
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 656.8 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8d63b0ab8a3cda5829f64b45fb62c330576d83978c683bd40c31f49f9511b520
BLAKE2b-256 checksum
How to use checksums
bc78b84426eaacc38d8c4f9a4016bd2e2c01730575e60dc135a8c1d6b6462cf5
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-manylinux_2_28_x86_64.whl
Size 492.4 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ba38d5c9a74a02b4c52bac8b2adb58de40a1049ddfd09289ebd49b44f93e6795
BLAKE2b-256 checksum
How to use checksums
be260fd43dc35bbd0c26b51462144164e30599abfdbecede99a44e1be0897200
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-manylinux_2_28_s390x.whl
Size 535.9 kB
Tags CPython 3.10 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
347c72c0e71191a0a65c2ffb1070377efd1166470b37e0aff04722cf540aed80
BLAKE2b-256 checksum
How to use checksums
8aec839790410bc085392f379fd32640a9e4b8f2035aff3d812300dc20c5e16b
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-manylinux_2_28_ppc64le.whl
Size 526.9 kB
Tags CPython 3.10 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5edc38c9a5b9ba054691b8cc2f19a965aef211ac8f082baeb0d0254cc531344a
BLAKE2b-256 checksum
How to use checksums
1e0acedc397d8868da53929c484f2d627183582495a7ee9f12d25841505b4248
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-manylinux_2_28_aarch64.whl
Size 478.2 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8bcfda683405c7fbb1fe7b53480db47c14363f12d1ad559466df4f8bfa8b0fbc
BLAKE2b-256 checksum
How to use checksums
9e67ccba4f1ec8872924baa2b974a8a81cb52dd4e0fa032e69628d8b576ef2e2
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 486.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
bb1733c2734b1c50829426cbd4f45df60ba5835d4a7acf8e3a7ecc790ad2a607
BLAKE2b-256 checksum
How to use checksums
3f51e4a87dff7905fa88bd6181f8fed8598ea101d2398a35064c04c1a25894d2
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 516.3 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
781d69a2be5eba7ca8f865c9e4955b83b32b045cd77aac857af2f7a218a4f194
BLAKE2b-256 checksum
How to use checksums
58718d2e8888f639a6e43e368cbfe34c62709dae6981843cdc4196cfa56f9ff9
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Size 463.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
99891a76d6baaf72672e81611039186ba2145adf765bb04914f373c39ae6d2ba
BLAKE2b-256 checksum
How to use checksums
a09add498c8524711fc8fb900773fd4e592ab48e300bd3519792be5956c004aa
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 9, 2026.

Transparency log

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

Download URL odin_palace_py-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Size 472.8 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
914b2483d646f8d3799de2df3ec7c9ec9ef4428e0cc6ed457e91ad71d17c8cca
BLAKE2b-256 checksum
How to use checksums
114b90a89dc5ffe18c736ac5e16c96f5fae47966326cea7829641204c58a773f
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 9, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.1 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