Skip to main content

Python bindings for odin_palace 1C bank statement parser

Project description

odin_palace_py

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.payee_inn} ({doc.payee})")
    print(f"    Контрагент: {doc.counterparty_inn} ({doc.counterparty})")

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

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}")

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

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

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+
  • PyPy 3.10+

Лицензия

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

odin_palace_py-0.1.0.tar.gz (64.7 kB view details)

Uploaded Source

Built Distributions

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

odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (690.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (719.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (754.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (639.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (522.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (514.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (502.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (691.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (720.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (755.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (640.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (523.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (515.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (479.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (462.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (689.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl (718.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (753.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (637.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (513.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-cp314-cp314-win_amd64.whl (373.2 kB view details)

Uploaded CPython 3.14Windows x86-64

odin_palace_py-0.1.0-cp314-cp314-win32.whl (368.9 kB view details)

Uploaded CPython 3.14Windows x86

odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (689.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_i686.whl (719.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (754.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (639.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (513.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (502.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

odin_palace_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (441.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

odin_palace_py-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (460.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (688.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (718.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (753.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (637.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (512.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-cp313-cp313-win_amd64.whl (373.4 kB view details)

Uploaded CPython 3.13Windows x86-64

odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (689.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (719.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (754.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (638.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (522.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (513.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (502.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

odin_palace_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (441.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

odin_palace_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (460.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

odin_palace_py-0.1.0-cp312-cp312-win_amd64.whl (373.4 kB view details)

Uploaded CPython 3.12Windows x86-64

odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (689.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (719.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (754.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (638.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (522.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (513.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (502.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

odin_palace_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (440.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

odin_palace_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (460.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

odin_palace_py-0.1.0-cp311-cp311-win_amd64.whl (374.1 kB view details)

Uploaded CPython 3.11Windows x86-64

odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (690.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (719.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (755.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (639.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (522.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (514.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (478.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (502.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

odin_palace_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (441.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

odin_palace_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (459.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

odin_palace_py-0.1.0-cp310-cp310-win_amd64.whl (374.6 kB view details)

Uploaded CPython 3.10Windows x86-64

odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (690.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (719.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (755.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (639.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (478.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (523.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (515.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (478.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

odin_palace_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (503.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for odin_palace_py-0.1.0.tar.gz
Algorithm Hash digest
SHA256 04bfbce6b8f3e02e05db4aa03426fabbbffe3559356c8224b58ec61fb036504f
MD5 f7af05edbec1fafcc9005725066772e6
BLAKE2b-256 7554d4665e99e1be15b1464d1917bed70b4c41863add6d272dc52f17eb687bfa

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42e480934a3bddd9fac4a72de97646a394e7a5c47762cde21db2fe15b983e81a
MD5 939d894078920bf48f55278ed7158955
BLAKE2b-256 c0f5add161e91e1d15ce841c759ef89277eb3a4524555e30d593d8aaec8d68d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cde0b88021592c9bc1e412f444d9e1763bb962e3a24e3f85ddd30d4ea9613790
MD5 d6535f888e7d10424a27e52ddddcb602
BLAKE2b-256 4e0590674d13badf012f1a2d3e63a165e99ac43d0383755f6963fa4f9cfa0258

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4dc906649499a51388bcc9a3072c15dc989936d297285be1053a379289102021
MD5 8ebc4a978a6f6424d44b3e5e99848413
BLAKE2b-256 cbcf99b99faeec2fb5e617562d62b8d2f03edcb74bcd4b07dbdf84dbc2dac3b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8c7d2d41ac01787fadb02ac9d410cd8cb56f5b06f2e22f785b1848af0f47fcc
MD5 335155619ae74e3b5c9ef2d6c0bf48b3
BLAKE2b-256 9c3756e367ac071d5005d82258ffe7827fd5878bc9a611ea602319d54eaa74b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea652444b0382c6eed59c6fd65da0280e2ddfd84f8e412677fc082a3cdd72176
MD5 bb138811051ac357b623499e73f14569
BLAKE2b-256 c139717e5184f982b011865cfe7a3a4ee9375ebc5789a4daf82d6d060d2c5b4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f4e8260c06b815d2f7d46742cab0bd533293327dfe725ac3a1af29180b5c94d
MD5 8699ca398c023e7e9518b60a60f1d7de
BLAKE2b-256 074263bb8301dc8e364d069566c44507016aece67b83efc510cc749bf6c92589

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b7a5052a6bcab9962a418ca91090b780e146fa85a32996dd5d67c6d58f6d50c
MD5 25f78ff2e03e366c9d56609a7e948c21
BLAKE2b-256 115bfd97743044ac20f966e5df619adb32c95488c36df0993a86ab5036b96b4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e82e84f981d446814dcde23afb4180e8f10e613e6790429c2dc42ebcf785aa10
MD5 2c277d5eddbe63c1415443cd34ab8e80
BLAKE2b-256 ebcff0a4a7c9f16288f8f85224406192bde71fb4984d82f0b36283140a65cf18

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7325c5558d6cfd3af3267764d85189342576ec424d135ba327ceae1ebf9fdce6
MD5 9ac1666d92fda184bd4815906c8d477b
BLAKE2b-256 3639055da2bff0ecc832e89e2421d5dde9355535a204ae2c4d09c73432ce9085

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 052c1cc66dee9057333c160f27b924c460fc630f2160cf5a91f3a454d8dcbf9c
MD5 55edaea3f787d2f3ee0111d7c472a5e5
BLAKE2b-256 bad4c2e29bb0d0bb9607e955b919c185e0430011f3bb60b1bc853e8b710e8266

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3394a4e715b8010a0b16ebce63d931b9b509fbd118ff21349a03b231491048d9
MD5 652e331ce9f3289750704e48550c72e3
BLAKE2b-256 ab27299fbab8a116d78c10d1debb2df1a1707b13a8c0106947c1c4cbab5bee20

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d861e347bcfb9168e07ba369b785e59338203fd0c4a4813082dc07cff6ecf394
MD5 cff471f4c923a7827a3fc1298a34e569
BLAKE2b-256 2d401af923ea24d32fc01a2a568d7e9e91d1a3dfaf6644bbe966bfbda0672110

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 584f1c96e0e0f6553246ce6034cf410d266bf041b084f7b079adf97d72771601
MD5 21723f808c89194524cc25fe6471edf0
BLAKE2b-256 fe0ad8d1aa3170832b70a2d158e0383acde71a61f35a14ab9360f325ada2c73c

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73d0b499208d6716703ebfdbc8740d4d7ebd3506999138023191944bef78a138
MD5 2de47f901d547520f0b23d1f92140541
BLAKE2b-256 1a15aadff00a6c3028c41dc2f758ee395753da3f92ef175a987e0200bd279c5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 705fde757d4e7678b41a68ee17bc8b9aef61fa8b8431829d5bc684959193198f
MD5 1032787cd7b2ccffe49b201358a4b3fa
BLAKE2b-256 efd5b34d2ed9beafcc0ff168d1d288e88e5482ccea5db6e73ba01e5d02980ad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69370dce9a4ac622a0a565940273b38968e3596a3ecb5e48c21fd208d594319e
MD5 731b84d3079656ec50a94d81a6c359c2
BLAKE2b-256 0015c5c5cb14e9c557eb4949201a81a67b5ee5adf302641f06d14a81397bfce6

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 edd1ce242b37e2ecbff8d8e465bd710937797cb9f3d0874bd50121d01602f235
MD5 7e72e663e611fa91c3b601846eb50a6f
BLAKE2b-256 d5a9c0b6adb25a8293219cbb9de49b354d801baf5d8ac0df7b926c4f129c48f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9103ab7ead6a3a63626ba12d758a823a70de4c23133d62ba041080e22a7e8b7
MD5 8d621783e3488c0fc294e81c25c939a1
BLAKE2b-256 8c5000551f7c1eddf0b957464389f841a12d5595cc0becaf640277bc7c2ddf9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89c7800481e7299bd9bb4394e2534921140ff2a315facc0bc85146065c640027
MD5 5ab947d2bd29b52e0ec81fc66be39344
BLAKE2b-256 57daa19561dcac349292a1f73c83927ad02f11875591457881361dd1ee833e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00e22057fa996efd7bb17688e5d9ee7221bc207181c8fbbbdb5cc9869c4279a7
MD5 3737deea570863850aeff6197d247077
BLAKE2b-256 49ba37e1655a397917152e2aadc122ee0a0ebc898af89829507bb8faccbd275c

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22c362094426bb1c0a0f0af94075853c4981cc6abdb14ddc5e5c33e032836f22
MD5 7ae6fa0c895eed431085e0bfc07333a6
BLAKE2b-256 7dfe15c38ee569ded87a80cc8b539781573896afb9262ff9c9f6ad618896d71d

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff10517237ccebd3eb2d10a63da5a8731127de4dc4162e70b843015bd216c508
MD5 405fa4b93e8d3ffa160d339d040cf6d5
BLAKE2b-256 24c68ede91d6f8bd73f054f97a3d623e469d4bff281d25c02dd27f13a5356175

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e87971f2dfe178a584e5a7da8a37224979ee7868ce34afba1f52efc51b1d0507
MD5 7b65e2909e317259911cd6e4545d458c
BLAKE2b-256 2f384ecbef480c00de44d649cfc67cee00831257bbe878acc337cbf761fce45b

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2304f956f2288b7bd21d368d80dd95309765dd11f4489bd940a74c3f3aadd3e
MD5 1d28e3fd9d265f0a5d551b16c1fdb40f
BLAKE2b-256 11ba9302a17de49c72b170671940f69694462ff1e40357e5da87b843215365df

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06ae773a159c6c0eed587a561413407f39b89fea0bba71635b0e425b926b7e77
MD5 c7dde8a69b4ff515317b695f8b5c8546
BLAKE2b-256 8435715c74e2a3a43d79073a16098ab6a87d82ff8bd17a30894f29f0b6b0cc48

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3dd88a5eb905b56de382778561d07d6078ea8d9d423bf55e765f80f8b2e855e1
MD5 8393b0da7ad6b838b013af91934c4f81
BLAKE2b-256 595e87b88d5b91d1646a08b62100af79c2b5342b243598ddbdeb4be4a0ecd590

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 55e1194e0103f5d7a5a405c86f3837afab97ea4255920333f1d4b2840f63b97b
MD5 790d10fdac5512dade4d2b352e9ac06c
BLAKE2b-256 869730be9a4710066872ca51df570ef3084a7ecf14b6196d865466637c79361e

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: odin_palace_py-0.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 368.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e2f9c8876bdb914622d69ba541bc28ac221c7a1227b89c956dbe272c8b8f15a4
MD5 caf9ee5fcc5f6a51510eb3b2be0255f2
BLAKE2b-256 3531e0fc5da77bdd9e17f82c85f284dff70018342a7d66e46a0a9903f98034bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-win32.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df60e263aa2238dc7f62ecd775bbd1662ee9c5218cd35142bc25cd229d72eb82
MD5 5abea1a9a1609c4a636a4762c7544cc0
BLAKE2b-256 d0bf08c11114de847f6e5ed6a99f10d04382d9b3a0a9621302c130c0a7b71593

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a58e9d1218406a351e3e4491a87ebe4fd30e54b5eedca5e98ec8b40fd835f1a2
MD5 5ef1789c01b0ebbb9e6ff2ef3090f8d1
BLAKE2b-256 eecd42da223910e4f76f068559c0720a5a66a0915fec022f4332179975ee5d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c992fcf4ffba50790053e164d58cb7371a03ba571688831378867e42c755a04f
MD5 44ab2c0fda5f2d29f9ffbe0e1a23e52a
BLAKE2b-256 0c45b3372e40a88095ddd4ab3d038020d33b93a93c57e1fb2000f9f303e6836a

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb9e9be623a4a676c91d0c4560cb5b07415c29fad9252274f787cf774ed61585
MD5 e1c1f669fb80f272db09d12585fb9445
BLAKE2b-256 30626a2fb7ee5032be1c2d1fbd60a9686a40a5224131543d20a84f648c0d56e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4727316295ce12736639f8f80caa5fd5706c03a85762c33a610264f11e1b971
MD5 13ddb4e2ca1d6667bf1548d28e2cad6f
BLAKE2b-256 dfe054ccb0944920a348bd8d397775884a0f919fd135d2bf29561db79349456d

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87e5c941762f5eda16719004ce555d04003b6f167ed9e3daad5ddc733ec79c9a
MD5 3d81103e59cf43ce4c9a2b54848a487b
BLAKE2b-256 c1be9916509b7ac21b011ec9b3a761542c5023473954cfb8e801d93fd3126aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe47fd89fe72c9bb835abfe5ff5c804d75e4c17c58e5ca67ea242af1ef53b17b
MD5 f84637f5604668be67f8ef53d2ad8cc2
BLAKE2b-256 53f3d8c5618f8c4310a77372d79ed91b2adb2a5366a8613ca7604efadd30c370

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ac8178cf2abe08a6674322d1e82b5638593c4278364e2757d0cac73809e15c2
MD5 933f6f70f5de22b42786ef7c0e524cb4
BLAKE2b-256 f348f0bc31d0e12fa557cb1ddb14ab384de8361e45de08a3b0fbce711e7f5138

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee9c607fc3404de7cd2effc8016d4635040f2c77c0675e1c6cb506a1ee702a56
MD5 e75a3fadf93f1fe9ce3c11addfbfc0a6
BLAKE2b-256 8d66d0dce14df219e7da8b03f782a37efbd19cba0c3cd60c2ae548e2bbd96adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7cad4b6893abd177713675a021251875a62ed9613bed0cea4929e905d2c2561b
MD5 5f6133ffed63fd2d7bf640b95d3097f6
BLAKE2b-256 e54db349c88c6b871149264ddfc764962b2498ab83ab1199f2c8cb2876b39643

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6610aef0e88e936209f240771e52a3a3f29652371c67270227c80ef1f332e7b
MD5 3432f773b6b3274f4aa86a7f81ab038f
BLAKE2b-256 b3fc820bca26c25808134294d73a09a47c25e0550ff92081b8f9c8e6e763fedd

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5973de51ab2f26404f9adb21bc27485b96e92434dd172b53e2f019230dd0d3df
MD5 82495a645ee9018c4bd27144d6936849
BLAKE2b-256 381668ab54cca3735fcda01fe75f8777effcd7d238b5a9e3b0bb6bfa358cd379

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1acd97fa035134378c4bfdf378ccce328ab296cce342f59be31cba023592dcfb
MD5 df3afa73f2e0acf822e72fd8bc50ef72
BLAKE2b-256 ff89c6c5a585621230a73f492116fae694f144c4d477ee3ee82fd9f6cfda09aa

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e4cbd67356c7e8f894732b7fb59492febfff71a48c1fce4643248498845040f
MD5 9c86e02e4c24db7c68ccbfdf1009da6c
BLAKE2b-256 756ba8e51fda087910e04a57d172017626aec20b4aecbb78972eec8e8598a321

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bf50ebf85a43b402ca3f0eb33eb09ab1752573f2094d0236b926a1aad22cc95
MD5 954a8e1d00b747baeaa27c162ee3e7c2
BLAKE2b-256 457bfeed719e73f3e49b14b5bc8b89367bb9f3e52e1db5ac68062d3b9432c0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 174d1a91fdc03aad9e5fa25c82582b38d76be4fb063485974d68fb979aa5c6e5
MD5 d02ab22a7afe06cbd22a862756be61ef
BLAKE2b-256 17942c7915a7985f2ecc5010481322039594d57b6959eb136877e646f1a138d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 122650d21a99d3a18eb775ea5496edd2fe87df9f791c3e7c9b98fb6799e7abf4
MD5 9c75443e9c24220877d2ad83d26c0f52
BLAKE2b-256 11372bc1de7c89a307e7b81550c8e066169ee4eed8c21efb377ceeda0572ab21

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a99252478aaaaad63110db225d74d34bf9f78ce84b737285f9899b42e00481fb
MD5 0f735de67546cc585f7007c3d3b7851a
BLAKE2b-256 d56f57bf08fa031f2ee9aafa558e620ffad9d69cbfb5355470c07850a43dbed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d20a181ff194db9c4a35422d0d3ba76c9a02c28317b600cac944ef483b865f2
MD5 3b18e6723f2b1ce9905e3c304cb1eb31
BLAKE2b-256 c8da39d57225868a6700ab190a6662752902da4590f57f73fb13cd53a79432b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 597576ce3e793c9dc4069949319cd16a0263e90bc080fefe865034c4cbd5b728
MD5 3f2c4c77718b2cdd29c51efb4f948e0c
BLAKE2b-256 35f6c500971a2ce816966f978bf9bb0a788cadb4230c5e2a5553240513bf08c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 377ec8cbbce5cdf18557d00de17f865902adea3058ea74eb6f47e0f668db3392
MD5 df8d7461fb60a73c3f58ed3df88be305
BLAKE2b-256 7fb8bab0c34aadf0d772adf9ee796aace368743f82f7275bcc5850822396427a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17d605e63a0c0bc04e4ae7c8ab519930d2c9a7d79b356220151ba1f277cd398e
MD5 5137aa483439551f7869310464eeb217
BLAKE2b-256 2f382847f0587889aaed59d55f1d16465943ea5b72c206724cf52e228d033dfc

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aafa6d55f8dfa029afd6c89e8c43df68bde7ebd264dfe9a888f790cd8f7c0b0d
MD5 33c962a4c7ad37de0b82bd28e6c7bde4
BLAKE2b-256 58f42bab09cdc105aad4fd994f1e634344f1fbf5d277aaba0e041ffee71c30e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6feaab2c34a0ba109ae738c1da80d857f9e4d5bb06a4d6b2cede338ffdbac9c
MD5 d3a0ebf4220cd59c87d6104ee26d2a38
BLAKE2b-256 464ec5afeb859df91b502f03fc517cc305852a18f9800bee2344acc790b52351

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6782824a7bc9db48e64316bfe29011ff519cb538cae33b43dda3567af86dcd31
MD5 8f5e3d21cde5a75b27fbe7b8e3aba958
BLAKE2b-256 7d9f4957e7cb01aac5e69b834cdac70d6f9368e465323f9eba0f2ca36381a915

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a32201a9d5d06da9194c3362cd4b4ede70a886c22cd94344a8fa65b475978c1
MD5 e27f3febb9351242f0f40b69e8433477
BLAKE2b-256 cc30932f7c3c161331ec35d651e6c70cd90d43edda9cc477b851811dd5f95319

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a0ab32d83ad7386e4ce4106b537255c03a8f9532ab0533215a35df0171b26d2
MD5 c6bd099fa3513c58bbfe67ef6d366366
BLAKE2b-256 147caa82802c4c90a485899acd07445a015e7ec60d391c2b6f3ecb0725edadeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3425e15a7f86d12791d54f9a1a923824d1291b2c21a1d39fc0af6e27b0daef15
MD5 2452c19a627779b84833fdd7d6d1f47b
BLAKE2b-256 cf94990eb92401db6077837fa43467cdb901032b8bee4a8bb7902fbbeb04074a

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63a945589f79a6dcfae36b9641e4a2916dc38e6ff3addef1461bb9aefcc760f1
MD5 2ebf816519097edefd8514982f8a7746
BLAKE2b-256 85efe9d4b12b55c9f4f1eb84b9606a486260d877a25243404d7932328e2a295d

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 169ec212d852ca6a69cd970e469b029920dee490779efddd45d4dd91a3288012
MD5 152476747215fefd8cd0c0431aecf1b0
BLAKE2b-256 51d72dd75cf55ad8cbacf8db655767405dd78e9852840aa50dd0dd0554756f56

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1494eac2bdbf0aac03db2b703db2a171ed1e5066c5bb8ba69df9325a65ad7e01
MD5 c5b75c9083c1dae04075939bc06d769e
BLAKE2b-256 40e764599efa110f534f3ed48589bbb40fcf45245e3fe9dfe96aa8973c22d7e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca7eb4179245a29b3fe625d7b347f18eb421e25ce7e38341e8404f4802f622e5
MD5 8eea3a2ba4a4775e015b257fdb9bc589
BLAKE2b-256 fdc19728012321085b7c2e295f8b5e47983827e9196c601921dbaf2fff0811c0

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8210a02698ca154e0f3c0553de298bf841d7f6ca81644e309a4f7080a8ea6c8a
MD5 e05e8ddb33c877fd5aa30f91eed448eb
BLAKE2b-256 e3d27d2c097e97c3077fb4c0d65de1c3917024fc2cd45945653149f21174a1ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c988cab73884a9c406ca48dd4ced69f47ebdef47ede10a69e3aca6c1b243f11f
MD5 237a7aafa73297aaa438906318767ad1
BLAKE2b-256 3cfbba3d40c68af7d6b197bfec6fe64ce06b0619380ada824166a88ace8021e9

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2907015324d10b0aac5060522449aa6daaf51852a3fa644d252f04699085e4c8
MD5 6564f666305a38b6507e36992b93d576
BLAKE2b-256 d0f31243b1cf32bf2269c941ddb5d6469def86d520e1607921f125722842b22d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffe6e1b10423dbfb9e6f4366f233fad80fb46d44f0b3f479edf717acdae0e56e
MD5 dae54b7c7bce5726da0aac0bb1958ba1
BLAKE2b-256 a889771e7db0019559c1319c7cc9cb1485f4ffb9b18e9300d160b128bb5c1b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 02dd02f19f4db31764f04804f99d06e6b41a05a587aec47f5d31b3ece2aab3df
MD5 c1c94e15b99b16923e240cd489494a14
BLAKE2b-256 3caf0d0fa2f2f1e7bc580322ab84472390cfc4f570ad2d9d382e955d48485840

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c3f0a3f4be69ea011dbed17f40d660980c822bb487f3ea7c7df216baa9201fa
MD5 bf11cc5d322256d8417073090eb3b445
BLAKE2b-256 77923e692c063461192b2604b94d2bd06c7267c905197b362eb0815fe5f2f254

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e40c11d772dac72e47bfaebcf2b934cc84bfce46fb376bec6b5a1bf8f6df55f
MD5 25fe9f63ef5377bdfa0a8bf5becabf0c
BLAKE2b-256 b874accbf555525accebfbbcfc87df5314f5229faab423059f01c36b06bc891c

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 265bcdfd207483a004aa2ffe3f8a142a5f468909b9053a1f1ed22595a851ef86
MD5 7de0be688df7f863c1b69791cac641ee
BLAKE2b-256 2af8ace18dc5da98b871499f12e4edb173bf5d0c7702f0545e2d4b4263040add

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3ea3434b5e74bb8fd84a883497f9a29289c661caf7812c593cd4eace2bc2ec7
MD5 eaf2be97f8153f7f93b678c5a9fdb945
BLAKE2b-256 88683059b5aa61f0dce4c9fd09e2837f3b0c71f0f63704432afba31a9930dbee

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73528728fa4112ed0db97f2a669e4015d2c4f05bef6c4a98ef62f61eed6f5d27
MD5 52705c450088dbdf1098ff174fd3b6b7
BLAKE2b-256 43884e0d22c3855fe15a6acb5bc5190d2d6214651b8985673576c0287fa95b16

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a8a3226c6973fe9b21698bdc0ce59e8364af59423129b0008902c9d38d7b497
MD5 498aa573fd3827a5f865f5a914a77b26
BLAKE2b-256 9e16a73e561b4a7a37e370b7e284abf2673a2d7244b2f06e75935535fad0579c

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 859fffbd4f778deb43198ff7473c3876fb0b78181be80d23825fd4874a192fed
MD5 94f5f90f81520b1bb9858d7d22acbafa
BLAKE2b-256 74d85adf1f7c630f22c07dd910547f033e9f09f5f44aaf441044b6f1d91eb4b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88fc4879cae87dcf5882d5076c8dbb3fdc518d913e442e2e8997ead21b251c4c
MD5 4d31e0ea0e4336d284d33305aeb38aa0
BLAKE2b-256 3fca05e67565ae28ca1c9fa79d55f6f7d4e614d60da60bdf68196ec14a3ee6be

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1b3a1a51c60e91d094df57a651596be1903b666b300015f327fb38e6bb1aaf4
MD5 e31df57d3df7398093337bd43da5c751
BLAKE2b-256 80988c9bfe4723b8236230c811479a80953f68038febfbb394d2d1e3cb7a9520

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4b9b97a5d87fc050cd78dfa4df4197488087bbc533f4991ab54f07beb2eb4cff
MD5 fa5b369ec8343c180d19c7fcc43e7bfe
BLAKE2b-256 dbbcc9f04761c3a4821c5882b3738a33b65bb6b8d40dc6542166820f3a8b4627

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 009c975970b949b2d99a7e859d1628fe70aac5983ee0063557cc4d6557febd0e
MD5 28e9bc60620448f421a451ce2ce7a372
BLAKE2b-256 f8a7f09736f5995851952c3a551335a004fa27d214e1ca060cb8129ca63d0f6d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 add3cc54c82b9d767062ec68382de5d9284fc35d5973ee6d9af2aa908a5f8512
MD5 0131a9f4ddda8a9858869a8106c8f868
BLAKE2b-256 211ea83e86b9e9b193cf07baaf9e5bc9d6bea5a51f71f0ead4b355fd420e7618

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 866a871be0f3c6aad0a22a2ddf5a1ac087cfd03f915d216b927856b9ca42a37b
MD5 fb184cb8ba7e2962d2a745961745c3f1
BLAKE2b-256 be60d79eff86f2aa580885acddf89d1e4f811e2069a215a47241f9c3492e4269

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ce37330ece15c115e9d061736569b500da172de86c784dc86c43072325d8cc1
MD5 53c8029fab3b9baa4703352e477b3c1e
BLAKE2b-256 225d109569c84939802646d721a5d284224029bbca70d5c436fa12cc05bdc6d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fde720fa8906f98905ca5f62cd50d656808ad8309d8ccea32563c75413ad69f0
MD5 78c3389dbae294ad1e917db503ffa1cc
BLAKE2b-256 70e9676743f85f374975c99ab6b09a83d6850582a0ced7e28c6e4a067ac23e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3ee9fd85c3d0ba7d81c71cd4065348c18c1a632de8444619b6e1046cc88ee19
MD5 e44d4b05d8c63b2afe8d2074f7820673
BLAKE2b-256 c7df4490618e67699415b5971d970c0f862db8821855c91d460bfa2c16fe95a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 764d4dcb798bd78b77f979b1ddb5071117b359f1a15001b1a81f16829de888a9
MD5 0228da3c02b00d59b5bd801b56cd3e3b
BLAKE2b-256 f4a945ca25ba57e25f3318b117e1fab3c55c94cd92e969e3331c3d4438ff14f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6209d0b868b549d042f47c74a3c7aff4caa65ecc770b5236306d415f9c07d452
MD5 5b4cab05e0652c4fd0dc5e359a0024a5
BLAKE2b-256 3df9877bd517afff043488ca0bb9d198f5a50137c6c2c6043d2426278ad79d91

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93a14ee185b28a27420020b25edb49f1a7f31d0cf1c73f0d9e42236ebc3a5f86
MD5 68c278e46ed6523a6f9f41581b28c534
BLAKE2b-256 95e0505951daa2f9665aeb0fd111555af482dfd9af11ee61e91fac5b34a13451

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7407d85a14d8fb34c68fd431b780fd24962cad7ae398136bd9a6d9ac660d767
MD5 f8f28741e4bfd4fcec852bc3c7597ab8
BLAKE2b-256 e0a0577b2a1a0800b258ccfb3b48721cffcad4e0038e7dad3eb2596207288f80

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6c456efc670edd2e42748271c4272880005d2918ed83cb36353459f944fe0a1
MD5 dc99c8a1fbcd515c2ade758d5b1589c8
BLAKE2b-256 28298f3af4caadb57252fb0029c70835150cb7e7de00bb6d885b70557b458908

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef2284d826bbba52d5aefdc0d56982f4c8b043006661aa2e69f6616022edf1a0
MD5 92bb787ea148d94bc1abf5e5b58fbed0
BLAKE2b-256 c6ff0fef13f3215b3f1cac3623f34dff860d30ff3079adf932ca58f41766f99f

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7ae5f550ed776612e25739a9efa19504eec40fb2b33ad95885b83612edd7c717
MD5 77448b556f5ad563cc087b85c119238b
BLAKE2b-256 dd94c4f32ec062ac524418dcac66a57484d423ddcb8f431ec8da903bca11d003

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

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

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df1ab58d5fc5dd1942f5504955f27a8c6c7f95d201f73a9c1715a5f4661261ac
MD5 3decb7151e249fd07e357144dc9b87ef
BLAKE2b-256 78edf0b47bd28dd6c3cf5164a2fe7e90f4be2e86bb354c124094796c2483f64a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7748b112ad2adcd1a3b428cd5d6db0dfbd705447aad0a7e4951a34721f9fc451
MD5 4390c55e5c2941a74a157cc718da5c75
BLAKE2b-256 fb151a3343c89d332b94311b86959cab9bdb4937dff2a37782256e4846a122d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 250cf3efb41fd71bcea23a6f5cf219efbdb64a15cba65f3be28413b34ebb1dad
MD5 08e4d419e28be06649762233ac272c27
BLAKE2b-256 c93d8e82a3de7e4022a3b0f11727035826edef6eab7a1603e93b651e70039a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0acf6e64f62b96e51d59298e3aaef70ae6b6ac5aeb53786b4cea5f03771e8afb
MD5 39c77f55a0e42c347e24f40eb004f98a
BLAKE2b-256 20c1659e46a320bd8fe56c52f9636d00ce7dcb8e5f9bcbcf4b47a47a69eafc66

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d1a55aa125c1964da86ae86060ff8acec647f33abfcae003f3c26f3e3f4b61c
MD5 20ca1036323fedaeba691c54082e4540
BLAKE2b-256 5af7210b2e522612ee095649c8da2517c61d7f9dbac866fd65f8d47291d7a114

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92f444f53f4f7b2f4812c2858c088af3ee7395c1c5a0190043d289a7dfefc5e3
MD5 71f7e7b9a464f9334f97607507699da7
BLAKE2b-256 f498f8135eaca5bd69328d79bb92ea3231dfb753271c0dd9030424476a7f69e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95820d6f268a1379bc5a2863e0477d8eae867d98255c5fb8aef084cad947fc5e
MD5 6b3719caa376bdde24c2d416f5d246fc
BLAKE2b-256 9f6023ec50d03620cb2afc760e478f9f8332b96ea5b0669ce7d2589c305b973e

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec5938e51447868c2345790a6a67b2aa5daf42dbea4b39a99bd357056547fbea
MD5 0b671b76bc23abd99a532da5bbcd87d7
BLAKE2b-256 46b1e0e6600f3869b5887161b8bbf37c3bd94c38d0e6cc4972abf0236540ca63

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67429572331a5cd19f833d069d65b23008f53bf85fb77ceb96657821d04dab81
MD5 72099e5308b2118f1f1d91e52f1d114a
BLAKE2b-256 fc42cc4929a4b5f2324560f8d298d0372f92fa25714f1718581a59a0ffded710

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

File details

Details for the file odin_palace_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 88c245557080343d9a0528fffef4a8b554d292cdb50c053bf5f1f78d7b2943eb
MD5 894ff1ada30a7a78e5c7e9c47c18fa50
BLAKE2b-256 188f964b2cec4e053a35a92ed9c1d2edd8c2d3ca9af836c1d6a2de3f66ccc8ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on tochka-public/odin_palace_py

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page