Skip to main content
https://img.shields.io/codecov/c/github/Thriftpy/thriftpy2.svg https://img.shields.io/pypi/dm/thriftpy2.svg https://img.shields.io/pypi/v/thriftpy2.svg https://img.shields.io/pypi/pyversions/thriftpy2.svg https://img.shields.io/pypi/implementation/thriftpy2.svg

ThriftPy2 is a pure Python implementation of the Apache Thrift protocol. It allows you to parse Thrift IDL files and create RPC clients/servers without code generation or compilation.

Installation

Install with pip:

$ pip install thriftpy2

Features

  • Python 3.7+ and PyPy3.

  • Pure Python implementation. No need to compile or install the thrift package. All you need is thriftpy2 and a thrift file.

  • Dynamically load thrift files as Python modules, with code generated on the fly.

  • Compatible with Apache Thrift. You can use ThriftPy2 together with the official implementation servers and clients.

  • Easy RPC server/client setup.

  • Supported protocols and transports:

    • binary protocol (Python and Cython)

    • compact protocol (Python and Cython)

    • JSON protocol

    • Apache JSON protocol

    • buffered transport (Python and Cython)

    • framed transport

    • HTTP server and client

    • asyncio support

Quick Start

Define a pingpong.thrift file:

service PingPong {
    string ping(),
}

Server

import thriftpy2
from thriftpy2.rpc import make_server

pingpong_thrift = thriftpy2.load("pingpong.thrift", module_name="pingpong_thrift")


class Dispatcher(object):
    def ping(self):
        return "pong"


server = make_server(pingpong_thrift.PingPong, Dispatcher(), '127.0.0.1', 6000)
server.serve()

Client

import thriftpy2
from thriftpy2.rpc import make_client

pingpong_thrift = thriftpy2.load("pingpong.thrift", module_name="pingpong_thrift")

client = make_client(pingpong_thrift.PingPong, '127.0.0.1', 6000)
print(client.ping())  # prints "pong"

Async Server

import thriftpy2
from thriftpy2.rpc import make_aio_server

pingpong_thrift = thriftpy2.load("pingpong.thrift", module_name="pingpong_thrift")


class Dispatcher(object):
    async def ping(self):
        return "pong"


server = make_aio_server(pingpong_thrift.PingPong, Dispatcher(), '127.0.0.1', 6000)
server.serve()

Async Client

import asyncio
import thriftpy2
from thriftpy2.rpc import make_aio_client

pingpong_thrift = thriftpy2.load("pingpong.thrift", module_name="pingpong_thrift")


async def main():
    client = await make_aio_client(pingpong_thrift.PingPong, '127.0.0.1', 6000)
    print(await client.ping())  # prints "pong"
    client.close()


if __name__ == '__main__':
    asyncio.run(main())

See the examples and tests directories for more usage examples.

Migrate from ThriftPy

