Skip to main content

python silk voice library

Project description

pilk-nogil

fork from foyoux/pilk,在编解码过程中释放了GIL,适合多线程处理

python silk codec binding 支持微信语音编解码

pilk: python + silk

关联项目: weixin-wxposed-silk-voice

安装

python version downloads

pip install pilk-nogil

介绍与说明

SILK 是一种语音编码格式,由 Skype 公司研发,网上可找到的最新版本是 2012 发布的。

SILK 原始代码已上传到 Release , 包含规范文档

Tencent 系语音支持来自 silk-v3-decoder

Release 中也包含 silk-v3-decoder 重编译的 x64-win 版本,支持中文,源代码

SILK 编码格式 和 Tencent 系语音的关系

此处 Tencent 系语音,仅以微信语音为例

  1. 标准 SILK 文件以 b'#!SILK_V3' 开始,以 b'\xFF\xFF' 结束,中间为语音数据
  2. 微信语音文件在标准 SILK 文件的开头插入了 b'\x02',去除了结尾的 b'\xFF\xFF',中间不变

已下统称为语音文件

语音数据

语音数据分为很多个独立 frame,每个 frame 开头两字节存储剩余 frame 数据的大小,每个 frame 默认存储 20ms 的音频数据

据此可写出获取 语音文件 持续时间(duration) 的函数(此函数 pilk 中已包含)

def get_duration(silk_path: str, frame_ms: int = 20) -> int:
    """获取 silk 文件持续时间,单位:ms"""
    with open(silk_path, 'rb') as silk:
        tencent = False
        if silk.read(1) == b'\x02':
            tencent = True
        silk.seek(0)
        if tencent:
            silk.seek(10)
        else:
            silk.seek(9)
        i = 0
        while True:
            size = silk.read(2)
            if len(size) != 2:
                break
            size = size[0] + size[1] << 8
            if not tencent and size == 0xffff:
                break
            i += 1
            silk.seek(silk.tell() + size)
        return i * frame_ms

根据 SILK 格式规范,frame_ms 可为 20, 40, 60, 80, 100

快速入门

详情请在 IDE 中查看 API 文档注释

在使用 pilk 之前,你还需清楚 音频文件 mp3, aac, m4a, flac, wav, ...语音文件 之间的转换是借助 PCM raw data 完成的

具体转换关系:音频文件 ⇔ PCM ⇔ 语音文件

  1. 音(视)频文件 ➜ PCM

    借助 ffmpeg,你当然需要先有 ffmpeg

    ffmpeg -y -i <音(视)频输入文件> -vn -ar <采样率> -ac 1 -f s16le <PCM输出文件>
    
    1. -y: 可加可不加,表示 <PCM输出文件> 已存在时不询问,直接覆盖
    2. -i: 没啥好说的,固定的,后接 <音(视)频输入文件>
    3. -vn: 表示不处理视频数据,建议添加,虽然不加也不会处理视频数据(视频数据不存在转PCM的说法),但可能会打印警告
    4. -ar: 设置采样率,可选的值是 [8000, 12000, 16000, 24000, 32000, 44100, 48000], 这里你可以直接理解为声音质量
    5. -ac: 设置声道数,在这里必须为 1,这是由 SILK 决定的
    6. -f: 表示强制转换为指定的格式,一般来说必须为 s16le, 表示 16-bit short integer Little-Endian data
    7. example1: ffmpeg -y -i mv.mp4 -vn -ar 44100 -ac 1 -f s16le mv.pcm
    8. example2: ffmpeg -y -i music.mp3 -ar 44100 -ac 1 -f s16le music.pcm
  2. PCM ➜ 音频文件

    ffmpeg -y -f s16le -i <PCM输入文件> -ar <采样率> -ac <声道数> <音频输出文件>
    
    1. -f: 这里必须为 s16le, 同样也是由 SILK 决定的
    2. -ar: 同上
    3. -ac: 含义同上,值随意
    4. <音频输出文件>: 扩展名要准确,没有指定格式时,ffmpeg 会根据给定的输出文件扩展名来判断需要输出的格式
    5. example3: ffmpeg -y -f s16le -i test.pcm test.mp3

