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 и MTProxy (classic/dd/ee) с Fake-TLS и авторизацией — прямо "из коробки", без сторонних библиотек.
  • 🎛 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.834.tar.gz (298.8 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.834-cp314-cp314t-win_amd64.whl (390.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

ncore-0.9.834-cp314-cp314t-win32.whl (385.5 kB view details)

Uploaded CPython 3.14tWindows x86

ncore-0.9.834-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.834-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (732.5 kB view details)

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

ncore-0.9.834-cp314-cp314-win_amd64.whl (387.0 kB view details)

Uploaded CPython 3.14Windows x86-64

ncore-0.9.834-cp314-cp314-win32.whl (382.6 kB view details)

Uploaded CPython 3.14Windows x86

ncore-0.9.834-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.834-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (732.6 kB view details)

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

ncore-0.9.834-cp313-cp313t-win_amd64.whl (390.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

ncore-0.9.834-cp313-cp313t-win32.whl (385.5 kB view details)

Uploaded CPython 3.13tWindows x86

ncore-0.9.834-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.834-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (733.0 kB view details)

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

ncore-0.9.834-cp313-cp313-win_amd64.whl (387.1 kB view details)

Uploaded CPython 3.13Windows x86-64

ncore-0.9.834-cp313-cp313-win32.whl (382.5 kB view details)

Uploaded CPython 3.13Windows x86

ncore-0.9.834-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.834-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (731.9 kB view details)

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

ncore-0.9.834-cp312-cp312-win_amd64.whl (387.9 kB view details)

Uploaded CPython 3.12Windows x86-64

ncore-0.9.834-cp312-cp312-win32.whl (382.9 kB view details)

Uploaded CPython 3.12Windows x86

ncore-0.9.834-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.834-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (734.0 kB view details)

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

ncore-0.9.834-cp311-cp311-win_amd64.whl (387.1 kB view details)

Uploaded CPython 3.11Windows x86-64

ncore-0.9.834-cp311-cp311-win32.whl (382.1 kB view details)

Uploaded CPython 3.11Windows x86

ncore-0.9.834-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.834-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (726.1 kB view details)

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

ncore-0.9.834-cp310-cp310-win_amd64.whl (387.1 kB view details)

Uploaded CPython 3.10Windows x86-64

ncore-0.9.834-cp310-cp310-win32.whl (382.3 kB view details)

Uploaded CPython 3.10Windows x86

ncore-0.9.834-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.834-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (704.6 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.834.tar.gz.

File metadata

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

File hashes

Hashes for ncore-0.9.834.tar.gz
Algorithm Hash digest
SHA256 14f9d477651cfab79d24c843e50c1534550ae712e473a62c99e0347c3a5d7ff9
MD5 4bf1665e731d935efd86c4a5a2b19955
BLAKE2b-256 1ea3af4906c5ccfce1a53b34b5f9b6c730b2c4b92b054f572541ceef789ec493

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834.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.834-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 be8e1f1824e707753233dede75f8b6bd97c511f254b32e62fb176c88bf3a9ced
MD5 1185ba8263e9c47484f9a683e966e3d7
BLAKE2b-256 0461eccb9aa10dcd331bf27c9e7357e0e0c32c31ac54c92723f196db97178a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7d07de0801180a8503542084e0f34ca1b50b1d397f6b7129b86db320ad97e4d8
MD5 8efafd07470a9481f2e922f51d943645
BLAKE2b-256 958722f1aeb4d141ad2ae24318e0446214bf082ab15bf708609935a9d0af9357

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cade33f21a0c907a9a97f30d002835a682d3bb5d5bed34ac874de759cc02c3f1
MD5 c554c08018a637cfef4f9327bd4806c3
BLAKE2b-256 c8a0db03402d44cd17a983a402b54b2b08dd5ba051322433672de7596d5fd22e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea54247a65045d423de4cf1600865bc78ef93c3b580563ef95f84b787206aaac
MD5 42ade890ac6e6455e7cda97351d9bffe
BLAKE2b-256 43fa69c670cb1fef06e1e6bd8086aa5570596a0fd9d35da102bc46087a169f7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 05021a6bf86a6059c7a71a523ed65a5d3019e6229592ddeb9b351d26f6797fe2
MD5 1a6ed17a56476d8af5fabff0583dffb2
BLAKE2b-256 c52860b66bf95ad46adeb18e3191b6fd693543e5300b9449188f081a7548bf5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp314-cp314-win32.whl.

File metadata

  • Download URL: ncore-0.9.834-cp314-cp314-win32.whl
  • Upload date:
  • Size: 382.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 ncore-0.9.834-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 78db6ddfb9070a36928dfc635b1d85596e7628ac0fe34a06fd18356c172ac800
MD5 3974b46040ce575ac4d99b82532adae1
BLAKE2b-256 4115162413a4479d9d4b6b58d4238e1422f2c84360b19d8c34eacf6108cd686c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d216cbea8a3a2e550fcd5f3e6818a6d36ea09633e95ca2d8e92a4630bfcaa255
MD5 c12df4f57deba44849ca8166ea098b38
BLAKE2b-256 cbfe6cf95a495957a64fe04c28d2c00030cbde900053ed3b6a9b77cd21936708

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29e6de894cc5056a525c02e3e643fe75df117af754ff7df39b3633313a08ab0e
MD5 56881e44c88033e8ca7e014f4a73f68f
BLAKE2b-256 664f1a00534014756428f88c340aa437117a32a4a96fd52b8987c31096d526f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp313-cp313t-win_amd64.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4535e051f39685fc93cd98bbcb5554da761799f729ae6ab6069aa1d66455c59e
MD5 a75e9e225c6f0daf7c6cb192880608a9
BLAKE2b-256 7fe2c7caeba3cb33c84cbe6da38dc859ded5fbe92dc90234fc5f403874bf66b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 05db5ea0666b0ef506c045d17a68bde7c1f2fdffa4f75d448808aad39485d8fe
MD5 731d9626bb956dbda080d1b75a2ba2cd
BLAKE2b-256 1c83d5570e29949aef31b12465d611e7751e74e9c59b49d207c2176720e67b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63d57707f139c9c89e12dd39b98cf8321fc982433d7a547217a7ce1e35575ecd
MD5 cd9fe6ac3cc44b33df1093e7e0da3a37
BLAKE2b-256 84254dc44ccd61f5d2a01d219fe26fa4e0bc3d7073dcf158699928921d5b30c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1442f14a7a393b1a56b2f3554a82884e8a5764633977bd563a19683359e7cc9b
MD5 866dcdbc3de3c0231c7f362e711f85db
BLAKE2b-256 ff28b811b2d050a18fe1f7e1f5c429f090cb8f6c94ba186b4c903092a6a143ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 099c3fd78d8e561555b6aa5ad64a7017401dcb75dcb90e550b46a9116bbb975f
MD5 a94209190b72b3832a0a4e40402b0b19
BLAKE2b-256 f856485cff6c0fd1329213ff9bad4edf4706c081bc09e1e6760958e578ff9ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp313-cp313-win32.whl.

File metadata

  • Download URL: ncore-0.9.834-cp313-cp313-win32.whl
  • Upload date:
  • Size: 382.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 ncore-0.9.834-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 59c5361567a71826a9b8d99960e11a282cf07520876c3cd00de340dc7cf590e9
MD5 e82b1a5fd8b845e32deae2197715e639
BLAKE2b-256 eb5a53a82912f9ab68856eae837512f45bf0bba5bcdc9450caf8020a37784f5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c295f0c6041242c60c7b8593fad1478c9783cddc98a3a52c3458448c05fe8131
MD5 c0a005fa9fc25029238e485d61e22981
BLAKE2b-256 2bde321f839e6b96f48d7029978718c62ed598330af26375d583d4e2f2b4ffcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 210e04f29245759035dbde9c2cf8dec7f57fa35b63c9ff559794e1f0f7a0d490
MD5 8b8e902e96ed3d892473ec9d0ab657e0
BLAKE2b-256 9eb5482d59d6584c0d8c2f8c9ef62957978ed822113d3a05bd8946a4d8218819

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5f5698b09c4883d9242665349f2e541d8dfb9af1c684ee42d3e85d1e8dc0ddb3
MD5 5c056b09f3c679201aaa0ea696c0d483
BLAKE2b-256 f12827f2338cae3e242a9a82d2868356100e4148fecfd94e075b363b7062c36f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp312-cp312-win32.whl.

File metadata

  • Download URL: ncore-0.9.834-cp312-cp312-win32.whl
  • Upload date:
  • Size: 382.9 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 ncore-0.9.834-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 502ee6cdc5376dbb3fb11953f7eedfd36c7722b4959e088d8040ca08fbf6cd36
MD5 12851d0863aeed72fd7380cb70df2248
BLAKE2b-256 3dba18d06f4204e23801fbe64c454df6a903a70d93f7cdab7527f0d2953e29ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66c359254e9259f77e09dc822ae0f6dc1282d11fd9bc4fbee62934039dde427d
MD5 458fb4e7c4a3cc2485f5fbf0ffb52cef
BLAKE2b-256 9c112dc7cfe80a0ed37b568e57c0e4040d7e460189c26afe12877f087283930a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d9416ecab625a3d7f5753b529e7fec17a5b0f7cf2ac220c7dd680c6d6497b0e
MD5 eed3b1a59a96ecac97dbebd894146854
BLAKE2b-256 6074db8cb228b9a3a89754fe72788ddccbfd0191037e5c7c2e9fb2d5d5b32939

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 378e720a9e143265b44634d05a274116b7cfabfbd362961bdfeb26a6bb1b9f00
MD5 e4627949a7fefb2aad476aa5f719c952
BLAKE2b-256 199efc0e930d6cdcc295b48edd7cca66df626865ce8eaa5dfd992a2a4257af40

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp311-cp311-win32.whl.

File metadata

  • Download URL: ncore-0.9.834-cp311-cp311-win32.whl
  • Upload date:
  • Size: 382.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 ncore-0.9.834-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bff0d20505c45cc7e70148c69142719a18f21b5988cbb26a13e84e3e1f40c907
MD5 4b885d3f6e75a69f2c84a1ce9496f72f
BLAKE2b-256 d354fedf9b89da0df886fa463589e3a4202e3170b81b30cbb32295a5eabd2981

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f233bcdb902fbd249642e6aefdf0c0d3866c8167db8508c3a74e2f030286fff1
MD5 6e287527497c806251c3566de2a67884
BLAKE2b-256 b71822b8c0992a73538ffaf3084363de2c56b975ebdcf4347d2829ef72998fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a860a52a609c3bc913dfa57bbb094d2c7767b726cdf9743d1e73f5cd990f2984
MD5 cf1d37445e12760e41b52d64a31ae68d
BLAKE2b-256 14a9d68a7bd29fc88cd04e980236c4d4961ba2400f84d1083997ddbd247fa60d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for ncore-0.9.834-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e63a3bd1a2198d592a2ebe95ee51a45618208f68c95129c0a264da143e486354
MD5 2de2d74d74b27f43a4f6916cc4de4a39
BLAKE2b-256 7517c06b0a9067f4f8623efaba8639f169902e833df8775e0d4ed13cf4869cf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp310-cp310-win32.whl.

File metadata

  • Download URL: ncore-0.9.834-cp310-cp310-win32.whl
  • Upload date:
  • Size: 382.3 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 ncore-0.9.834-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e96ac682a7e37520582093daebf009ec65ad811b8d46bb5dea86f91834ef78c3
MD5 442eff3ee4816213c916bbe1e7f36d7b
BLAKE2b-256 d3934edc04cf6eb6f7bff16b2b4437297bcad3126d6ff5f66469a51b6e384f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 311e13fc4d780248feb10702c7ece9593686333a3c2f4d2a3269a0968ba332db
MD5 ade57acb5fd32a542447b03fd736a6b0
BLAKE2b-256 6759a324da9205e6d1fc310a067f234b4fe592b49b34272973ba50fe53ca7191

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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.834-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ncore-0.9.834-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 123ea3d7dbe664a8389a415fdda70a1e8b232abb6aec5ae8617aa610aa371540
MD5 2cfce30af40679a0157b37cd501d4940
BLAKE2b-256 02d175700e8e32df083db9bcc1e267b8a2b1e2c9fba076f542fc65b7406f103b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ncore-0.9.834-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