ThriftPy (https://github.com/eleme/thriftpy) has been deprecated. ThriftPy2 is fully compatible, just change your import:

import thriftpy2 as thriftpy

Contribute

  1. Fork the repo and make changes.

  2. Write a test that shows a bug was fixed or the feature works as expected.

  3. Make sure tox tests succeed.

  4. Send a pull request.

Contributors

https://github.com/Thriftpy/thriftpy2/graphs/contributors

Sponsors

./docs/jetbrains.svg

Changelog

https://github.com/Thriftpy/thriftpy2/releases

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

thriftpy2-0.7.1.tar.gz (836.6 kB view details)

Uploaded Source

Built Distributions

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

thriftpy2-0.7.1-cp314-cp314t-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

thriftpy2-0.7.1-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

thriftpy2-0.7.1-cp314-cp314t-win32.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86

thriftpy2-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

thriftpy2-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

thriftpy2-0.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

thriftpy2-0.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

thriftpy2-0.7.1-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

thriftpy2-0.7.1-cp314-cp314-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows ARM64

thriftpy2-0.7.1-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

thriftpy2-0.7.1-cp314-cp314-win32.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86

thriftpy2-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

thriftpy2-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

thriftpy2-0.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

thriftpy2-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

thriftpy2-0.7.1-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

thriftpy2-0.7.1-cp313-cp313t-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13tWindows ARM64

thriftpy2-0.7.1-cp313-cp313t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13tWindows x86-64

thriftpy2-0.7.1-cp313-cp313t-win32.whl (1.0 MB view details)

Uploaded CPython 3.13tWindows x86

thriftpy2-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

thriftpy2-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

thriftpy2-0.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

thriftpy2-0.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

thriftpy2-0.7.1-cp313-cp313t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

thriftpy2-0.7.1-cp313-cp313-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows ARM64

thriftpy2-0.7.1-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

thriftpy2-0.7.1-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

thriftpy2-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

thriftpy2-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

thriftpy2-0.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

thriftpy2-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

thriftpy2-0.7.1-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

thriftpy2-0.7.1-cp312-cp312-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows ARM64

thriftpy2-0.7.1-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

thriftpy2-0.7.1-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

thriftpy2-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

thriftpy2-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

thriftpy2-0.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

thriftpy2-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

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

thriftpy2-0.7.1-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

thriftpy2-0.7.1-cp311-cp311-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows ARM64

thriftpy2-0.7.1-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

thriftpy2-0.7.1-cp311-cp311-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

thriftpy2-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

thriftpy2-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

thriftpy2-0.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

thriftpy2-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

thriftpy2-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

thriftpy2-0.7.1-cp310-cp310-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows ARM64

thriftpy2-0.7.1-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

thriftpy2-0.7.1-cp310-cp310-win32.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86

thriftpy2-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

thriftpy2-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

thriftpy2-0.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

thriftpy2-0.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

thriftpy2-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

thriftpy2-0.7.1-cp39-cp39-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9Windows ARM64

thriftpy2-0.7.1-cp39-cp39-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86-64

thriftpy2-0.7.1-cp39-cp39-win32.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86

thriftpy2-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

thriftpy2-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

thriftpy2-0.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

thriftpy2-0.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

thriftpy2-0.7.1-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file thriftpy2-0.7.1.tar.gz.

File metadata

  • Download URL: thriftpy2-0.7.1.tar.gz
  • Upload date:
  • Size: 836.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1.tar.gz
Algorithm Hash digest
SHA256 24a08e44a02595625a509f936bc5c423640199c78072d0c4ef65f8f43833a6f7
MD5 1a5bb2c0189c4e96d4ae73278b36f707
BLAKE2b-256 d4d500832040b355cfd1a96b301be6befa66ad792db5b8aa303740e3983476f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1.tar.gz:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8ddf7b950ddf149d0293cbd7e8671cb7af39f44c1095acf49da3cdf9ca75dd1d
MD5 25add593af737b0578a527394549081a
BLAKE2b-256 d27e524a18458e68cd64b447883599233c370a8f8dba7e61714109210df39e3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314t-win_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0b40b85dc1c8d04c0113e1a23b2346dec66d536fb61898cd1ef1aa114b055ce5
MD5 141e5dc834a1a1a63cb6aa291e440e63
BLAKE2b-256 681bd1db52bcae6c48e01b46925c05f71af2f562083a0180014454d4e8e48aaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314t-win_amd64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c9958c339543d26ee46dc32d2fbff86ae0683be01cd885c5f525deff8a552230
MD5 4f6863b9382ec8d4a8b38d6eb9e2c26c
BLAKE2b-256 6dc9824f668120b4e70960dc69d019a6dda338471453f0e91dc1867bf357e688

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314t-win32.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2510209a546a74f89695ec4804760d7bc3b09d057a98bd5d826d53b69c3d769b
MD5 8e3128ec06f73327e7087bd0575bef52
BLAKE2b-256 1d5c3b3d5c606a34e9fae3e835c2d7ffa614fee6c9165b0eb79d462af40e074d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef72300c90b3068b640fbb36baee185fa861c07ffeec9ccb75121f82d39d5a69
MD5 db602c177ef19d90b49723ee75ff5794
BLAKE2b-256 bd3cd809775c90fe6a470523baeae1229dd6c18adc1fe6861206d46010188a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e114e86020a194409f2106125dc408b62fcbca088a2a7672e7db036f4fb2ab91
MD5 d4e747a1b4f885ab2d906ab2da261b74
BLAKE2b-256 b305a834734e49b412eb5926058d7e38b8645fd59647b67cd70891e56eaba8c3

See more details on using hashes here.

Provenance

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

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b92ff8cdbf4c70bf8349f13bf485a42e45a76951c4e47169ac6dd2da31da4fac
MD5 e4c38a8aba20fc5a419e44b4471dc32a
BLAKE2b-256 7a3b0d0dec95d5eb5c2dd5420217d341b120aeb5ecce1badbbef95f4bbf26a03

See more details on using hashes here.

Provenance

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

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9881c7b169eea4d9f3f216ec0fde1458dc72146d51d6fa5f2d41d55ec007737
MD5 c52e247565226844a331c694b09d3463
BLAKE2b-256 1e6d7be023500fa38c6508b84e3c6ebbb888f618ca1f0a3b9d4fb7141554cb25

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a3d665d39a45149e6f040affe3795f6443a161a06d8c6b5420f04fc06728fd44
MD5 8cfd6d55bdd7cdbfc16ef639a067eaa9
BLAKE2b-256 25fde2ad2720a33d0e378a2626ffe635db220e4e9429e63e61c88c7c6f210e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314-win_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 566b28b4c04ea3f1f3afcfb8745b91a5d75c40ea1230bc0bcad101a22083d715
MD5 808f8a6af2fc886571a7668da64073f1
BLAKE2b-256 cd3e1df8bdc6e88f2ff97955c688b4089162a2d00afbe139d003bd191257199a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314-win_amd64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4b97821ac0e34b91d1ee53d90e734e3c9493d848c9b2620853b427860ce21cf2
MD5 2ffe4026f321e2f56bdeddb6e0c7616a
BLAKE2b-256 a63ea91cbf136d7116c8a6b61b49cb2a98ca6231f73d9aabe3517b5bea846cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314-win32.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c744f79e2e0deb2b1b8cd344f7b847c2f05fb8c5402f76404ce7721e2cf265f9
MD5 de2120bf249e8f6caf9043886b123c06
BLAKE2b-256 2c7cf6d0b9a9d5aa8a03895869510d171d26239940d47fc86ee184740a3fdcf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 210c44779bf889b611d7cfda694f94d2a086ff496e23b4f2717fad2a08a8c141
MD5 dfec7dc2de1e1d9bcc75a003549edae4
BLAKE2b-256 6b50c183a5ccca06f54767dab308eace060d55f735d31774e209ced44d8bcf5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb4bfea05c91d45f9b81c42d09747f7b2b247c40749dce978b8e10e6b01dfc30
MD5 617a73b6e0e65dcdc1b2166a695fdc32
BLAKE2b-256 fa37a1e5261653dbbe1d18d475b6685026afd838ba354950bd955e46d19c76bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15b3880b5b324f2920f6114d68fb79f2889533915a35fe657c4ce67332891430
MD5 a1c40df82836f0afdd3d83784c2f6368
BLAKE2b-256 fe18ea96bc78da623905927b7c151f7c3803bb8f6a2192e663fa4acc10bdb09d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 623fe8e15b3042a7ee1aba3c8bbfaabd8992908e8acd3e1cbf81255bae765116
MD5 fafbfaa4a80cf4c462cb1672075d1610
BLAKE2b-256 2b50a186cbd90893cc06182930ceda0ad0f7c774b8ea3155c50b49bf8086fd6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 2c62fafd036d3a5a49cf05087979eb903033cb5b206e6b8a3643319e70ed520d
MD5 73a2745e82fb8d4645597d995da11ffa
BLAKE2b-256 01966696bb20f2eec76cfb9f87c9a170e0c16ea3f4ac16cfbd5aeb9e3d788cf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313t-win_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 d2ad18fefb0a85bc2a47601792531ce28b156c35c7a3df985b9483babba80898
MD5 8f1aaab2e8ace82fed846f1b9c142785
BLAKE2b-256 1e045f8d94add5d092e87cdbf20cc3266c61ef513badb08d2f222d4583e704f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313t-win_amd64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4b3bfa817022243d33feb148027d0b2707cebb99c4a399907768fda25c7bfd6c
MD5 3b2a5dacb05063c9ca5092572b64e736
BLAKE2b-256 2186cb2f48e1ee3fae65d742ef9a0f1297e8d7eb5a03b47c73e7ee749e21635f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313t-win32.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ad6ebb550547dabd3a0c14408246771f628130eebbed0482474f5ea98b2105f
MD5 b153c7e93c9b8ec38bd5230be1ba1e9b
BLAKE2b-256 dd5dfaec1224bd2109b62770082baeb41c41588c9bffcf70c607c1bcb2f9198e

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4cfabcf1f987d48f5ea664ce092a6f5742aef99102b47db4e8864cdcb74d5cd
MD5 115495a1c42b7cb1d5474c86ac55f6fe
BLAKE2b-256 1a02b41f0ee5c6f61fb22b330f2697bcaa7c04e1cffe22172f921e72893e3bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a686fd65eb877ac64c024d2741d0e7864e4bf785aa8c46b1b396e09ecdaf602e
MD5 aaea56fabb1117c6ba1c7579a081c735
BLAKE2b-256 8c2b959be010bdb4985611ce64135f689880a70e506c074f35dbe5d8d91e9ef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e445c516027ecf045c9b450a145491f1131c8df11fa9f4e322c829cd2d1e004
MD5 602969b67f0d55490b66096f5046e36e
BLAKE2b-256 3f3aeda9934c7f3473d0dc90207213de5fc2b93e60de98b844ba6bab7120251a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82b286fe8796bbca3522d29700c363ff5be058dc69b2d8739f0178e3aa585821
MD5 d21b20d837daa7d748fb6520eefa2441
BLAKE2b-256 1bf5816518e57b6b4091e4d1b65c9c04c74021dda6dd091c31385e921df62b45

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2d9ede5f70973a9d30bbf887cf078e454467b808ef76e0a1c513b997c8c5c43a
MD5 4a838cc5b2c18d731bcd0238732889e1
BLAKE2b-256 23809f3cd36e50ac14b111040e8c15a0af0bb5316f74b68fbebb41c9e341d9f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313-win_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0944c8cb217ff08002fba4f64ff6cc4086551bc01341583cf70dd5869b755a29
MD5 6577518406137585bb16bb28810e3359
BLAKE2b-256 b2e20e0e902db3ce55a6c117f5af72247dc8ec3cfd501060c4e614036c151309

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313-win_amd64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e0fdb74f943a9b0daa71678c0af70af3102356f013c49671529105dc99a28ec8
MD5 9d46314b6f9bb5bc5ad00731fb45402d
BLAKE2b-256 6df99398828ac3ce6154c1114cecdf749e5a96f8a0aa2cc78fad9e1265c97984

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313-win32.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c09a7e52d8a37b6d5ea2e0877852434fde59d92b2754bcf5bdc93dde05761853
MD5 3e88f7cb5534ca2409b4236ec2592c3b
BLAKE2b-256 365e396701ec1013aaf9d64264f0813cc0693d07ac781cad5fbd655013af3ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc2e7ba35bd76d8e9165007d5c33ba06cec68374b97944b89422d05aba0b14f5
MD5 07b62a4ad23e3f72a36b8e7359b0afa4
BLAKE2b-256 562cb71ab90d4e56657ac15ad423d790507e0e1dd556439de6d08050a2fcf3cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b1ffa78317f8ba7949b42f7eb108c2d7fff86bf5f6c1868d2b9e1e20724d000
MD5 a46a69913cb9f9068aed9c4eee06a6c8
BLAKE2b-256 4542ab5acc5231156ac4b7fe8a8e1f4e72b4d14853da7ff19c4b0e29b7a515fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33e2aeebd1a0f5c1854cd626a348cb36ef8c4d97a7e31c7da39a193cac8d402f
MD5 ae5280067eff27644cf4dbf666d80923
BLAKE2b-256 80a0592fb1e55a0e8e5c4ff5613c7df8595acab88b35e9760b6619ca43756403

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f23bc077c101c2913f74bdafcfad1bcd3472e9217221b7929eab2e0c65fde308
MD5 db1e6736cfafdba7f89638cd7f50d8ad
BLAKE2b-256 4103292f0c9256fb5f5710c87fe91103ab32591115848deb7d76f3b6f801efa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2afeb248ef2918468816485a5d847cee95355c0addb9c2a5a176dd993449396e
MD5 b740ac3c3d0a6abf5a881f6c7163329d
BLAKE2b-256 8904b2b5af6850aec3cd10375bbb6e8d96834de8acbac3fa6c4ba10b829b99f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp312-cp312-win_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ec651f4cad01686b2ccc893416d6197e0ab20fe017fa20ecfa35e57f10d33de
MD5 076e235294805dffc3d9bba429a05d8d
BLAKE2b-256 ea4f82cfa6fe4a724e6194f52949a21d08f582ef90accf9a955df1460a74baeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp312-cp312-win_amd64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9e47b9473aea3b45dfb7934d52f1e183862d85940a9f6026108081ab1933e1c9
MD5 2101dc3fa345aee81ce610162af6661f
BLAKE2b-256 794fec16a1c5afb78944bcab954ffd2f3316aea5c4900f42d5dbeea392ded810

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp312-cp312-win32.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bb1b0e5d3fb2ae1efa7ed404d5aa29150c50428ad58d8063c0b227b34c7ac24
MD5 68b78a0e3fbab4d60a4e590ced63c572
BLAKE2b-256 040a8bedaeb7b0d2c157850dbe2baf20f185dcf7e45dae44eed4fd3ad68d2454

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69f4679ba8305a29c898389d9112fea784bb3497ede0da58324552cecac827ae
MD5 d5dddf7af4639f9eb4930eb71021a80d
BLAKE2b-256 eebfb95cf348b4a9bce9e091690aea11bf78ffa07df82bb5beee599191a4be9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4cbd5a231ef5474a103878fb3e187eabf96aadd6087b714132cb095c24f0a8c
MD5 ecc01a525f3655e8915308d986672879
BLAKE2b-256 6b2ec55689833d3cf5b2a83931ed8f930050e047ace4d7a76215b9db183a6cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eff6b2e8d6e1061696e830aafee76df4ebfe8d87d0bf2d0cc11500473cc1a784
MD5 0268c9b91cc03d8246efb1fbec66e441
BLAKE2b-256 5de6c01dd312b6014b2dec8735a699d9e80a6345a59616f1ebfc64102f8f21ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a89b7cef8604ea8b36144827a760432419d94cc6ac22502db3c5a74fa53f9ce2
MD5 78a72dee98b07889c48a32b6c4e5d0a0
BLAKE2b-256 ec3e42025c79ae03754cb47e5fb2c83d401cc52da1267f6de6e1208861a4389d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1b09e5f506fecdc32ba18a9dd5b544f2d714afa2bcbec1efed93e796e25d71c5
MD5 7797709149312f9c61af9979f4a03fba
BLAKE2b-256 d03592e49eb3cdf5a2dfc9a188dd0673cd6b3540dea2cdefcd65388b61047c19

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp311-cp311-win_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b87929205b9594793cd1788f70ffed528a29fdabefa068b420cf87b5da7dcb72
MD5 587375e779ab8fd02688faca3945c01f
BLAKE2b-256 53d0d8bc6983a80146e2440a04b99ea8b269d325bc0c77a9aa887ed3a1333dca

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp311-cp311-win_amd64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 186aa0162b5a3cc46ebe198c15b99e77ef9d975bb43f095d79edb112e41bb739
MD5 66f42ce4fbd02ef27f4ebb2724f2d31d
BLAKE2b-256 f0b06c304f5b218f3afb0630520431c2d9e2c7b9ee748cf0c64ce0d7bfb2dd7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp311-cp311-win32.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4b94c9dfe97355fec02d0f63153b74c551c04ffa84f4b0f0e006ffc3b9e74ba
MD5 e8aafa762b5d86d66b7a115e4053bcda
BLAKE2b-256 9514b7debd1eac1f60c277a0cb9d3ec5d3361bd122396a6e326ddaaf8f904c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5433b2e84ab40ac43e20bc6a21465883d1bdd6f4b2abb15a285fb25135f9f5b
MD5 720a95a8217556acdf92a6e96d70b4e2
BLAKE2b-256 031b31d76000212028c4f79bd5f1c86d93c8dc649475a9e96ed8bcb910630411

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82a3e162b0b591bd4b0fd0b6a8502d03f02c89702ac09e650b946b8a185c7e7a
MD5 4ebbeac8d38cda7bced88f1fdd6576e9
BLAKE2b-256 0fb1eb2a986f4186dec12ada7be4af92d3547a8f4d561b50c34d4ec2adf5687b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62d2f8037eb8d4460468911088feea2986841610d3c15dc6505cda42fb7eb9c0
MD5 0d66487374a2a9bf19b702c5d1575522
BLAKE2b-256 8befbce4b73c7049d73119be977d2fb821dde01e94b49e15c636a443d78a3c3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 524d2c74cdd31ccf7895d5b01abc701c210260bac05b25ecd81ec3ed1a529890
MD5 49bea4ffdf6b314f72fcb19a7845d1e8
BLAKE2b-256 74ff33a3fe4058bc798a744a4457f7f96b17681366e6122a54edba1b05615425

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7fb65b0804325e0f2c5aff23edfb8c2eab589713dff366d5b90560ee6f230c80
MD5 7bb55514ff6351d2b659355e4247e320
BLAKE2b-256 9ada88d939bebd5dff5f66f76f2717999b6cd39094fe3a87cc5fea87d3bc8e30

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp310-cp310-win_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 613bcc8b47a87302b14d308297e7c6614d2f0bc5a9ff5f964c95c4edaa2b5b4f
MD5 b7589fcc31a1c0288d248d15df86ab9e
BLAKE2b-256 c8cc1bab6d9831c6c73bd78d75e88a4e8e98a8c10cbe1a10ea271e85b5112801

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp310-cp310-win_amd64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8e6e0dc43c03249f8202b469c2c6abd0a14187385d6056fc0b4c9144fd8208f0
MD5 ee50c8db1bfd2debb208c476e469d228
BLAKE2b-256 80ff26d82882102211ac3c6bf523765f95b4fac329c060468d7d928f9a5ad0f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp310-cp310-win32.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe4e62364abc4f58fa2127972cb43dfed969aa7e3e439ef246a5e0381168f126
MD5 e85636213ede228fd6e0623714cb0e3c
BLAKE2b-256 827724cbb046bc53702c18f3bdf3672fe7145247d2df891f6dff6f74ce3be556

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b775c6fbc7860c1421e46d5746a8c688f129751fc46e377628b8f47731ec5ed
MD5 8827afc56213b39de74c61060afcf9c5
BLAKE2b-256 18488e2465a33098dd97eeb2298181590409729b4f6c368f8289b677e28947d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5c7e00980266ea2543a53438d84f7e9f77f6f5090925af18cfadf04328870f8
MD5 ff4afde0735b14174f888c5c319309e2
BLAKE2b-256 f999a48b768e2f567601138b407b338727e66c16fba1bb17d4cd402dada1a58c

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ae0628109734f88d991780563babb8e0953efaac959cedd2a55fcc723626676
MD5 74be004bccff211090a4a6cb46f8133f
BLAKE2b-256 67acd6f5ef052dc75288997637ccd153c2bf00f967cf14dd6363230572186db3

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dea8588474f77f862d6be441f87427180be7063b6cbc52b1c7fdbd2df05ff5f5
MD5 e1842635c5ab3f4ce8f2b7aea783dc85
BLAKE2b-256 d6920e57794f6ed6b2cc1d9fe73f13d5c441989c9ea1de27b91a278d2513898d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b4af4e2ed0777035e689ac6c9dcf72b9e0f8cc00cb490c8ca9b40b4c4488ec5a
MD5 5dd331a07aaea2ad2a6c31c9dfbe0a4a
BLAKE2b-256 15efe6f842fa8031b37ac222e5338a1db25892ffd8206e9dd234b2d40bcc4bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp39-cp39-win_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5620857622b0564971e60f66574543225ff5f6fefb4962b18062d7b101cbbb15
MD5 e7a668f08d5715da3a9e9881693e46d9
BLAKE2b-256 779cd7ee0bc868ee13c5176d212387f4a2ae18a50dfa3c2535556ecea46dd230

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp39-cp39-win_amd64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for thriftpy2-0.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 64870fd55736394486ac5859e02fd17cf55bed0cc875c6ebdddf11361513a299
MD5 f49142d9444c4dd8d4b718cc4f86e562
BLAKE2b-256 ae1aada1dc73c25aa08b9198998ad7b52902d5a64f5dca393d9dbba038840d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp39-cp39-win32.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1b656bd07ffe320b226f2a6ab1d6acf9901a47c8209b26e7632de7184961da0
MD5 3c37fd231547cad835d978a38319d98d
BLAKE2b-256 1bfa2b9909aa46af6270a650fbeea3fe96b9ae64950a2f854aebadfd017d7f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2a63f63401d31378fb7505d476b811be9bc0f4c1f7ce92514448df9bb4f3581
MD5 2684166843246b3f6ad581fd33213857
BLAKE2b-256 2468a66010f4663f4de37c3a98d4a1b7da47ed52105ac92556610804998a5b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d000204b3b33ad7c3dbda0141922e86022c11d977e410f19db0d9298a156d1fe
MD5 0d7eda0001cc3561180dee8bcf1591bf
BLAKE2b-256 65bee40511ebd8899150580360cb183402d7aee4b9ef7d75cc0414385b1ae94d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 856e4cee07dd7dc02673c44ce467b12b86ced2feaaf2302417c3701f98281ab4
MD5 b495ec91eac7d2e0aafb47b3b69e52ea
BLAKE2b-256 176499c2a15a27fe07b2c0fec327e4a9daf3ebeecb630318b17eef15655d5272

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

File details

Details for the file thriftpy2-0.7.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef76936f62a56acd73b2209ec1b625001ecb23828c7746f44bff4f581b37745c
MD5 156b3aa6a55e1f3f131f7969a2def662
BLAKE2b-256 11a9226467357fe9edd22106402ce4da821083326b60edc3043b99278e944582

See more details on using hashes here.

Provenance

The following attestation bundles were made for thriftpy2-0.7.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yaml on Thriftpy/thriftpy2

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

Release history Release notifications | RSS feed

This release

0.7.1 This release

65 files

0.7.0

65 files

0.6.0

65 files

0.5.3

61 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.20

2 files

0.4.19

2 files

0.4.18

2 files

0.4.17

2 files

0.4.16

1 file

0.4.15

1 file

0.4.14

2 files

0.4.13

2 files

0.4.12

1 file

0.4.11

1 file

0.4.10

1 file

0.4.9

1 file

0.4.8

1 file

0.4.7

1 file

0.4.6

1 file

0.4.5

1 file

0.4.4

1 file

0.4.3

1 file

0.4.2

1 file

0.4.1

1 file

0.4.0

1 file

0.3.12

1 file

0.3.11

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page