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.0.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.0-pp311-pypy311_pp73-win_amd64.whl (141.9 kB view details)

Uploaded PyPyWindows x86-64

pilk_nogil-0.4.0-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.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (171.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded Windows x86-64graalpy312

pilk_nogil-0.4.0-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.0-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.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (171.5 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

pilk_nogil-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (520.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pilk_nogil-0.4.0-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.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (176.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pilk_nogil-0.4.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl (497.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (176.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pilk_nogil-0.4.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (497.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (176.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pilk_nogil-0.4.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (496.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (176.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pilk_nogil-0.4.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (495.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (176.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pilk_nogil-0.4.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (492.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (176.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pilk_nogil-0.4.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl (491.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pilk_nogil-0.4.0-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.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: pilk_nogil-0.4.0.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.0.tar.gz
Algorithm Hash digest
SHA256 850b164abd4e72c82b95526b4b12b42e04a9ff4ab2da6ca455f9263e625d6325
MD5 42f05c28a471514720e26c67cf195779
BLAKE2b-256 f135991c902d4b901b2ce0e3ad3b2c154e05be7995ef0d87ae64fe59870219c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0.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.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1694db852fd6081a5459644f042c69c0b5cac63eae2660cf57b0ce58c7c30b2a
MD5 62850552da5040b2f74b5870f52d4bd2
BLAKE2b-256 b7da91ca27817dfacc35170cc6cb77c6aba16ac124ab9c576c26bdacd9c71665

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76d09b42d1874b6f7e2b03f6cf335502c37086c97a3dca4e967caefae45c04c1
MD5 fcfe0244f161c7b38cb8f68c0ddb1343
BLAKE2b-256 7bfecf246c7fdb2be4260642b491939a2f21850b29427ba72f7996c809f5649a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19441279317c56f06693eab04f922ec29e584546d29cce40d5d0d056d15b7ec7
MD5 e7cc67e05e9df4942f0288deea2b225b
BLAKE2b-256 8c57d8a117892d01eb6d85a39e0644f8099866edd6c3fd778a1980b5007144c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8db3e53279384c5ee969bcaaed9b7cd0fbe78f8b1fadd3557ad3417359a1d03b
MD5 bb271325dba2a4e4e56b33243f41d8d9
BLAKE2b-256 9fa09d434b02f31cc8097c8dcd6fd06722d24ed679cdc6ecd0dc6b0729206800

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 9633493a8642561774e41f57f96ed34e9333daa77832bf4e41de3a74008251ec
MD5 d30b5f48355035151152dd1fdf004d43
BLAKE2b-256 ec7eeb742e6d90507658d6ad96fbdd2bd81e63f1c718793538f6ae69789fbb83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81de70a691ff229f81d4c1c015776ded2a675e2544c00a52fce99586a8ae5aff
MD5 34a743a24c8ae3ea26fd206e3041b41c
BLAKE2b-256 6aabcf1e806a0051385e54e982e044eebc10f36f5ea813c521f258d01a9c04c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 783453f696f01757abbc177260c42bbbbe1ae14ce65a7f622f724e916d6c71e1
MD5 20d2409f2ae801df0aff0c74804229e2
BLAKE2b-256 4a2bd0e292b89a18662a2f571c0970f200299517f9499b2e886c210dcbc03da7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8acfd2639a26eb86c742c5cb2e0016e34d20776cb2a7cddae3b224a1c604a053
MD5 c284313f7ebefcd9d73da786361643c5
BLAKE2b-256 0195d1783c5978c8299cf0562839abcfbf8c7bfd038414d5940b2286aa3dd6e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3c8a46bd7f67f10370a2efae2d1eb05d63d821c322e23b3d9333c734016f09f6
MD5 24f48af2b2895d50fee4c8658a5d6aa1
BLAKE2b-256 4c33e3c9aba89c98c8af2174f649eb4f26c63b54cf89e4515b252ade112fadbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 10303d9390ab50f949d614156e26e9f685de1f9a41e8b7195d15475f3b00ffeb
MD5 7e0c0be3d2a1a05f2f36e5c01ddd384f
BLAKE2b-256 53d852686ea2b74cb7add6bf4b02746985da6a6de09ac0828a255655a48c315e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a88d8e857b103ef90593f1447808226cc48b579662ac3d079c0e20fab29e5972
MD5 50fbd67eb1e5dafab9f7ac05767a0fcc
BLAKE2b-256 f3ca7d0b97fb55df622c95bfe453d729a34c49f5fa5af34cdb81df033ce6a792

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5e5c372af7b5b704c1b4ee448014917f8009d27a46d1bfea985f5d636f9f1ed
MD5 e733583de5c9bf3946634d9a005cdc57
BLAKE2b-256 66f7566ce0a0a2ea1d2b8e6b8d43174a7d29002dc0d4b415f1417f532764f8a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13995a37531874afe2e74a6d5d7306d7437191ec8924b912bf69a8626ccb7d83
MD5 d3404b491c41034008b4d27c34e2deff
BLAKE2b-256 3095262a059059c367ad600c278b2fdada7fe888f480007a8152558f7e01e1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37d8eb8dd12a9d924f99fe9a29ce0d382b2e4059b1404d7b5924daeba40e1442
MD5 2e02b6a5c89598191a6175c03793f0c9
BLAKE2b-256 49e906e51a80b807a1799f67b649c71021837f8737d96f49d1cdeb8da5d8af4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f51f25ff996feb99ff9ef09eb3d68014468cf87046da2bb93bdd523c3ff6009
MD5 39bd80b2318de12ff59777b37819b3db
BLAKE2b-256 2c15f044080a2fa035a168f9d5ae0f309894de696f249c59d3d0d39e54e4b7c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bab3dd016ae521f954d2cd4d0c11b8d5ede513e2d341e66a91cae547c9cf39d8
MD5 e77c786869b4c2b3e3f93489c749686d
BLAKE2b-256 60e5496b5a4a67b990ab0af796df668cede146e15df7efccc2e5d6c324d545e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3770ce2e0b4c01af3c009d53a9b2a78446c4e9b894234a43539465b2cc36840a
MD5 268cdacbc1df98f251da7d2d7ef03445
BLAKE2b-256 9c63db1607bfb1c00df2cb5d30d2a53895aa87e92eb1ef12ed3745effdc14069

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab2b1181e0ee95b302a613be513c82de4288374ae6a6122814fa1814fbfe99a6
MD5 b0a4501b64ae9da734aab8906af31380
BLAKE2b-256 2c8f9be730fc8b1d14f870f4abaed78238e5af97c8c9a6dd6ed334ee7d75ec19

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df81f880498929dffe9acee70277a0fe2510a4a3b348d7989b7a874f900032f5
MD5 6919a1e6cbec56419f281f4e1942ee94
BLAKE2b-256 686f49062061d7d2616515b8d50c9d9adea4a39af57ffcd24aee6226382775f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1c2968cba24e7c6cca3a706d49066e5043f079ef4e315d6426075842b4e11eb
MD5 8f3340a30b67fde262fb746cefe21a9c
BLAKE2b-256 a41dc1659edfbd8c8bb7b472e299190046545292f1ad7051a30c40e3b3e13919

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f191ff2495ff3981ac6e797135f86033e780e7757fae648d97e1c1918c08bba
MD5 25e2e0b9d209dee47ef04be54d9c6196
BLAKE2b-256 a38fe4d8aad22769700f50dc433d9a7c3bc62aeee44cdbdea64a7fcabf1e4164

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5977e298317a466d9042f84add5bf7711420461acd8c1343dcd8864285fedd05
MD5 110da6cfe781a2e5de9c680082c0b2bd
BLAKE2b-256 adbee03c567dc0ab380676d2844b412fb2dc5997323e2a6e6fec88068b81bf08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d5e5206902279b5be5f9ecf4b658db980ee8f844b940d72161d07e32c70a8b36
MD5 b0e5e680d700c0f59ca81f3082cd7029
BLAKE2b-256 2ed958f1b0e334be7d0cbc0a46d9ef1b6fdc740fe4913579c0ee7574316eef2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 56a1a65ab252631ed715d950763530fc617fafcbcfd7b5f220cb59bd0f9baf7a
MD5 34ac0f306af27db439b1d9bc0f62b716
BLAKE2b-256 305dce9707b2c92b68d2b41244b0fcbed300751e79d75e2f2966a42426edb934

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 214bb8c9a0567b06db33bf7a00a072ef4f0b6075c39139a67fa0be197e9c93c0
MD5 b0a97f9690770a2ee8b7f3bb7b6424c5
BLAKE2b-256 7792f4c1a39b2465e2684b923e14256f31c4d202a446e744f323bf6b224f8cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b140e6014b375509af4091bf170da423e05ae5436302908d5a22837a8849042
MD5 2052a92ed8bb11f028ad17ca20e5ff28
BLAKE2b-256 746479fad06af4a2f15dd2b97e163a190983dfba97c95246b5c1e97f536a38c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a7958773b8c4a946f9c46a572926a039f8d40c25aa2382044ed3f037d0cebc3
MD5 ad00837b3cfa000d5f27a3198b9d3029
BLAKE2b-256 4520fad46ded4edd0b1246b018f4687b339b73ac8c7e5347e6d6695110a3fb7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72ff1ab9db296575ee8c9f0eb5aadea21b2afe4493b6b650171f82c537e1d79f
MD5 13139fe1269112377445fce87c2c227a
BLAKE2b-256 e4d51526730d0fc0df0d8def116c6b81735777890b4a93eebc0228d8ac24ac60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d26316ca741b7161b6d7a705d16be9e3f8e50a6e53d4e1d4ab3552bdeb051b82
MD5 60bc9952195906552147dc73b9ab5f9e
BLAKE2b-256 f5d5fdb0f040994deb672e6485be08db5be9c619cbf94841fb3f387b978d687e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2fc5fed65b53e980dd834e3c9184d4ff370d298e5d961a6ad036fd9076f959c
MD5 96bbe69c2fa5fd5da3c5b2a18e9f353d
BLAKE2b-256 023fb83eed7bf0d5aa859b7c6a3372e4ad92ccee26ebf6c92fa87dec94e45fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0069420bd52731a94bfae45f187fce0103fa8ab1d966f4fbd5475bb048597a1f
MD5 d32120356ddd99c8e8958a7ac096bee5
BLAKE2b-256 8d31a37a03e8fadec3a0e9fe11e903eef0620f764690cfb1e85685ba2d0dae76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92b63e9ff0a0e3f59f4bae460faa3f2d4d8d577cc3fe73c4d0cf49eaac1bf522
MD5 68d4eb86a3f234998e4a117b8d8d80b3
BLAKE2b-256 141052f58a19c13c6d588d47301f7d14a8258850228c2cd80bc45e9b44556a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2c030db0c77d2e86761c555977dac8519fbc1412f340c3b71275cc084532ae3
MD5 4b276b6452607b308f3e10b7322e71ce
BLAKE2b-256 d71faac4a9fcadaddc5a65418f02d59cc27a4d28b127f22ec6db862e82b38233

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef77be08dde02b6161b73aa042b36208557aa3d9706d3310190d691d9f76eba5
MD5 3bc4e19ece4bab0cee15fb9dfc0e3d26
BLAKE2b-256 44d1dfe15c082bab452c91aa135d54c1822cfae187e83bbcd42fdf94d04d960e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03629f069c7b9dac184d7956bb08f1c1e30c030be03309a44cabfc6c4a4a91e0
MD5 a18ce397e0947077057965319fdbe7ad
BLAKE2b-256 4b0942d8f167475bd31b2852e879e3819dade2c8b102d17941b829eac236aafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0bee05f2286b04b35296fde0ef8259aa4cf4f1ba64eb55336d455f7eb800663
MD5 f8beb4dbf38ac5440a4de1655e9d1f03
BLAKE2b-256 e509004deb7a81fa079b40d4fdf79e82efd9d6bf04f2c79c97ecb3a9b14f8a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57c233e75de8659222336d7788209fefe5e6d90b265088f196fb9e7be672ac7d
MD5 327aad394249e5a840ad902a2b6814a5
BLAKE2b-256 b8f3e5924d921abb57d12d1709f82f603a7e57b1efd4b7c3515c282c7abb2681

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3af72b6a11cc1753816f66676e75f76769effd52f61bd78ed1a09bc885c79ea8
MD5 51ee8924afad9b32f25c623c6ffdf95a
BLAKE2b-256 c052541248a1cb1425fedf61421a26101bc7c1eadd065502e0eed45a4d3ad9d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1141b339ab7f7ffe52d6d5454aa1b350b3a2aad708478500d8b4d67f7af9f2cd
MD5 e8065cd2385427c0f314ef4efe20a5f5
BLAKE2b-256 bf0365b1665cb86cd419998f5d716d937144b6d9a507b8cb82731aec8a7ac990

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47c918177adc7cd08b96b25a75a9105d3c0d670b3da95a1430f88a9ea9f38239
MD5 2b624e7127a1d3df8da95235b4873376
BLAKE2b-256 a317df5da563980bfa3a5ad7ceb8dc45b744f3e102fa99641bb16b7c30c4e0c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dafaacca149a9525ce56ecbe69905b82f9da26068612bcbff4beb134f6188fb
MD5 64952cb0493716c3ca64448d44806b1f
BLAKE2b-256 4d9fd8a5007a89d693d1e30d93ff9420628effb98b4e7b8ebd26e5de659c7de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a2625b77f69332d040df9176f6528a9e5fb99e27e61c8ca7171dc9e1577c1c4
MD5 7d4a1c37424c5dc6a2f90e94882ca45c
BLAKE2b-256 d3d4c81e960a6fee13c4a8e1be05da53e517735f70a6fb70c61d50b278171cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28d29235017846fbecf820450f3d8197dd5f2a4fb325633af03ce57522e22dd0
MD5 2b0fe4971a1fb94cea5ed2c22db9c429
BLAKE2b-256 16ba8026bfbdcea717ef6f0e844e9926fb30a023c557056e1655e5c9ff550215

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2c38d80552c8553acb489f2496fae1d02e409669d173f33797aeacf0b42c5c3
MD5 14d348c8c23cf61c7f66a8d241ce5050
BLAKE2b-256 8ec187dfdfa4812733ab00ceca2bcf686755965fe9b8832b2097ab85d4255520

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b16164a6c87b16bc05ac8ac8ff70ca172a2f1fae51e2d2990dd7f39e3825c8a5
MD5 567c78c61cf4892ed523fdea94ac7dd0
BLAKE2b-256 ed376f9aeb9414e81d96627ec900004000fb1bd7ea350ab2fb652a987d0a2cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37eaf6bb184c7fc208d3a634cce715a1b0f1aba476756e4f5acb26b1d77b188c
MD5 939ad443e1096c3665d27f61dfe34185
BLAKE2b-256 919f070aa90638f09a42d5a551c8f6ea1b115edebaa33c86a98d50aaf529951c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b74ee1345653a29868e2a67026c04c0e26ab4319bddfe326b907d74533faa127
MD5 9b7b1629230ba614506dc462f0f8710e
BLAKE2b-256 a3bc58be16f2b7d0eda92b415fe4085731107af1184ccb7e06a6862c693b9dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 210981f98f66096fd76cd32dfa644bd79d86837602bf63df08e7318b7acfc83b
MD5 0272e1bec06a1b203366a3f86085e66c
BLAKE2b-256 465b8a46087dde8aabb7f742eba74c8b303cf4fae2678f86666c4bdccf045272

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c0746145f68e8c93475879e7885ada0887de09a0808dd78940f3d9e16fb6e75
MD5 21b7da36264cc99533029419003fb0b8
BLAKE2b-256 25d1df16923a526fe13eef6b367ce94b17a122b35b3d4d7f9eb453b0dd6a2ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66d3bd1b1b0b65deabdfc9de28b0d7b146407fb20dc1a6da33a7da8fa02e56e6
MD5 bcbb92d29459d12b931c4ffca6a1a645
BLAKE2b-256 426d7a899e353235f71408af78dcb773836b722662f2aacf89a33075de0b3605

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f272a028eccdbc45fa0fa556094e3b9c4ceb2d4e997d679d45c5933d063816eb
MD5 54717c1e2ec40d62cd0e67decb2acfe3
BLAKE2b-256 8e0a7afefb33a28d8a7d7ed7a50e33c059c21460aa8bd8aa5417594d64d7e6b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pilk_nogil-0.4.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f212c7391494452687cfb7beebe1bd2d1e89076c0837b91cde184e83387f780b
MD5 b0206ea52e88d996020a49567254ec3c
BLAKE2b-256 1bc685cf11646eece65b675cc92720291a5530ee3f73e3990fb5dbea4e7650ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 986a640c6fdd8340ad4d3990184a7ab49ad5928fa4f7f442ee7daf8e12cff002
MD5 6356ef4f640f98373ddacc61c7873652
BLAKE2b-256 cef5a6af26f1b75e8499941ed11f4f207b324182e73e04e52c038847d302ac6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e19dfe1f396ca1f87cc0d5239c53dc3f6737bcf3c3e61db5e145b8c53ecf08ee
MD5 024c5052e3ec033c70b4119b3001e071
BLAKE2b-256 0135a76ab1fd2c4652c8d933f0c577d1c2ec575b5b81a7a9b715b2010adf6ad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 072fa416e3f7a034f61df80d6adec1147cd11a4361ed9a13d63448f8965bb9bf
MD5 b84878108d8b65ce9b55413d4d20ac7b
BLAKE2b-256 96164e0e1eff141cfb57e2713df5385761babd2b51f9ae165e5552fe1f811956

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98664d4f9684cfbf5c8a4d9e377410821826859e805e38a06ff184e4f6467c40
MD5 711021cdf6a3c00c58645d98f0dbad86
BLAKE2b-256 b323b73725acc1e8d4422738ca178443e3541a6e6f7e2beadb538de89199b2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pilk_nogil-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d83653c5ec2c443c265fd073906507a466d78bc1ee11263fdb1f9e2009efc2af
MD5 14ea8186815992dafa7b2b2543bdbe91
BLAKE2b-256 3142ed3e5cc173a52d929bd3042fb82d8169d4a94aa47ab6eadae829a3cbf241

See more details on using hashes here.

Provenance

The following attestation bundles were made for pilk_nogil-0.4.0-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