ffmpeg 也可以使用 python ffmpeg binding 替换,推荐 PyAV 大家自行研究,这里不再啰嗦。

讲完了 音频文件 ⇔ PCM,接下来就是用 pilk 进行 PCM ⇔ 语音文件 互转

silk 编码

import pilk_nogil

# pcm_rate 参数必须和 使用 ffmpeg 转 音频 到 PCM 文件时,使用的 `-ar` 参数一致
# pcm_rate 参数必须和 使用 ffmpeg 转 音频 到 PCM 文件时,使用的 `-ar` 参数一致
# pcm_rate 参数必须和 使用 ffmpeg 转 音频 到 PCM 文件时,使用的 `-ar` 参数一致
duration = pilk_nogil.encode("test.pcm", "test.silk", pcm_rate=44100, tencent=True)

print("语音时间为:", duration)

silk 解码

import pilk_nogil

# pcm_rate 参数必须和 使用 ffmpeg 转 音频 到 PCM 文件时,使用的 `-ar` 参数一致
duration = pilk_nogil.decode("test.silk", "test.pcm")

print("语音时间为:", duration)

使用 Python 转任意媒体文件到 SILK

使用 pudub 依赖 ffmpeg

import os, pilk_nogil
from pydub import AudioSegment


def convert_to_silk(media_path: str) -> str:
    """将输入的媒体文件转出为 silk, 并返回silk路径"""
    media = AudioSegment.from_file(media_path)
    pcm_path = os.path.basename(media_path)
    pcm_path = os.path.splitext(pcm_path)[0]
    silk_path = pcm_path + '.silk'
    pcm_path += '.pcm'
    media.export(pcm_path, 's16le', parameters=['-ar', str(media.frame_rate), '-ac', '1']).close()
    pilk_nogil.encode(pcm_path, silk_path, pcm_rate=media.frame_rate, tencent=True)
    return silk_path

使用 pyav 推荐

import os

import av

import pilk_nogil


def to_pcm(in_path: str) -> tuple[str, int]:
    """任意媒体文件转 pcm"""
    out_path = os.path.splitext(in_path)[0] + '.pcm'
    with av.open(in_path) as in_container:
        in_stream = in_container.streams.audio[0]
        sample_rate = in_stream.codec_context.sample_rate
        with av.open(out_path, 'w', 's16le') as out_container:
            out_stream = out_container.add_stream(
                'pcm_s16le',
                rate=sample_rate,
                layout='mono'
            )
            try:
               for frame in in_container.decode(in_stream):
                  frame.pts = None
                  for packet in out_stream.encode(frame):
                     out_container.mux(packet)
            except:
               pass
    return out_path, sample_rate


def convert_to_silk(media_path: str) -> str:
    """任意媒体文件转 silk, 返回silk路径"""
    pcm_path, sample_rate = to_pcm(media_path)
    silk_path = os.path.splitext(pcm_path)[0] + '.silk'
    pilk_nogil.encode(pcm_path, silk_path, pcm_rate=sample_rate, tencent=True)
    os.remove(pcm_path)
    return silk_path

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

pilk_nogil-0.4.1.tar.gz (254.2 kB view details)

Uploaded Source

Built Distributions

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

pilk_nogil-0.4.1-pp311-pypy311_pp73-win_amd64.whl (141.9 kB view details)

Uploaded PyPyWindows x86-64

