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.2.tar.gz (66.6 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (689.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

odin_palace_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (717.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

odin_palace_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (752.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (639.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (521.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (514.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (461.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (501.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

odin_palace_py-0.1.2-cp314-cp314t-win_amd64.whl (373.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

odin_palace_py-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (689.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

odin_palace_py-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (717.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

odin_palace_py-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (751.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (638.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl (479.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_s390x.whl (520.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_ppc64le.whl (514.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl (460.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (474.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (437.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

odin_palace_py-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

odin_palace_py-0.1.2-cp314-cp314-win_amd64.whl (375.1 kB view details)

Uploaded CPython 3.14Windows x86-64

odin_palace_py-0.1.2-cp314-cp314-win32.whl (369.6 kB view details)

Uploaded CPython 3.14Windows x86

odin_palace_py-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (691.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (719.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

odin_palace_py-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (753.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (640.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl (481.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_s390x.whl (522.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_ppc64le.whl (516.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl (462.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

odin_palace_py-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (503.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

odin_palace_py-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (440.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

odin_palace_py-0.1.2-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.2-cp313-cp313-win_amd64.whl (377.8 kB view details)

Uploaded CPython 3.13Windows x86-64

odin_palace_py-0.1.2-cp313-cp313-win32.whl (369.5 kB view details)

Uploaded CPython 3.13Windows x86

odin_palace_py-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (693.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (719.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

odin_palace_py-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (752.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (641.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl (483.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_s390x.whl (524.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_ppc64le.whl (517.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl (464.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

odin_palace_py-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (503.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

odin_palace_py-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (440.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

odin_palace_py-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (460.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

odin_palace_py-0.1.2-cp312-cp312-win_amd64.whl (377.7 kB view details)

Uploaded CPython 3.12Windows x86-64

odin_palace_py-0.1.2-cp312-cp312-win32.whl (369.4 kB view details)

Uploaded CPython 3.12Windows x86

odin_palace_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (693.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (719.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

odin_palace_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (752.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (641.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl (483.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_s390x.whl (524.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_ppc64le.whl (517.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl (464.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

odin_palace_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (476.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (503.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

odin_palace_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (440.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

odin_palace_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (459.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

odin_palace_py-0.1.2-cp311-cp311-win_amd64.whl (373.2 kB view details)

Uploaded CPython 3.11Windows x86-64

odin_palace_py-0.1.2-cp311-cp311-win32.whl (368.1 kB view details)

Uploaded CPython 3.11Windows x86

odin_palace_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (689.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (717.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

odin_palace_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (751.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (638.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl (479.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_s390x.whl (521.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_ppc64le.whl (514.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl (461.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

odin_palace_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (501.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

odin_palace_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (439.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

odin_palace_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (460.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

odin_palace_py-0.1.2-cp310-cp310-win_amd64.whl (373.5 kB view details)

Uploaded CPython 3.10Windows x86-64

odin_palace_py-0.1.2-cp310-cp310-win32.whl (368.7 kB view details)

Uploaded CPython 3.10Windows x86

odin_palace_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (689.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

odin_palace_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (717.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

odin_palace_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (752.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

odin_palace_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (639.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl (479.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_s390x.whl (522.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_ppc64le.whl (514.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl (461.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

odin_palace_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

odin_palace_py-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (501.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

odin_palace_py-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (440.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

odin_palace_py-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl (460.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: odin_palace_py-0.1.2.tar.gz
  • Upload date:
  • Size: 66.6 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.2.tar.gz
Algorithm Hash digest
SHA256 c79c744285929b0faba4d04c1d3688d16fd6471db5cdcf92dd6bcf114ff26ee2
MD5 133aab0462c2d3e6e4d51ca3e428f08b
BLAKE2b-256 1c57480cbff102c7522e07fe5c1f125d4d4cf4e5f69f33669cda0ef1f07b1603

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a44f38bd827a2f28725841fb4e44d83d34718b0984eae5c3e29000cc3f9600e
MD5 d0757c83f8968b778f42a4f8802f5187
BLAKE2b-256 17c0cee5083fa0378eefcc92323291a7659ebf23536f4085b9c16e81d1e74d25

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6125e05141b33f1c7a0e71843ee78789b4110222fe9c8a4742ab2a11b735064
MD5 ad4a177e23e01058ebf0492dd3e18379
BLAKE2b-256 ce95a0c506e7d5a288c4c5dcbc8d8b5fed660f3fdc588a66ac23e80988178e07

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9059edb7d59744776c986e0998cb4c43566f2014fdfeed6df21522b5895616a8
MD5 676e70a7db7f9f3db1ac9cbe228d763d
BLAKE2b-256 9d55668b73dd91732e6f03dfc5ffa2aa44c1f5b4b737c245ae3f12e96bb81f8a

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c6a36dad2c897980082426596755251363e13be94c7ceacfb7c938e9df854a3
MD5 650983fa3f49491845177ffde690e1e4
BLAKE2b-256 0c5ceb54680eb32068da54d184841847249aa96bda4b6e820d66dfe5a27552a3

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bac978921fe4b5bc9eca4d171d4febbae1351d64870fef3f880facb960072da2
MD5 1846fbec36145c63c8dd8cf448323588
BLAKE2b-256 7a666caf0f2b7f04979c9cf9ce12f45ecb6f757db4db979ae4ef2bdf2ce25f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl:

Publisher: release-please.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.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 be63ff2ee60d2686f859a1d9da10c13706907f9efdb976a827495c37cf7d97ee
MD5 b0ea5515a5ddd1de7f363aff952b894b
BLAKE2b-256 1e0e7bd8974252cc88e55150549179b6328de6223920a8739ff09a15eb7d72d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl:

Publisher: release-please.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.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a3e7220afbf44888ee7ac54e77a134365b9ad90179ce7ae3b5d9536905600da
MD5 ea87304cdccf736182fc8503d1a5cff5
BLAKE2b-256 ff54d52cad16e679fcf83ef8df3fc30cfd2fe2e92842f073e28cda36acbd4273

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: release-please.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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc024ae278aaf09447843d267bc8ce7312a07e5a5b963e1d94bf7d963d6d588b
MD5 b5bc011c4b3357bba96fd3869d2439d5
BLAKE2b-256 9ecb5f58e10fedd5c6ce126d4f390c34d4052e7657af94b2c3806b1dffb65029

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d8a15a02c25d4aec12a5d98a7eaecf49ed629a89da65575392d0eb773ca7181
MD5 f653dd5a6978657a4630cd240b9d8600
BLAKE2b-256 d2029e946a1d360c22909d21499e3d4301fd1adcbc8fb5ea254257f9e66ac08a

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 39ea5b5784c6c69c9f42b87a754c3c63d6a6d87480a62db5956e326014270240
MD5 7523f0a453a7d0d04fd19456db8f88d1
BLAKE2b-256 750a00e461d1c4274ff163303d95fbba89abefdbb4ef274ac9e10a6f9cc1346a

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4264df05cb8b9bcafeeee08466f3679cf1f3988c587098ba29f30ec3cd809b9
MD5 ec5c83675f1bbaddda03cb22d6ac8251
BLAKE2b-256 b895cf2dc29fa1a269456dda4b309a9dd0374f0e004ba9ae469488a233a3eaa8

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29ff5ec747a16ebba555d911f91680b2b0e794e304b4e2c2d9e80d3b1ff581ef
MD5 e6746b261befd58e16a768628f65869c
BLAKE2b-256 16559f1e96448278953ca2cca2409e26f883c0c7dfa43a5eb9dbd8fcddf1eb6b

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4edb4f4b9ba780a6eaa83f9ef90e2c27f7653d2980c07649eb0d89424d0e20b
MD5 e4b5ca518fb85be63bd1af9309375ec6
BLAKE2b-256 c9eee6830441b9809da12ec7583abf1eeaa4cf3ced847eb3619f9c7a99c2731e

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0324ba141157cebb980ea9aa01ce3cff116e60753b769d18d423b603b5b87f02
MD5 d54b7aa745b538b0db2b7e4d84524d8d
BLAKE2b-256 37fecb488571c81f309ba3e8d28f1016508471ee16ca8b14273a85326d488048

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc3dab93240c6e6ec76681ee25f2126772d8925d92cd4af9cd5eb4f28378be70
MD5 02625a155d27c7a2decabd6b23b0732d
BLAKE2b-256 61a938e8be1e617809bc6155e98605c92feb51f660f3b6f93abff2172ae57ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: release-please.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.2-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ec67d0fa74cca7f9de6f39c55268c43887bfb6b8c0a5a28affb06f2d77e05bce
MD5 cd511dc08fab03090b7b1d3a0f0573e4
BLAKE2b-256 e03021909cd00cb495b0b4a2bad0acf4c90403a1d575e078daf4f92821718d5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_s390x.whl:

Publisher: release-please.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.2-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4a2c08a6882eb428ba78e9665d5899e982ae3621562097286497d67942d2c7c6
MD5 aa09f869a49c7aab004fd691848798c0
BLAKE2b-256 b5158c578ad752fed55680078f23363be4cd19f9dac94aae5f671f86de0119de

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_ppc64le.whl:

Publisher: release-please.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.2-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3081d486cc3dfe59a52b612b19550709e3dc32bd471bad787d34a276fdb174d
MD5 9149280b2637e4f7115d398a455f3c92
BLAKE2b-256 6b21859a758ba08526e8e22ff2f1b57619480d331899edb65848fea048698a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: release-please.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.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 958fe2332c4fc5702398330e487d73c3ac9740f00765b24d04a02093acc95400
MD5 2ed3c7b3c2e449e8ba4d5c4976014971
BLAKE2b-256 30aa8a9fd00aa02b217b11a16beaf4c70fb9df41d812a075d1248528d4430157

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb82fe6ea7e8747f272350788af2b7e64496dc5827cbdd4b8abfdd6217d117cf
MD5 c08d33861a3cb9bcd68ad490791f2d18
BLAKE2b-256 82096b6043b374330b43ec6483e8a9e643433d14677b629f7648745390ca1eac

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 845d45218d646e37721745a393b774e90d1254d7fb56e22b3878017118082e3f
MD5 af7b0283cc59123e29c5c003a91381cd
BLAKE2b-256 185806d4f440f6ed539805d007cd80336d55cddf698fa29292f1d59400ef1707

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 575e62c87794b4f05c6e5086a3a09e4e1cb2974c13df8b3f857274d925d82e18
MD5 af95547a9b18bc820037665598fdfd55
BLAKE2b-256 5253b238f35892f87cf64d53b3e451a4d303b8b47da5087ba7b7aef2ae15c62b

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: odin_palace_py-0.1.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 369.6 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bab9eaee8756347c783b94e4a1838340b3702975a84ce682658831b6313ac24f
MD5 e8daf1341438d9ae3d2b6b288270d04e
BLAKE2b-256 9776db6f7531865c844a94f893243b98373db6227e9c4c084db3afd23193c2a7

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a999bf3e43d54ef5cf39efec24e9a4f7dc59eaf11e51bf11327672c3059e9a50
MD5 fba5adcfcfec23daa0ae99dd5e9785c0
BLAKE2b-256 0c2fee9314a38c665550b533b3b15288804570b19ab2268610901ef9cf5cf911

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb27bb90f7937e676edab7638ced87749ac76d1cb1ab1881ba3e6945ea4d14b0
MD5 07e8c474899add8558dda365629fdb02
BLAKE2b-256 286f10cf3f659ca8dd19cf2d6bec3bb952a8ad8036f5363f7d5610cd8ade74b8

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8dd775e0ca8e30e5a006bce113f57f43efdab6df5473fb91a780b4fa6408f4f8
MD5 b2793c5b5adee92720e2d773db9bed83
BLAKE2b-256 12c286d8737abbb0477c8d7ea799db7b0923f737fd3f2c7bb7108a9d7ef1259b

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ec0f1410daa4a63097f08f52d9c19d98e1466a7acc6a05866f8250ea3c0e503
MD5 683e9f5798ff3ee31d600dac0bd12fb9
BLAKE2b-256 f446c0ffed4655b6a43e352bbb6336415c515f80613f74b6b885dddeb527670d

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f455df5611a92e613671ea3667e4d9ace4f2aacf94463c2a3df57322d4a0129
MD5 10b6c39ef8e4d24d7fd408213f6a83be
BLAKE2b-256 d6e7a16d1ebd920d0c9dc4f9ab91f9c59e5038b028352f990c9a410a24d279fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: release-please.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.2-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e42a22a83c0045e3eae9bdd06b3a95a95c1bc119aa48bfd6692f60f95d488a31
MD5 75b2c478588e766b74a4a29f081d884a
BLAKE2b-256 8bd497cce4927637cb4b07b14d3d2688d41eba6d0c2d6142d241019307a66340

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_s390x.whl:

Publisher: release-please.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.2-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ffa9de636580fd7ae1db82e03501d35a26b266ced95b12989cdc8bcbe0334a5b
MD5 6ffc3bef535c5aff0df9c7611aebeca9
BLAKE2b-256 175c6d5e6778dd3435ba390558dd5b536802c5d4f7fd15bb8d2d00df8e06e133

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_ppc64le.whl:

Publisher: release-please.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.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cdb896868a68a99403d01768159173e1e6bcb172608db2da5f8fa35ef7aca03
MD5 87a085b8fe4acb1832b185d477f2e49c
BLAKE2b-256 2d5b67c45990d5e8d0062cbdff884ddc34591b71f43a43a6e1797c06896ee3dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: release-please.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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e32c1004c635e2c2977b93d755d8aaf6bed00444e6e95649f8683a694d797438
MD5 a46a4e0d594f2a96a948cfc427b0d600
BLAKE2b-256 ec2ac4788960cfaac56ff0705b48f8c2af4e4e71283f93ca7649c0d6b2fb1efa

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 59831d4e84dc4bc6592eb97d058d287ed43f09fe0d5998254590367c6f252aeb
MD5 723f428e9d87199b54998b9a06f5657d
BLAKE2b-256 e598c4e889fb880a88c16eb236814e01ca7161c3eed7f3023fe49bf1dbbcf1d0

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7684080d1c6480fe2c261cf227b196e6b928d06729d613044b5ba6b834e03c3
MD5 3e6b9036fa554de5ea3c922c2f13bec5
BLAKE2b-256 f1ae447c35003723e03720e6cc4ebc20073ebfd42edced8ec12fcc844c76726a

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4ded5d22cb4bb56b1c39ca19b6a390c09762829f4c0e76e17ac9f478d71ef3b
MD5 0ecc0138a151a2a4a3731d57576e2a73
BLAKE2b-256 3b1e854960ce4fd4103743401190977436a968bd986d124bb4f2932727fecc4a

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0e67f9df198366225e272fe31b162f924ed5260b1d534506a1cd204028b81437
MD5 5d3c13f094d1de163577c99e60df4068
BLAKE2b-256 635c2b763331bf4740c8521163ac203959731dde3d3260dd3e56970740416017

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: odin_palace_py-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 369.5 kB
  • Tags: CPython 3.13, 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 095577c1617b191f6446f6b36c033ce9aa83e0af7c4ab284c735b123f84ae35d
MD5 380fa5ccb80493b2cd537a1a9499f009
BLAKE2b-256 9fa856b70a34bfe709d41cc699105973e0e03688b85d9e2e452683cac8db2b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp313-cp313-win32.whl:

Publisher: release-please.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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08e9f15bc9c40fdbcc3704eecfb678264ef2c2b7be54b7e39866ef564ed500e9
MD5 c948c1eb69f0a9fc8c1216f8a60e6840
BLAKE2b-256 f351f93e33ccee408a83dcb371cef41e4519ebaec2f3653fcb90c1c04924f4e6

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b81bf30994be7a58e4435cf2bfa8468872f3d5b0df35cc5b9f1ef894461838b
MD5 a9feaed5f1932ca8a6db4255eae3163e
BLAKE2b-256 0b15649c402f3a536738cf8a83afd4a7ee130d41274e73d7b00e914df8adb821

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e26b51fa3a91356c462687b4ab0326f4033c3a6434f239ebff7b38ed243a1d90
MD5 282243b43c462ae26934e5a45a073ab3
BLAKE2b-256 3fc952ec1414bc91f57e364bc3083f631630475a6ca6245ddbdbd909d21f6c7b

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70d463402b3310e8337d1d32fd07947cb5e9af48fe15ca122c6aee456df4280c
MD5 1aef0895eb31cbd7440bd9b00f127e22
BLAKE2b-256 3272a718be25129f22205f1d411a9757ccc3c1fb82283e18a1c8b395d859d294

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fd36b64f3fe88875a2a3ea297dffbd3e3dcce1644ecdb3bdd9d36bae7a30352
MD5 d3af12bc45e10232eaed1e9541be41f9
BLAKE2b-256 c6633aebf488ab666feca430643669e364c91c00388b4fac36002d008ad8be98

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release-please.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.2-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 79d6416885f7812ad8d050b3a4c91346a81590005cc4be0547c05158b8cd358b
MD5 8deef163ee23227c45ff9106a63f1a63
BLAKE2b-256 72871306ebcf1ea48ff5f892a097a40b513e203c378cc562df74a773921d3069

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_s390x.whl:

Publisher: release-please.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.2-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cc62e81a9fc0406ee90e4147f89c52d09f745c5949d4604a90960fac524601c8
MD5 5598e966be679e2357c379cd2c497a7b
BLAKE2b-256 2b5d2c313efe7c44e285e1237f8f57ceb8157f3b3b19693b0d56d6baa7ec4e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_ppc64le.whl:

Publisher: release-please.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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d995000f0bb115dec7ee92d8062d892b0e6031fb5b74e91d54615245ec386801
MD5 8ee8d4277372cfe98a04f9c47261d3d8
BLAKE2b-256 e7bb4de4e50f5ab7a6465f6607e3268fa2a00f2a214acba1fb6b94bf5d3c48a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release-please.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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3dbdb66d903c0e18bc69a3354ff803d4a60cc7f53f0f6bbf669675ea00f69c7d
MD5 992ae2a7e6c41f176f4b94cab97df018
BLAKE2b-256 0c801d48ea805e7958b5bcf9e6a8e3110eafaf458d9f945eaf114278961e83dd

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6d2b0c5decae0fb45a81da503063241bbe857147224e76673dd73d26be15813
MD5 84d5b52b7b53ebb83dee41115d6d6c59
BLAKE2b-256 226e796e9684c2f9054c46b54ecf566a1afa3a7932e9280fe2cca05b39005d95

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75ffe6eda11fa55e13755613b20fd7ff1c68de6215aa2d1562bdd29b8b9a3ccb
MD5 439dfb8daee8278d644c2b5bd8bb8d5d
BLAKE2b-256 677c0876471b452925db4158ca4e0323674a6779c8ca24aa34771e7c743cc095

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17d2e16558fa8319bd8f94fc7e540b061dbc4a02ebbc477f4f31b02b74d058ba
MD5 ab02d23b4519fc5530fb14d7271dd2c7
BLAKE2b-256 17632d26c8694dc5d321aa07e089fcbe1079979c199e946dd459376211ecb7a5

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a56bc00da45e22b3696f49dbdd9c989dae157da640ba8c49265c58f1a7bb90f1
MD5 259c0eaf7f7d20c5feec4fd75573b1ce
BLAKE2b-256 95481c99f2cb938eae37ff30d077b8757c059dcd5bf4e2e85950ebf1101309b2

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: odin_palace_py-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 369.4 kB
  • Tags: CPython 3.12, 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6874116967a2e269fabce4e14ff1087ca9adc252da022a04c65680ccebede1a3
MD5 b84d4246d7e46c59d1e8755059924261
BLAKE2b-256 6dd2502a59495e793b22de29c129dc64b17e2c821d470ba4e77dfc03f5bee2a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp312-cp312-win32.whl:

Publisher: release-please.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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10d7097aaa50f4277bd4734a7c7eefefd9634933e50c47a4da11a4263ff77bdd
MD5 829c42194a354a9f54e65fcb53924b4a
BLAKE2b-256 99111df1b210d7f5f37df5432d72c4516c416ffe0baae7f470de77b9eae05102

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb51519d61ddcf6d005fac269ade565fa4fae008d36bce27e2a40741e7ba1a8e
MD5 160d9aa08595cfd21bbdc8ba0166fb50
BLAKE2b-256 05ff5c5c9196d9b9269af1a1a3eaa4d4e274ebf8f9d337aee29bcab47f5bc759

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca5d39bd499ed39b2dad5ab04325ccad2904429a8fe0d7ea0b91f9addfe532d4
MD5 29552b7f4b0d96a59fd0cde1e390b711
BLAKE2b-256 cadbc4fc90cbf71176b4463f3d614ce37c5518cf412e7d679e6e271017d81fc3

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0452772a5c07165d89c057ee755a18e91638624fd831ff5d75b59fd9c025f7ae
MD5 02ed9e9dbaf86561d55b5cb2c153d70b
BLAKE2b-256 56f909817425c4b629c1d8ca7cc06b203f21da0487702f33f7b74029a5c95ea8

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08408b41bbff6c00414221847d78c1d3c686ba0dc8d229211769bcd1185c3bcc
MD5 adb610a146ecd2c736eae672a1321127
BLAKE2b-256 306fb08b0a1da296d8b928084906a043dc00c9311e7b99ea613e512b074813b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release-please.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.2-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 dae9c9bc06e510ef23f3c298354e1792c2cb9eee9dfb42edf0f351135165567f
MD5 da45950c2d514b6d64a198410887f2bc
BLAKE2b-256 8889781e151444023ad8d13457caf3efca1133a63d2dda477b27033a4579b28a

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_s390x.whl:

Publisher: release-please.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.2-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3b12b21f8dcb1c316dd03df50ede5ff32648d9f170845a8e463dad4845a89d65
MD5 480f7267e9dfb812601da5e12ad0f7a6
BLAKE2b-256 050223c90458f7912000344e08ed4017045db30b12cc249a57a30285ca4f4a3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_ppc64le.whl:

Publisher: release-please.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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0d9317da261bcef0a5d310680ff016add5a81a80bbd898fdeb63e64a9554712
MD5 452cb0f2519227046c33c2ecbeaa0a77
BLAKE2b-256 c3e20112193a49cea18a3d8888b7e2b45aae9be3f5aa1b8bbd1abed80336e46a

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release-please.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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a83f862c026c6f49b4cd677ababa946b4bac9cb0aeb9f55441f7effac9681964
MD5 fa8ac06e28306a06ffe0c976aec05c04
BLAKE2b-256 3c054a74dcc33495121aba9917156b6007536226774d29fd46dfe5500509bbda

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 54529b8a04d295928cc566c5f4bd6b0d475d82d60e00963db16e5f41ff3fa20f
MD5 14ce265c9d8cfc892093bee5fe76e131
BLAKE2b-256 ec191aa2fbce1b13b5bc0b3eedaa51f1790040c41dbb75486c1e9d22352b3642

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34aaf145bb7c1b25760e668fc1994c3eaac84f80b73fdbd294cdca4c7999fa47
MD5 e8a1685c4767786ca0d17332fe56cd1c
BLAKE2b-256 12a98549d54eb5df53667427a40407ed1e61be88d921842d5a7b1d008975f8e6

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a9de839e24ea08a997fa1534302b5ef13f6884d39dc97b196a6e2893175a8ff
MD5 411263d0c013f46417f1a65a32afec6c
BLAKE2b-256 3d54758aed012edb228705a098a6ab4015537ce9db51d7d0eea9efb7c079432f

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3aa62c680aee014c326d307e0a96b3efd2fdb1987871697c6862b12967395b12
MD5 b9b1797327c9887068882c4db2d852a5
BLAKE2b-256 8ed9e99d24c4c3c173d84523506791cb726a1220cfa8345ffd5326d04dedd314

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: odin_palace_py-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 368.1 kB
  • Tags: CPython 3.11, 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 004f03794000db9d961b622191b61eec9c5fc0219b917ff200946ee62ed058f1
MD5 86e14f4dc155ab3fbd0098332552d654
BLAKE2b-256 673fedec5fd1c9e6709ab98e151a70adb1e119e21522983ebc257335397c9b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp311-cp311-win32.whl:

Publisher: release-please.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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee4d6514788e056b46cec795fb7fdbe7748eae7ab17a699844e3bf3025c56b98
MD5 88ed5dd75fc9f4d975462f87c6d03f22
BLAKE2b-256 b8ff06738f0fde4fa4b8f43e6d9305b47b9d1b0ef5768a0d52aef1d6818abdd4

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa623f89de32e229fba00d0113592915c0738246eefada1ffc6ec585161af4fc
MD5 0bc414b2a29c5af4f1bbea617ebd2674
BLAKE2b-256 57ebd90f58111a092a4f082b7f5d7d929e56a1cdb22a18741b32cbb988bd9d51

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68de05bff2493ca74ebac91b72d2f1f5bc624fe1d5b79d4f05b3a39896f7a4f4
MD5 9d6887ba19865e0c931c6763aca51b2f
BLAKE2b-256 c87476a319afd995d6e5889769259af9969dff71d37694036b0791955be3df6b

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f57e04aa550b832a85f505938843b273093ffaff11388ae77bdae4c713237f9
MD5 fc0abd31bff08394fd9f5b7c10b426fb
BLAKE2b-256 208322e12592a5bdcd8d50892749b3eaa486967a1d0dde88547157598ee22df6

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb89a727c48cb39c00f492bd321f47d3e636c248bd8ff4acfa1ce6c32f819a0f
MD5 500cea93d9c465b157085d34a3889fe1
BLAKE2b-256 ab0d44b65a1425182e6966e0fe6e67f7b7cdd95b2f72bcb3567d9ed932054071

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release-please.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.2-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1dcce79d2a79f5d5ec51a096b69672ac9a8abbe5a63730af1f856fb5d27c1eb1
MD5 0f67b3328796b71dbc837a53da1ea0f2
BLAKE2b-256 b714c22233f794400e8d05f15a47da6add24d07bb2d45c75098195ad262e2453

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_s390x.whl:

Publisher: release-please.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.2-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 51c4574b004eadc5a73daf89d369aa10cb2b0f4e2f71b1ec08258d65bc4c8b57
MD5 5899b83ff1be7e9bfd2251ed912a0d9e
BLAKE2b-256 70a2fd40c6e632a2ef80784f3d98e6d1c8bc1fa91b7d048719c6aba8139aea2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_ppc64le.whl:

Publisher: release-please.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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f79fb0c0fe491544c4b64c7fdbcc5130b57ccfed5cb924d99301a2eb199f812c
MD5 21313fa95908be636d19951349e5d0fd
BLAKE2b-256 c924fb69b1e06486e702c865ecb2e0121fc1ba9a83c4d8979c66586fa959f2ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release-please.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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18d5115f30a5822ffcdc65fb16ced61aeba1b55479d24d762046d5e65e7f44fb
MD5 983d3c572bce05822cb20d12fd5e97f1
BLAKE2b-256 58587b5d56b881683b3696eea334a2f02b2db88685fc4a2855aa38091f3f6450

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 272974098a6d1fc0f0392d59b5721765affae008cefa398aced6cbb2f804e7bb
MD5 136fcd72727941ba7aef2a7c393969df
BLAKE2b-256 94db7a286872b88067bdc119f3b5a002ac468b8b75ddba4e48653124b9b034a7

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f46b6c40bf0c9eb882a2ac393525d13bf9e6f747fc9fb2bb2e63ce471b6d032
MD5 5ce904dd442ee1e225a11adc574a20d2
BLAKE2b-256 20a612effb2814e40bc2503870b635f18a2124755bb77ace6038dcda6c58fda0

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1dc34125307b8b9fc874afdbbc4ade7b05e8ed7b9a4bcfdfdef410f62bd8489f
MD5 c911babab0a666bbf098874caad852c3
BLAKE2b-256 b8a3b5c7fb5c4f71ff20f3bdd8dc9cd649087d4125cc0e83ec97b5f86f1993c4

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8daf0624f64fb462bb7c174209dcdb3fa8211ea575f1cd8ca0b7a43278dd328
MD5 66dfca5217412e8cdb557bd5092cc661
BLAKE2b-256 6c78d066eb343e6603f6fa7e95f0f7c5fca368c64781ac2992ca1c08a653763e

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: odin_palace_py-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 368.7 kB
  • Tags: CPython 3.10, 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c3990d279d1a90ee4aa04720e8291a97e83bb19299a4d4fabf888e9ba823bf28
MD5 db7ee705c78c6797ef96fab1ecfe327f
BLAKE2b-256 727f0c097fac6bbe5a3cc3904b442c6f1da84f55025e77e7fdf14ca9100e1e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp310-cp310-win32.whl:

Publisher: release-please.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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87e744886e93777a66b7d98eaad09612dc4080848e02f1e31568b5db3295118c
MD5 fdcdfd5313c91118581a620b427d9544
BLAKE2b-256 2f8965924118962b3577b28b5697b5c73f418c0bde93cbdaecaccd6d8b96d080

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cff33e032cc9e653a52b8007bcfce2f4bc95a7923eb569cf210a48bf6bce99c
MD5 65e8fe8989580cab921d250f3e057675
BLAKE2b-256 e2b7e5cbbf15bd93d2b9e162e310e62081c4b2576e6ef19f07d1aa156fc2ed40

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1b81882236a34035b60ee1f35038222c75a1462572c312b17e89cd499196c98
MD5 7e1cf5f9f8d8d88831bfbe3fe7d992a1
BLAKE2b-256 7446ac04fd49c37d5722af94ead6ca30baca3d227720028ed162b01e709a311c

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 353f828d9cf0c8154790c18c96c037c2391b389f3505d4478ccfa74e10f7831d
MD5 6a06e913a61c26724de2e6084d3a6ca7
BLAKE2b-256 1a3047482dc19d64fdb27d9e9cb1b304f704989010a91b3e75887b4df83826da

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1c45f2bbf5f3c5da840fd1d01e025db557f7348a35ea1766bdb440d2122cc79
MD5 d937c2d636489f475967cc950c029ce6
BLAKE2b-256 272fb9a687257cee880d2da6e0113b11d4e26f5878883d9095fa58221e4cac06

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release-please.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.2-cp310-cp310-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 76d9248d1afa2028a77714d11e92315c22bc1820272baa35aa8edd160f8609f6
MD5 01befb801b992b393eedd6ef637ceb57
BLAKE2b-256 cc43c209899499b0d8ca18713bc578fcab1748027cd1736af7326ef635c12c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_s390x.whl:

Publisher: release-please.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.2-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9f36a78a535e14ee2fc19ad6f79d9a49b78b6122669d7858b854ea8f0d531e52
MD5 42ce114454d02e862f037f92e5698079
BLAKE2b-256 e227323acd2c19be2e8f97446053ab255f7ec6e50d8002db23c44815cb434dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_ppc64le.whl:

Publisher: release-please.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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9915172f8e10a7a4b3bfcc0a8e5d3a179a934f4932d093d60264dc334c9111f5
MD5 67a9a71807d66a121b4305c1dee92652
BLAKE2b-256 e6c1f28b13647374e5850484096f61b351d8ce5573e7e3a5a6fc4b8842fb88ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release-please.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.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f21a502bd749b60265ec168149a880c2d1904b9362acf34efa2747c65564242
MD5 68c328d5206d47d0fb57d8c9d2741410
BLAKE2b-256 6863713b08688767b265c6d328f4e919815f6ed927495633818a8a311c5235c9

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e70d8e5be0ee317307b27a9ceb774e94eefce84e56cddefcc8a56322f4b6a3a0
MD5 3398314b8a3f16555b6251290770fc29
BLAKE2b-256 2c0b41a35d5187a477bd411e5f7687f42b26eaff723445d8f84fe075103d3732

See more details on using hashes here.

Provenance

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

Publisher: release-please.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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dae7b6fe1597920a91e605b2f759e6d5713de47c2333f14bd0c8867fc5c141e
MD5 67296ef0beda49d44e3f72dffc6e1c5d
BLAKE2b-256 784c236b615c59f11d3589f0775278de4a9daec8893e03844f1f536293bf05e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-please.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.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for odin_palace_py-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b70dcd9be9f45a984fa6994f88395b739c84c6054ddd29416c578d3d91eb4e7
MD5 2530188654c6ab30cc8816dc1d40f9d3
BLAKE2b-256 407bfdf8680e5220ff08dfe6e3a431a93cf227a22ace16fa9415aa731fec2178

See more details on using hashes here.

Provenance

The following attestation bundles were made for odin_palace_py-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release-please.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