Skip to main content

Высокопроизводительная асинхронная библиотека для работы с MTProto (Telegram API).

Project description

Ncore ✨

PyPI version License: Apache-2.0

Ncore — это высокопроизводительный, легковесный и элегантный асинхронный MTProto-фреймворк для Telegram, написанный на Python с использованием Cython.

Созданный как современная альтернатива перегруженным решениям (таким как Pyrogram или Telethon), Ncore выжимает максимум скорости за счет C-style оптимизаций, отсутствия лишних абстракций и грамотной работы с памятью.

🔥 Ключевые особенности и преимущества

  • 🚀 Cython TL-парсер: Ядро парсинга TL-схем на Cython, что дает колоссальный прирост скорости десериализации пакетов по сравнению с чистым Python.
  • ⚡️ C-style Python и Zero-copy оптимизации: Никаких "костылей" с конкатенацией строк. Используется высокооптимизированный модуль struct. Чтение данных из сокетов происходит без лишних аллокаций памяти благодаря memoryview.
  • 🛡 Lock-free батчинг: Устойчивая асинхронная группировка запросов (batching) без блокировок, реализованная на базе asyncio.Event.
  • 🌊 Автоматический FloodWait: Встроенный механизм обработки ограничений FLOOD_WAIT_X — фреймворк сам ставит задачу на паузу и прозрачно повторяет запрос.
  • 🔒 Нативная поддержка прокси: Поддержка SOCKS5 и HTTP прокси с авторизацией прямо "из коробки", без необходимости тянуть тяжелые сторонние библиотеки.
  • 🎛 Dual-API Loop Management: Удобное и гибкое управление циклом событий. Вы можете запускать клиент как внутри собственного asyncio.run(), так и через классический client.run().
  • 🎯 Продвинутый Regex-роутер: Система обработки команд. Роутер автоматически парсит параметры с учетом типов, поддерживает обязательные аргументы и отлично справляется с динамическими пробелами и переносами строк.

Установка

pip install Ncore

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

Минимальный пример запуска бота на Ncore:

import asyncio
from Ncore import Client, Router

# Инициализируем клиент
client = Client(
    api_id=12345,
    api_hash="your_api_hash",
    bot_token="YOUR_BOT_TOKEN"
)

# Инициализируем роутер с префиксами команд
router = Router(prefixes=["/", "!"])

# Пример команды с использованием роутера Ncore
@router.add("start")
async def start_handler(event):
    await event.answer("Привет! Я работаю на сверхбыстром Ncore 🚀")

# Запуск клиента
if __name__ == "__main__":
    client.run(router=router)

📚 Документация

Полное руководство по API, механике роутинга, типам параметров и работе с событиями находится в файле DOCUMENTATION.md.

Лицензия

Проект распространяется под лицензией Apache License, Version 2.0. Подробности см. в файле LICENSE.

В проекте используются следующие сторонние библиотеки:

  • msgpack (Apache 2.0)
  • tgcrypto (LGPLv3 — динамическое связывание)

Сборка: Для компиляции модуля tl используется Cython (Apache 2.0).

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

ncore-0.9.815.tar.gz (294.2 kB view details)

Uploaded Source

Built Distributions

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