pilk_nogil-0.4.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (197.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pilk_nogil-0.4.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (201.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (171.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-win_amd64.whl (142.3 kB view details)

Uploaded Windows x86-64graalpy312

pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (199.9 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (202.8 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (171.5 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

pilk_nogil-0.4.1-cp314-cp314t-win_arm64.whl (140.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

pilk_nogil-0.4.1-cp314-cp314t-win_amd64.whl (144.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pilk_nogil-0.4.1-cp314-cp314t-win32.whl (129.6 kB view details)

Uploaded CPython 3.14tWindows x86

pilk_nogil-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (520.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pilk_nogil-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (502.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pilk_nogil-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (524.3 kB view details)

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

pilk_nogil-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (507.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl (176.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pilk_nogil-0.4.1-cp314-cp314-win_arm64.whl (139.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pilk_nogil-0.4.1-cp314-cp314-win_amd64.whl (144.5 kB view details)

Uploaded CPython 3.14Windows x86-64

pilk_nogil-0.4.1-cp314-cp314-win32.whl (129.2 kB view details)

Uploaded CPython 3.14Windows x86

pilk_nogil-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (514.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pilk_nogil-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (497.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (518.0 kB view details)

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

pilk_nogil-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (501.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (176.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pilk_nogil-0.4.1-cp313-cp313-win_arm64.whl (135.8 kB view details)

Uploaded CPython 3.13Windows ARM64

pilk_nogil-0.4.1-cp313-cp313-win_amd64.whl (142.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pilk_nogil-0.4.1-cp313-cp313-win32.whl (126.8 kB view details)

Uploaded CPython 3.13Windows x86

pilk_nogil-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pilk_nogil-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (497.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (517.9 kB view details)

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

pilk_nogil-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (501.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (176.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pilk_nogil-0.4.1-cp312-cp312-win_arm64.whl (135.8 kB view details)

Uploaded CPython 3.12Windows ARM64

pilk_nogil-0.4.1-cp312-cp312-win_amd64.whl (142.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pilk_nogil-0.4.1-cp312-cp312-win32.whl (126.8 kB view details)

Uploaded CPython 3.12Windows x86

pilk_nogil-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (514.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pilk_nogil-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (496.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (517.6 kB view details)

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

pilk_nogil-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (500.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (176.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pilk_nogil-0.4.1-cp311-cp311-win_arm64.whl (135.8 kB view details)

Uploaded CPython 3.11Windows ARM64

pilk_nogil-0.4.1-cp311-cp311-win_amd64.whl (141.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pilk_nogil-0.4.1-cp311-cp311-win32.whl (126.7 kB view details)

Uploaded CPython 3.11Windows x86

pilk_nogil-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (513.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pilk_nogil-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (496.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (516.6 kB view details)

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

pilk_nogil-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (499.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (176.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pilk_nogil-0.4.1-cp310-cp310-win_arm64.whl (135.8 kB view details)

Uploaded CPython 3.10Windows ARM64

pilk_nogil-0.4.1-cp310-cp310-win_amd64.whl (141.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pilk_nogil-0.4.1-cp310-cp310-win32.whl (126.7 kB view details)

Uploaded CPython 3.10Windows x86

pilk_nogil-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (508.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pilk_nogil-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (492.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (512.3 kB view details)

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

pilk_nogil-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (495.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (176.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pilk_nogil-0.4.1-cp39-cp39-win_arm64.whl (135.8 kB view details)

Uploaded CPython 3.9Windows ARM64

pilk_nogil-0.4.1-cp39-cp39-win_amd64.whl (141.9 kB view details)

Uploaded CPython 3.9Windows x86-64

pilk_nogil-0.4.1-cp39-cp39-win32.whl (126.8 kB view details)

Uploaded CPython 3.9Windows x86

pilk_nogil-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (508.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pilk_nogil-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (491.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (511.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pilk_nogil-0.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (495.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pilk_nogil-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (176.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file pilk_nogil-0.4.1.tar.gz.

File metadata

  • Download URL: pilk_nogil-0.4.1.tar.gz
  • Upload date:
  • Size: 254.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1.tar.gz
Algorithm Hash digest
SHA256 85f7bd4529a08e19ed994da96d4d4a740d1ccc3f26fb6de32bb234b319c2a07e
MD5 67c4a6ccf9ce8e76a3d595db18e0d60d
BLAKE2b-256 786145de9220e359a6cd60f5dbab9af9362eaa71343dd774edb4aa0c1a0aee76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1.tar.gz:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e83f80bad7c89430b2f718c88321b51e26ae53589ccc9582ad1820e8c7672124
MD5 2f1e9e6bf91d3ff9a2ffca1e4b3e820a
BLAKE2b-256 8f352d211d8e1d101fa4d5246f6073c09a92a9cbe88fff879799baa6cffbdf64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa14063a5c700f2f7a9d7fcd1026565344aa0e75a5d5fc8996ca16c35cdba623
MD5 9718425d46b477f6ec5e5c3bcc6a899b
BLAKE2b-256 43d1a9f50c10bef9250c9afd83888ecbf4c09a32a63bb64700dec84d11c2b9ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 234df053b64ba19de830cfb3f00035425db60fc0a76cd04b374fce1f71e3fe70
MD5 3b93848f07255afc8e266c4e674b113e
BLAKE2b-256 944b99b80036a79817b4244189e59a0d414e7203eb4d5850b2cd388e4dd72b9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26131ce7d326de0a4735dd6f000ff2ae7becb22a14e2b57c106cefb6f7919a97
MD5 fa3e633e1008824e167d752d7f126140
BLAKE2b-256 2b7d2c9fdcc4629326816311c0e58b3dec20f604b55d5fdf9cf6262338d18ec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 01436d8a177f9f0c121b931a4431819e63525a59d9fe7f452f8a28d5e4c350cd
MD5 6152547844f9703ffcc7954f378924db
BLAKE2b-256 356ccdcdfb36214828ee51c55db38c193ca7d0a6be7c4357d8df10e3ab10a4ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c14b7c7ce41152f1da85fce3acbf94f126e6bc359a5030bb453336aa87e215a
MD5 7b54c821b87806313363b673fca46953
BLAKE2b-256 02b8575a0f07fc4cda830aacd0268effa371f231eeb501f2a9777f8b907cbe85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18a7be9724038609c4d6406ef34807d5d62175b827c8bdbae1968d2cefd3f3b4
MD5 8bed2f3ed5b64e40105794a05dfd60cc
BLAKE2b-256 770a91f468d202be01aed491cddda3a01bd81130a5bcfdb90ccb0a367fe70e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 734ac2111fa736053306543d061e602a49d88b00e09116ff0a493a9af7f5ba23
MD5 485bbb8ffbe3031ccb4311bdaee0e390
BLAKE2b-256 6908caecfa3d9619a2f95540c531debd051195ab98d162e9af975b616cb87d00

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 140.0 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ddb7b8634ac5215291095df3d06f58b3d6f65b3990ffd348cebbfdc7db813d15
MD5 f1730975c2f7c30bbe5aae3ec7645544
BLAKE2b-256 e0bf842f7274de9bc19c7458a95d03bc7e46ebc8a1776323848e1b2916c8928d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314t-win_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 943fa409c23d9fe1f2e364afb7a88ce4b4cb04e9908d491b2d979ca51590c34f
MD5 0b3fe483bee52e57aebe00f31ae50bca
BLAKE2b-256 bfc23f0acbaf13ae7b994b58d6346f184377e0efca2d3329ee12fae7d3a6ed7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314t-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 129.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 27bd0a22c5e86da86157f8d780742d29fa9361e327626fd4a6ae9e2486501e8a
MD5 085dae3bcf7403494f500a9bcae8165b
BLAKE2b-256 f595b3f0d7188d997736c65a04048865d7d674c632273303d90b7338f7615576

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314t-win32.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 173e68bf5b0d808a8023208567c6b0f869c140c9c0a493ead95219ce02d8ddc4
MD5 dc0f20c94bca980c704990ae8f556928
BLAKE2b-256 156b559327057b1632db94aa2f6c0d3dbf172ac9d36f7b59b777af8b1a7e85ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6d97e734dce9e13345ef1e24bc0185285bbc87f2901c0997953c509d8e6bb7d
MD5 01f934f54813225e09ec14edfa02b952
BLAKE2b-256 2b7d4711aecb7f1681f6e05acb8c60cc6e67527cd55244af949dff66bdf28d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1472dd7659a411cc10c7046d7eff43271939ca7d54c7a6c00c453f9006376a0
MD5 051ad340d1454bf485796021c985db50
BLAKE2b-256 d0b61aa7af66d72d9453fe46e4d0a8631f3a8f6a3151050afe5dd2adf98e483e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2256d03ea310e2eb87b3207c66c0503411e4a298d91b302c9bd7da91ceb0fdf8
MD5 b98b8ddc86a6cecbb286d43b7ca3c337
BLAKE2b-256 93828277de498239ae1565bd122d02abc41bbb9504e9bb1c6026cfc898bedfda

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea17f012eefa0811519a4467b3f9d64c99291b49861696b7ea93c41e46cd087e
MD5 dfbb2809d448f1fffbe8eee73aac345c
BLAKE2b-256 5dbb50b451881743305158886abec9dd97c1d346b75420ede203cbc883579aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 139.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8e2ff1777962a1ae1cb40134d7d7d5e0d71efaa1470029174e05d24cc9423d5b
MD5 1b66b4578a606797ac77b156f6cdfbb9
BLAKE2b-256 350ea641e679f6420eb7edc5940aa76ba809823fcec49843f2907c002ebd5271

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314-win_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 144.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bb25049517528b723b1edb4fbf9d9ccda8730bc9542372d66a67141f74649833
MD5 2d1775150b34d2aa3f502334c76b418a
BLAKE2b-256 5de7b01b5b55aa98a883effaeef5a93c58504297ebee7c6270fd9fe2734b47ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 129.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c71c86286990cb75b97c2280a0081fb559309c8037a6eb7d46232872a9fc5385
MD5 a4ba3272afda61ef5f2f1ce95e2f592b
BLAKE2b-256 073b31312e87c23d2f3f5f12a0f7eb7149411461e8ac21626aa287cce9e37fc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314-win32.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 837711e8f523d8771a06c0a1ab8dbc3dd44b24c4f4c7f7e5af16f30130350356
MD5 1a7084fe209e23d7c45b82570979c30f
BLAKE2b-256 0f4ef293bd8545bc221e334703aecaf34258324d3870d5d02557c917d513b53c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6318c8298488b06096bf18298dde22fca9c73644453a72e6406d98b190d06617
MD5 48e4eb93b331c63ba7db0295a1fa1222
BLAKE2b-256 fff2bd5275c970197068a002b5bd80689a64018c5275c0c7777fe833f6a27e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a90fb4f13ce741849aed1f55a8aaa47af707cc83c1bf7f447064106b0407a6b6
MD5 cc87e0df8a5f3fb65d12c5e31c4013ca
BLAKE2b-256 75d23d1d29fe0660c8b939be2a826fd85e086ae7e03f8b68116e3cb3bef047fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f210f44c7ff92826160bc984909a79319e86e9eb40ef95fa0b80b22c4f3ace0
MD5 5dd47a3b3510e78fc8f45601b079e32a
BLAKE2b-256 5ff7b4ff462509882f11f84688d60fda9f60fc7f1129af66841716603cc776a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2a1c5f01989a05340816f5a27f501a8d3e65f3f4b787eee2a8c1777f17a3c44
MD5 ca3eac0b8202524757fbdf3b49d99cce
BLAKE2b-256 3883978597f3580058e1ab3c7299dfe8456cda469323675c7946f25b48fa635f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 135.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 97b7981b151eb8656e775b07982c185353cfebdb729c5d7f55fb9a9596546565
MD5 f42770568e59ef390ae4aa91218e653a
BLAKE2b-256 37acfad70fcf861469d934ad2a05edac7d0b1607ed34f3d5e46eb39d29fe021c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp313-cp313-win_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 142.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e370b31fe47f3d6a898f959be0a2771d1a8389601ae113c2b6685dcd2961e17
MD5 8998ca0f10b87cb1eaf3438308965afa
BLAKE2b-256 dab617fdd15bc19b1b014de0adf19b8600adf60b518dc20b1a86cd51c6782e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 126.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ed5696bc0542567a18439eb2c3d364d9d5a32f2142b6a2e109689ea4e267850c
MD5 d473f42b7c2d9fff419ab682352abdce
BLAKE2b-256 e1f85585e9519047ea3338d88112f6b5ca797d45f5614e9fa8b725aac14c7190

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp313-cp313-win32.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d1b59acd88ae3d6e7c13f3632e1a412658aba026452d11207a159265c2f6ce6
MD5 c89f212ff7a71cc524c5db6c92b83ebc
BLAKE2b-256 e85703b0d70e3118344d5bc234bfbda1c70a052ebabef7280a533ab1785a0425

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8000e758f6de7c406ad7608499d246309f41b3d5efc7ce009fc20d0b67dde2e
MD5 09247bf47d42e966c5a1f0f42e328480
BLAKE2b-256 95ea5478ae12df4a88181e88aac1e98c75df6a4b044f23c1f10536006aa41697

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d516bc1e9f419ced7f8527447d412b0cdebaaa54cff3f9270b352730643ba99
MD5 579767504758f61027aa5bbd9a361f16
BLAKE2b-256 c182defb31ef1f2c30e5c866b97f44d9a77bfab3ccac6f0304b5ed4520d104cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ede01f64afcca3761e1d1520c2fc67a86bceb80afe4f37724b97794714eb5b93
MD5 157fea3f281cf8ec7a18adb491241463
BLAKE2b-256 d6ceb353f2ff564e951478131244c7de3e69d5c9aad6114c579c6aefccb2fe02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28124fb7a9018bcc3e1bb322f6e6ae73a9220c510c39ea10ae4d356718bf9b97
MD5 ae8d8cccead6212ca013ef19e66e55d0
BLAKE2b-256 d932e24c4ece31a8ce6c141739ca16ba547e28c839695548003def81885fafad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 135.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0ad35e16827bc0ca0087fb27b608d8dda06330a9cae8a709d27fcad0102f8470
MD5 30eefad5d37bdf225434c1a75e1de48a
BLAKE2b-256 934381f583d4e7e1a8e5cd2737dcbca524527dc76bc6377618da3f0f65f26ccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp312-cp312-win_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 142.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 539a21151e0c1e4ec62e4b539f069338ddf0d455b389e5c91cc3ca9418e535fc
MD5 965094979cef811daa59ad6fb7389f93
BLAKE2b-256 1b3f8d18af2278cf02c6be28302315c9bdde762b540ff11fac77e49236fceb6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 126.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 852eb3d861c7051429202dbc21531073bcaf4b6f7982b8295233a78db5f6a506
MD5 07e1d1045d0e3b948b48580d6dccbd3a
BLAKE2b-256 b7e42281f14569973ff77a57fc9b02d36c47b4888b308e1a034d10295bf44989

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp312-cp312-win32.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a42e2e1316eea6bd7a261ad2346264fed861768e5998cbd66e81cd480c562999
MD5 caba97a2125850045e881e6045dc013f
BLAKE2b-256 e44ff9fea3b21235a8af1a1fdad96c4f1d45b725482fa629e9f2b5851203eacc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74c5af1a4e5822210263217ec25e246a8ffe2d429077b7b747bf719d769cf065
MD5 66ddda1c497dede9842a23c7310223bf
BLAKE2b-256 df59bfc76676072e2b2ff2d4ca6111e1d1614405587e90cb4bf01f83e445d12d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1145957f079dbcaf21eab02f46ad23f41c1f5e076c3f97d6af981b035b6662f5
MD5 3c0c7a70ef4f2249b41075fac0db00dc
BLAKE2b-256 29b5c2925f41b0cdd15d442b1a53b43c3205f03c243aacc651bea78c74e7764b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fe7348da65281bf54cf32781082aa300b043c894ce21ef52059ec5bc0d5524e
MD5 046fbe42e1795c601babab18ef912737
BLAKE2b-256 6eda62165d37e7e012ab350a3dcabdc43648220ae78c0986d91f0c5bcaef2ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e950a41ec81883240de214e52cc31de0bf5600135917890ea04109e9fc3b160c
MD5 ab9d21f344980c227f6fe790df8a29e3
BLAKE2b-256 6e0fa1fc00822f7b6f0cb2e2e22bd529da83d97a9be312e514b09464b2b48a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 135.8 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2d9bf790a701b908c39e5dd0ba53a97b5d0fcbc783a56f4599797f43570687c4
MD5 5464456a3a0facc273ca270c59a802f2
BLAKE2b-256 1ac9cadf3af8bb8d266d672248d040616049f77e5170b4cc57770c2635e9ac2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp311-cp311-win_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 141.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9cb218c702f9528727d07107d52d59ffafb3022943fb515071ce86af033aa17
MD5 4401f99eec88c06ab1194d54862b6415
BLAKE2b-256 b8e07aac50c07d70913f75ae989ff160e850c0faeb10b2a722412a706a6ccdbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 126.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 50c4f308eaac33d378f0b140dea000b3623db7e3a96d0054f34c66008adf122d
MD5 ebe369096cc80f0812808dfb82eba0e6
BLAKE2b-256 2262c613605fa70bf7f24ff1a3eb598a6890e2d4cfd15a10d13f1b0bf68cc327

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp311-cp311-win32.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c51d7744b34dbb9c3a292173120a36601bd728252f3f3fae2a1a7f107bb7d5c
MD5 e72a09d84979995b1623555f86870ad8
BLAKE2b-256 828be6bf3c53651fff1a99a48fe4b19e1c976e9296368048a844071129cffb35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb79da7b486c2e8114162f0355e209cc42def270dd82b37240cd541b8a5511a2
MD5 87f596f753545110dba5e1955e27cfcc
BLAKE2b-256 aa30ae74e424d3c706c8f0ef54c9db7e9a5ddb931dfdface6cb987b5473b1686

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f5430923449554852ec355c53cd561648832d80592a99b8a762603b69a27bba
MD5 46f7cf368513a31554df9b224d95c923
BLAKE2b-256 7486e43797d710816a7d64f760998273a9a964e7b2aad024845d9d98b883c92e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfed7a225ce2c2e465c0bed438e90cc54359d7e6fbc1f06b2eec7232d420eb87
MD5 b4b012373e4cd0f8eda105262f068477
BLAKE2b-256 c4b240cffa893c6833f54d0ee6d10293c18eb71d4a6241977ab3f44fd9520919

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0087a9d70c32a960706439bf4b839503b14c42de08b89d3e1ba68b4573bdfa4d
MD5 d6d82ac0926fc776269fa7b8eb556794
BLAKE2b-256 56ec55ce083dc570fe574596b61af9e630df9aa7f3b60756bca3607a655a6494

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 135.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 bfcec30dec66a5497b9f6fa9088165b4c6f71864a96f2b81dfd736054f180e67
MD5 4598fc759430dec97f3e6dc400597573
BLAKE2b-256 d3eaccf873d142f9d9ff32c6d59987f3d0b7e34a136aba6b794f114337ea2c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp310-cp310-win_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 141.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 89395cb175e1d5e880632ad7fcbb0803c22cc1c45a0e72b380ee53951308ba20
MD5 a12536a13ff3d5c7ec0a0ae370e4cb6d
BLAKE2b-256 ff158811fdfd0225d33378199ee0ae7b057dd58a387a0ffe6f3409e911c9971b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 126.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8019a29b6a87c28fd77031e29ea65cf3a52fa40bba1989af51e3bf6ce4f412a1
MD5 b16f4828d277d564955733565ca33d95
BLAKE2b-256 f30f0a8544ca26eba8251da59ee78524753c501521e6eb60ee74ebbba96e5d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp310-cp310-win32.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8792af43714c3134deec4b07d2f8128f3079c8af96bbc427fd2646ddfbac65c
MD5 e016f7f14593d25a5499fc649db138b5
BLAKE2b-256 98b930e4919064672a02e6047d68486186663243e833888129a1292fae5e4d92

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91a3c0a62f0231d936feed2008da36b997426e26f07d7b1fe3b9edcf83857d45
MD5 8d66137c6e2023aa3637e6a56b344cd3
BLAKE2b-256 34a1799e4b69fb13645527d6c6cca0d08a82ae2cd5cc74bffec90c11157ed752

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d5fe3bc0e7235abda68e7239a11a8f9106dc4a5f7504e21627c5755c1730e21
MD5 a62e9ca83e92c0ec0d1133aa6308fd77
BLAKE2b-256 39763fede0d98875217205dfb97938add4f1dab63acf8ecf94ddf783e5b62916

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a900248906e170c6d09183571cd7471cf78138e153680a5c3e548c5e9c1394c
MD5 5a884cc7e826ecfaace74cea7ab20dd6
BLAKE2b-256 8805524152145ec1e3a9a249ab84edebd321e654cae6de0c9e5264a418b7c9e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 615d74d80deecae1ce7c441429c8101afbc946087a51ee0cdccaf1be94e548b4
MD5 9107320aa5415e7421bfd704dceb71a2
BLAKE2b-256 e208ec9158672376f3ad5e3f4b3df2a729918dc0d462d5014f230e024e349141

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 135.8 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5feefc9bbe79665bb01c3d37b3e9867fafae73884f0c54a3ad6cecc55a3218b9
MD5 e458c3a853a339e507577efa01c19dae
BLAKE2b-256 53b257be47e5267f5c95c90b4a5b3bbbe2cb91997afd88d67168e5ffbf14c1ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp39-cp39-win_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 141.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 956520a67140f58f8ea23022dc80f6b639a06ee7b392d00ccf38f2d3c55ed2cd
MD5 7c53e5408229ba5d1afcac8da0d49f43
BLAKE2b-256 57227f52451f24d8ca448f2c974f0faf8cde64d4c863379165cc879ecdb3052c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp39-cp39-win_amd64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 126.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pilk_nogil-0.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 383ca4d339add1f558a2865a61c8043ea51164c1f60cbef8a048bcada3f26de4
MD5 cb797baa819e4f7a9ea98e80bb5c27d9
BLAKE2b-256 552be6811dd993b1469a4acaf72fe853e768bc29bfbdecc9484735f6fc8b5391

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp39-cp39-win32.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37556a854032493359579e2c31b0becd382adf6d3545d46ee7a114532d44b115
MD5 0dc6f4a2862dc481d0dac5a5d613b4e3
BLAKE2b-256 f81dbcc55b8ce59a110b75ef3fa1f70b1bec3c3d073b6232e15b435379ec7de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 440cbe2f3b7487e86ca62e0ff00bc6abab09aca5536adf861cc07d9fd53b749c
MD5 7e65de26b02a78760c72aab27b20696d
BLAKE2b-256 4e4f137d51d036e00c234f02eea05407c1f8883ce2e94597eca8bd2788b5bfa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e40dbe50ec245e70227143524846b747f695361473b3a9fa580de24f458cdd1b
MD5 e167ae38c51c53284bceccae03efac8a
BLAKE2b-256 21270a0e82ac98fde1819fd2a029380dade87aa5b3d08d23e66ac44950a2998d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6642ac224506831ea745c7d502b00d9314223feabfef2e076c5e0f32ee70cedd
MD5 59d03fbf6fdefdfd0dbd9296a27408b9
BLAKE2b-256 6fa02352aa7010e13ce28386ab54578ea33129afe2ebf2b8760285f815d08147

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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

File details

Details for the file pilk_nogil-0.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8f4edc6b6f50fbbbdf8b09e93a093b0d01ffc7751cd56b3f79678c9771322f7
MD5 d629683cd90212da2cd87e4aafb38168
BLAKE2b-256 bab12fe74bd560128c67b0a77d48075d6a2d198f54f4a785f2236e7b2cab0d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MelodyYuuka/pilk-nogil

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