ncore-0.9.815-cp314-cp314t-win_amd64.whl (388.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

ncore-0.9.815-cp314-cp314t-win32.whl (381.4 kB view details)

Uploaded CPython 3.14tWindows x86

ncore-0.9.815-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ncore-0.9.815-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (726.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ncore-0.9.815-cp314-cp314-win_amd64.whl (381.2 kB view details)

Uploaded CPython 3.14Windows x86-64

ncore-0.9.815-cp314-cp314-win32.whl (376.0 kB view details)

Uploaded CPython 3.14Windows x86

ncore-0.9.815-cp314-cp314-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ncore-0.9.815-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (727.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ncore-0.9.815-cp313-cp313t-win_amd64.whl (387.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

ncore-0.9.815-cp313-cp313t-win32.whl (381.1 kB view details)

Uploaded CPython 3.13tWindows x86

ncore-0.9.815-cp313-cp313t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

ncore-0.9.815-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (726.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ncore-0.9.815-cp313-cp313-win_amd64.whl (381.3 kB view details)

Uploaded CPython 3.13Windows x86-64

ncore-0.9.815-cp313-cp313-win32.whl (376.0 kB view details)

Uploaded CPython 3.13Windows x86

ncore-0.9.815-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ncore-0.9.815-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (724.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ncore-0.9.815-cp312-cp312-win_amd64.whl (382.0 kB view details)

Uploaded CPython 3.12Windows x86-64

ncore-0.9.815-cp312-cp312-win32.whl (376.4 kB view details)

Uploaded CPython 3.12Windows x86

ncore-0.9.815-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ncore-0.9.815-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (726.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ncore-0.9.815-cp311-cp311-win_amd64.whl (381.1 kB view details)

Uploaded CPython 3.11Windows x86-64

ncore-0.9.815-cp311-cp311-win32.whl (375.7 kB view details)

Uploaded CPython 3.11Windows x86

ncore-0.9.815-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ncore-0.9.815-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (718.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ncore-0.9.815-cp310-cp310-win_amd64.whl (381.1 kB view details)

Uploaded CPython 3.10Windows x86-64

ncore-0.9.815-cp310-cp310-win32.whl (375.8 kB view details)

Uploaded CPython 3.10Windows x86

ncore-0.9.815-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ncore-0.9.815-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (696.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

File details

Details for the file ncore-0.9.815.tar.gz.

File metadata

  • Download URL: ncore-0.9.815.tar.gz
  • Upload date:
  • Size: 294.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815.tar.gz
Algorithm Hash digest
SHA256 f79ce1d209d5e1b3d854048ada154367c2861fa18feb5604a0dedf59efa5b665
MD5 1b37dcf06659841652c5a3a4a3be1bd5
BLAKE2b-256 a85baf20f6f35631bb686474cdba6387b700abf00bace5de6df1995805e13df3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815.tar.gz:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ncore-0.9.815-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 388.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a5a8fe089b82cdf7ced4186c5366e6c3a3bd259178be38e8bbe611a4c83acc5a
MD5 de42be5430dc788c74b30f44e0c5c5b2
BLAKE2b-256 072dbea2c3fba6ba4b12bc30dfe7c4098e8ee5519def69bd419170923147b9e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp314-cp314t-win32.whl.

File metadata

  • Download URL: ncore-0.9.815-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 381.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5fd6d81b8c70af2fde59a47a2e05064e3e8f9bb21cfe73e78669a55a9711297e
MD5 1457f65248bea17952aca480c6da3692
BLAKE2b-256 a1f115baca32b931908befaa4ef4b438e9594756201601d5e1d373c7607dcc03

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp314-cp314t-win32.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a471543e35ee4cfab7fefc7a2bf7b844eeded99034c0fdbbe2de4b79791dd6fa
MD5 1b878d6ece3a2e03db9d26f7ce867544
BLAKE2b-256 521998aaf82ad2d992fbb02fd2cde9d25506b9ede2444feb984679d7048db810

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dbb6b80864695287f657d671a2d65f857f7feaf6d33a708dccbd95c087d3d5ab
MD5 a75aac467c2c8e7b71f60f77afc42811
BLAKE2b-256 62c87b7f3b6df7454f67e06e2c20ca8e093b7831e876b1fdfed19a6f8ae729cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ncore-0.9.815-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 381.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 72873130615d02bc09693c918c287b5dc7bd1647181a9412e6462aaa78bc75a5
MD5 a3157b3d60948c4abefcdcf56de1a1c6
BLAKE2b-256 0b11aa028ff6f82fd8c48b841dbb533c050b0efe3c52710fc3e811ae3dcd5a3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp314-cp314-win32.whl.

File metadata

  • Download URL: ncore-0.9.815-cp314-cp314-win32.whl
  • Upload date:
  • Size: 376.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ea579393f480a10bbf50b97e6aa2c0055342703b32d9114093685118aa3ad922
MD5 d40b53708a4ee0b9df4e4d43b3fd8745
BLAKE2b-256 60ef9313055f19b39cd31d4851d79da39cc2045dd5c8d3e49ce1b744de379758

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4364a47e8033e2692877cca368da0210ca3c7d584922851b0e32e6052647688
MD5 c3e032748877052436951afddb65a4c5
BLAKE2b-256 ae6515835cb8bc0982fd290831f2625aa865d06bba65488d2a2d78ab208b4cac

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 972cfac3ca9c33f0ddc13341536a2e6fc053d0621855c047838fb07a66a55908
MD5 ce093786cfc2fdff30746686d0836a1b
BLAKE2b-256 5395169f2441007ad44ebebd2f58b56249bbf58a8221a2456a7d42f519a7231f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: ncore-0.9.815-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 387.4 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 3ae16e9d3e3b7e6b1b5f795870dd402f6ac9d9b81c2a5e4dade4a42a27bc0ed4
MD5 1f73712bf1639ef02cac151b29b02201
BLAKE2b-256 02d8bd7289db69ddc3d2375cf8f1b91ed63b195c0504cc0eb0cc9e6e4cf2718a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp313-cp313t-win_amd64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp313-cp313t-win32.whl.

File metadata

  • Download URL: ncore-0.9.815-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 381.1 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 de60f86bd4de4aca61a10ad2569723b1e58c8e79494edc473289be51bb6a678e
MD5 fe7391f6028eea04cdd280ec1bbca8aa
BLAKE2b-256 16e4d401cbac089999d297bcc1e3ee09b0b59d41dd3179382335624bd0369883

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp313-cp313t-win32.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2841a1177fb84b3196b2ae55b3cc244ef4dceb5efb1648f1d12934b8daf4f2a5
MD5 8da2dc9fca6f8c93baa52ddeabcead88
BLAKE2b-256 79adf5e7a6af15f90a52e375bcf5025b4cad8bdd44e707f4556db5ed13f37002

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3970eb1cec58823a447f21de4274d4543e98b7189b764a9e92fb9f4c62a3c24
MD5 086eec7a5a19c7fa7845eb957204b6af
BLAKE2b-256 57fdc04193b30af2a99190d9a43d414fd211442c9f69eb5c35a921e9c5fa1d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ncore-0.9.815-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 381.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9342b0f7bd0c91ae7cc7febd80dcc37366d1c39f5d9c6b4a3365b915dcca6016
MD5 76246df1287bbfd45e088f1a0100415d
BLAKE2b-256 e419a9c247b3079bbf78f205e6449970b1323fb8cb51c444c0d02b91576bce89

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp313-cp313-win32.whl.

File metadata

  • Download URL: ncore-0.9.815-cp313-cp313-win32.whl
  • Upload date:
  • Size: 376.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 de1071d8665ae6d24f9431e670027d8e6d5b25bcc8dd86c2eddeb7a0bc90ecf1
MD5 8d650bee530f9f19fded103983d0faaf
BLAKE2b-256 f490a7bca6424cdd77e6bc7f83956d357e506e4f4355916fb153690485b8fdf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acb456587d510c400c4b12619dd8b2e6f6e0df30b42a647d674f8c4dd7c9cd1b
MD5 7668e7225dc941307ef7e0a1cc774d2d
BLAKE2b-256 c0e4d8f501e5f30902655ad2747d21d52633fac1c5f5b75585985c03fcf60cfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a708a0b8069442fcaf278ef820c824dc04952ae046b75af3a243faee81ed7a79
MD5 1e29026413ea93cbf0edaabab7090b28
BLAKE2b-256 97e0e09e8e2360814d72be0a9c535e73e177bcd4b3a155a4be86b8a8ec4047bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ncore-0.9.815-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 382.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 31d04a25c8f391f599bf04f8a8ab4d55700b19ff79029f76e036037682ae4482
MD5 2bf26c6e95a4f55c033dbb9d862a52bf
BLAKE2b-256 774238256de98d6dc13f747a5e27e2323a6a29db11fb05a40076689cb95cb90c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp312-cp312-win32.whl.

File metadata

  • Download URL: ncore-0.9.815-cp312-cp312-win32.whl
  • Upload date:
  • Size: 376.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 74acb5c530fec33e305a5ed81b80ece5be63f38da0507d4c4330a31e7c6533c3
MD5 f49ec2e75b55865bc0142ab8a744c9d7
BLAKE2b-256 01f731af6eebe916189ec1e7131a90c41410950120d235ac931bbc83c8c55f47

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c646fa740844d0c25c2536fe44f816be4aa224e18daef133dc4cf2aa57a7780a
MD5 52cd61ca8b034e1dee96260d0beb56a2
BLAKE2b-256 0c5fdecff0e1343ea2dece5bb77fc2bcd4dc630fa27a047625476a6e413e85a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8d0916e37a3aa13c906bcb89ba4480aeb7ee4c6e053ea1ea09455340e7cc930
MD5 4d1827e13226f054130e729b116f36b6
BLAKE2b-256 5bb0aa85bfb6f5e93d33c66354218c02d874fc12b94c00fcc388a79d757ab614

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ncore-0.9.815-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 381.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 682321bdbc8f74db9ad26287fb66d78572992f2f4a88f0d1cb2a2327f1b59fe0
MD5 728e5752091fc12fd9530865ac7e9c7b
BLAKE2b-256 12139efe53aff053b263d97be6d66652c1d0bff32ab788ea7eefb316406e1880

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp311-cp311-win32.whl.

File metadata

  • Download URL: ncore-0.9.815-cp311-cp311-win32.whl
  • Upload date:
  • Size: 375.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 71e7651c91212afa06d93291387a91838d695c5930c1bcab7db929aae6c79b44
MD5 b0afccd11717146bc03bfcc3f2d49b2a
BLAKE2b-256 c297909a9ef42832bc5e7fcfb304924d88c628073d51bcfc4b5606512d754215

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e8821fc660efc98cdf87d7e8ae22ad059c3756ae5f6084ac3999be4cb33e95d
MD5 91c6ae3ff194a0f2a301daab917dc23a
BLAKE2b-256 0bc16daaa62f55866d6df402ab4162a4c7ea00316fd5895cd600d012ecf942de

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c5f888cfe67b451f19432396074fc6fd3bd4f282d1fc8af8d109300c089b06e
MD5 96707dfaafa16faa7bbf7ffe172cdfe2
BLAKE2b-256 3606523aa384605f0ad091e78f40f14334efc52e076afcb3984a76be1cf6a140

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ncore-0.9.815-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 381.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c675972ef5ace7a65ca5aafc58893cdba3f6804cb53bd3006d62fd1e05ae0530
MD5 25068797cf3b3aaf40947d1026625e84
BLAKE2b-256 6ec60419ea280c342c595a8f3eaf0b82eee7938396aee9cecacd26a93bc1f689

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp310-cp310-win32.whl.

File metadata

  • Download URL: ncore-0.9.815-cp310-cp310-win32.whl
  • Upload date:
  • Size: 375.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ncore-0.9.815-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b41a1d21a05b96d0b5e61a36fe5410301b3f320c82151775cb11e9598c2a9bd2
MD5 adfe12de9922921adde060ed4afa063e
BLAKE2b-256 869519bf76e6307170b3ad2e5346d28aeaf88e02539445422fd13b68986f4819

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1b51576c1f457b3cdfbb9ff3f540bdb7f1d146edc6e043d21876da94141fed8
MD5 6d0ffc93df55626fbe205d38157dfb51
BLAKE2b-256 66627cc13f1656e9d717f5c331b26374f5453cbe57a7ccef9904c1827f5b8563

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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

File details

Details for the file ncore-0.9.815-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.815-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a57aee3e206c154039296572e493d381481f7b8d76d6c77bdf63563e4c542660
MD5 949758b371bdaac0144a6c363d7c83b6
BLAKE2b-256 4a393608c8ebadaecc272305ef155402fa3b376bff2af6e73b64b0a01d0f3415

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.815-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on zovdev/Ncore

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