Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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.0a1.tar.gz (1.5 MB 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.0a1-cp314-cp314t-win_arm64.whl (987.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

thriftpy2-0.7.0a1-cp314-cp314t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

thriftpy2-0.7.0a1-cp314-cp314t-win32.whl (989.0 kB view details)

Uploaded CPython 3.14tWindows x86

thriftpy2-0.7.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

thriftpy2-0.7.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

thriftpy2-0.7.0a1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

thriftpy2-0.7.0a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

thriftpy2-0.7.0a1-cp314-cp314-win_arm64.whl (967.3 kB view details)

Uploaded CPython 3.14Windows ARM64

thriftpy2-0.7.0a1-cp314-cp314-win_amd64.whl (996.3 kB view details)

Uploaded CPython 3.14Windows x86-64

thriftpy2-0.7.0a1-cp314-cp314-win32.whl (966.8 kB view details)

Uploaded CPython 3.14Windows x86

thriftpy2-0.7.0a1-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

thriftpy2-0.7.0a1-cp314-cp314-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

thriftpy2-0.7.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

thriftpy2-0.7.0a1-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

thriftpy2-0.7.0a1-cp313-cp313t-win_arm64.whl (974.8 kB view details)

Uploaded CPython 3.13tWindows ARM64

thriftpy2-0.7.0a1-cp313-cp313t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

thriftpy2-0.7.0a1-cp313-cp313t-win32.whl (975.7 kB view details)

Uploaded CPython 3.13tWindows x86

thriftpy2-0.7.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

thriftpy2-0.7.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

thriftpy2-0.7.0a1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

thriftpy2-0.7.0a1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

thriftpy2-0.7.0a1-cp313-cp313-win_arm64.whl (952.7 kB view details)

Uploaded CPython 3.13Windows ARM64

thriftpy2-0.7.0a1-cp313-cp313-win_amd64.whl (983.5 kB view details)

Uploaded CPython 3.13Windows x86-64

thriftpy2-0.7.0a1-cp313-cp313-win32.whl (953.5 kB view details)

Uploaded CPython 3.13Windows x86

thriftpy2-0.7.0a1-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

thriftpy2-0.7.0a1-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

thriftpy2-0.7.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

thriftpy2-0.7.0a1-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

thriftpy2-0.7.0a1-cp312-cp312-win_arm64.whl (955.1 kB view details)

Uploaded CPython 3.12Windows ARM64

thriftpy2-0.7.0a1-cp312-cp312-win_amd64.whl (986.9 kB view details)

Uploaded CPython 3.12Windows x86-64

thriftpy2-0.7.0a1-cp312-cp312-win32.whl (955.4 kB view details)

Uploaded CPython 3.12Windows x86

thriftpy2-0.7.0a1-cp312-cp312-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

thriftpy2-0.7.0a1-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0a1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

thriftpy2-0.7.0a1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

thriftpy2-0.7.0a1-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

thriftpy2-0.7.0a1-cp311-cp311-win_arm64.whl (957.4 kB view details)

Uploaded CPython 3.11Windows ARM64

thriftpy2-0.7.0a1-cp311-cp311-win_amd64.whl (986.5 kB view details)

Uploaded CPython 3.11Windows x86-64

thriftpy2-0.7.0a1-cp311-cp311-win32.whl (954.4 kB view details)

Uploaded CPython 3.11Windows x86

thriftpy2-0.7.0a1-cp311-cp311-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

thriftpy2-0.7.0a1-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0a1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

thriftpy2-0.7.0a1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

thriftpy2-0.7.0a1-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

thriftpy2-0.7.0a1-cp310-cp310-win_arm64.whl (957.7 kB view details)

Uploaded CPython 3.10Windows ARM64

thriftpy2-0.7.0a1-cp310-cp310-win_amd64.whl (985.8 kB view details)

Uploaded CPython 3.10Windows x86-64

thriftpy2-0.7.0a1-cp310-cp310-win32.whl (955.9 kB view details)

Uploaded CPython 3.10Windows x86

thriftpy2-0.7.0a1-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

thriftpy2-0.7.0a1-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0a1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

thriftpy2-0.7.0a1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

thriftpy2-0.7.0a1-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

thriftpy2-0.7.0a1-cp39-cp39-win_arm64.whl (959.5 kB view details)

Uploaded CPython 3.9Windows ARM64

thriftpy2-0.7.0a1-cp39-cp39-win_amd64.whl (987.8 kB view details)

Uploaded CPython 3.9Windows x86-64

thriftpy2-0.7.0a1-cp39-cp39-win32.whl (957.6 kB view details)

Uploaded CPython 3.9Windows x86

thriftpy2-0.7.0a1-cp39-cp39-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

thriftpy2-0.7.0a1-cp39-cp39-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0a1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

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

thriftpy2-0.7.0a1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

thriftpy2-0.7.0a1-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file thriftpy2-0.7.0a1.tar.gz.

File metadata

  • Download URL: thriftpy2-0.7.0a1.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1.tar.gz
Algorithm Hash digest
SHA256 348a96fbc3165efbc36ff79d2fe9ccc0d7712696b03ec8b420fe515a27e6d7f2
MD5 a94c9979a7d6cbe8b851d483b05e25a7
BLAKE2b-256 466cdd6f1084bdebaa5ce6805f6e1ac252b2299606629681efc05a4fe04c445b

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3406567e85727318bd7628750cf67b6d728d5b83090b0018a402c35929f4bcf8
MD5 fb4e278634d27a7a38abb6386d1b9e70
BLAKE2b-256 1dfe6b49a72ef03569f4101b3f16a76f9474a02bfd5b0a1da0179c6439f3f960

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 66d2c2a9bd7d14f4fcac04e7b862275fdee62d80ac43c15edfd0fcfd7f8b1d00
MD5 ac2ddaf6ec1d6950805780b7a0c8d014
BLAKE2b-256 9756f2793114892d40d9d46ebed048d8c745937870f63b87be61b8080d0e3638

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 989.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6d56a59037e2c2840cfa2e3afd2a85aaddb37dfb44d07ebc4d5222d0dc4bc83b
MD5 ec7c6f3bc0443911355e68b41fe45f48
BLAKE2b-256 52dfa13db7e600a951d794f8391176d4c77be7a69c85681f63576f52be989a2a

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 070a2590e47079c300144ea79d9b1bdee90cae9013bd187b989505099aa8fb46
MD5 6d5bfc2d331803ab8aaff5e2068085b6
BLAKE2b-256 49871a59bacee6d5f941fe91c9ddc3e27c0369e405b2a52f90b144a81f1a4346

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf7134e290e3f4c3c4539da7f042be007ef675c27350a0f8cf5fcbcc8bdd16e9
MD5 cee29ba203b6935ae70bb14db7e2f5cc
BLAKE2b-256 914630268b12ee30ce5c58b58f21a7b7820d7a421f108150af1b0c71d3ed3def

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-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.0a1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0572dc38ed8f1950a8e65817826f9ec3a073e272244905dcdab7f142813c4702
MD5 2f1028aeccb97ea6ebecc9bc6c7b33b4
BLAKE2b-256 26a6fe6c5adbb963d4e1967fed01b65a81d9009b3a1434a7e2209cb530305ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c4e84c57d2e8fc8b6f02a7eba4487f687c3e0bca20692fe9a3fa1d1d65ccd01
MD5 203fc27ac3ff7cb0a1a06967044bc3c2
BLAKE2b-256 4c9bec2bbdba4646b10a59e0041c8d34fcc31ca15e7028a4717a93826a461b9a

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fe2b70940b2aa2be37219c75b47ddf466b6b05dbc7c761190e7afeab863d679
MD5 5dba2002a6c64dd7fa8cd5a940451f8a
BLAKE2b-256 7a1728e35bb7628b62f34a08a1d45b487dcc05ce390c93e44290cd8cb56eed80

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ed8a602e5a30c0920f4b314796cff911ebc943927ca6fa33966cbe94dca84dd0
MD5 20a77ad5bcc8c24b555e4e76b0baf272
BLAKE2b-256 09556ee612644f19e77d40639b19adc168341f6bb991b8dddfff5de1585ee708

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 996.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5076347693494b19b9a493b1d1f4ce06d18fe5846cd1168419bf0ee5774db6aa
MD5 4665ffb1e90661e6edaf5a359555c849
BLAKE2b-256 af0d563e14a6bb9df460211e3aedc5193a9552edd56904f4a3bb05aebb05c03a

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 966.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 15b1c67ab20bfe0b8b74aa221a6cc9e4ae2a2ae9ba87eb78dc300b015eb5090a
MD5 dd3382d94314f579b08eb65409e1782a
BLAKE2b-256 3c390cf5de6a40e92b3a04dc4747cb04f93e99f320e2633fce0e6b9b4b794d42

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 978a3e4117a7c3c7513a6c0944ce52127dc68a75dc19869bbc795184545f7fe8
MD5 35823516f29859ce55129c0da03051fb
BLAKE2b-256 598b23aab191aeae51dd89d115aada7107f26b1f47f29271ecf101a798caadfa

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 367502e1806b815cbaf02781ad83cc90a773062e3ea8b32598b85dd0204fe46b
MD5 016ec3978c1207c4a87c4998d5a8725f
BLAKE2b-256 8415e5ec1a319d2185d5baed28d726368a64b7b68c65f275b3835ec60031c788

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-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.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 422bc32d485268fbc53144c573cecc299d8e88caa760c5be07fcdb14a9963434
MD5 cd69c8678c50f6f247e86c133cf2d31b
BLAKE2b-256 b2ec4ec52e52284c1a440dfe6679a448a27b45cb06a07197434308c591825936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0175d4e5d14f7bc0ed2dc253d2641cf24d69559053fb0428e5a462e3f4908463
MD5 0dc8bebbcc2ba85cce221946e6f819b5
BLAKE2b-256 4c1994ea9b9ad6eedf7ccdc2c818e7f719143d20a4605600563999e49866a6fb

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 150ca3ab8151842579f69fe8160b535145d83bbaf1f268cc5d34413d9cd0a5bc
MD5 6665439a361b1b464ce18cc06bcdc497
BLAKE2b-256 b9dfa7447bc7289928abd366c477eca165a4e5f03bc1f7bd2489593f1c275f73

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 0ce4c2f845d49ffb3a2015ed79a88e9eaee81f88a5f7e5ca17ea20787db25d79
MD5 39e5e35ffbd24285fdefda838d238100
BLAKE2b-256 67b59bb3fafdd2882ab546655a4eb90b60a0fcba25e40bd5061f368cfa18db86

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ab35225c533b311ad7eac169a2335684389c8049f1269fcad94c2fa73b32bc7d
MD5 d9580d605cb5c1cbab1bbc64a5dc9a1a
BLAKE2b-256 9eb6609844c32097b4604d5a64f0afb028516d961d8fa20c12f58c511e3cb4db

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 975.7 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7acea12faddd51d19e5f9a253f49ff6c3b822ea09c7296bc8beb2d9273812ce7
MD5 ebf00529fe592b0b07deaf8976911c6d
BLAKE2b-256 06ddaac5ce85bb82a1feef557314fc24ca5a333b7a6b45def53481cef388316c

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58a1b51ff65d979e5f8bf34858d34e3c5e1eed5c9270114d3c85278419967bc1
MD5 517575e605a89b7d303b118969b6af0b
BLAKE2b-256 efda86afa6364a9158bfc3a1b4405a53571c7f645e2f3dc44461eac871ee5ee5

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12b2c49267524d8e2c4343b0b9b43ac1cc9e4735eb485a160f36f256d74f27e6
MD5 9a7106be233d0019c3068a9a01333070
BLAKE2b-256 99bd62bdb3d97c5b26f71678fed388d99ebe764349b9d22070fc2d4ddd72d154

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-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.0a1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1276488582ad06b357c144e7d5dfc364814d6e8ff2ddef2884babc2e785c2962
MD5 cb95905e4cafc1cc906a0b61fca4b704
BLAKE2b-256 dfe4c8d09473a13013ad2384f170be364c9d51b47e8958f7cc30c24797c36aa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d247fd142917876f34aa96c6b4175cb5c76f47fd8ec3fac3e3bcf3dfbe1b58e8
MD5 071d6f0dfcb618acb93c8ae8d20299d9
BLAKE2b-256 d427c1116562d5bf6fd09762fca213e09c0fef4f1132af15fcafcffcd714f847

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8e19313d312306a1475f6cb12c3757b70b529a6577525866703de9865906a31
MD5 3f4e8aed94cee906d931588efa799bcd
BLAKE2b-256 82517ddb2e5f25fcd25ee2118570e92938ae94961854df1e420cd05b0f4c74ca

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b083608baa9a48036fafc8146e06f20889a7ee7ce50a8fd5d4e4aab4ecc4c0cb
MD5 6cadcfa13c6637ad7cfd53c274f229d3
BLAKE2b-256 7dd168300ca9035c7f3bbbb10fb219d7a41e37e7b3efc268b9bab19a58bb1297

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 983.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5a4175116625dac338f4aefd8d8ab8c0b953183ece89bc16ea0f4197ad09f2ba
MD5 63cc7111ba01bb2eca65ac55feced1cc
BLAKE2b-256 48155cc667f612cd8556fa1d4f4f75c02336ae1e82f635ec8bd641f62b55411f

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 953.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e7b0b02bfd4fb70988248eb8634f243e9b0663efce4b48ac4355fce3da0038ca
MD5 d94cddb7bb57ecd98c86e0ec0e9c7f9f
BLAKE2b-256 dfbbe94a981fdb18ebf601c15c7ba41c1d26ce1a43bd855760c83497171cf0ab

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26fa3f4a7291b5b22011763e542245dbcab5171c808e1d28b30ba08773fd6e30
MD5 3a78b525b3fda7d2bf2ac9de65cb96e8
BLAKE2b-256 b8425ce2502e744ff6be5b84f99edf034f5803a8d8c35b206cc44e6b556ac4fd

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3716d2b843055d6556fbc6778322f7930c64a7b8fc4f30a186da8bb960b8d11
MD5 4c4b479d8dd8a5fbc07df0b1fb8cc670
BLAKE2b-256 1840c39cdf8cdbbf73aa0473d2df874afbd26ed7540b1c6d2a0bfa6c6c4f1351

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-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.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 462ded4196947905840d77ba8c0726a052c37547e16813dba3c28069e883d647
MD5 5f8315ea8d0a324a8f84f3eb8827bc4e
BLAKE2b-256 6279e9aff375e1446ea160640a2ac9cc18ddcf9fa4bee0884019d28c97d6d553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1524c2afff9af40661fdd2bf8858dccea93d2b9c0cd1fafdc373cf01e7880cb
MD5 dcd753873602a713215def3713ce4f3f
BLAKE2b-256 483b831e8828a4358e718b55b6e4a3b506a9a63619636ee4485e27e99bfe3939

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02f36cea4244852044fae223bb9613e06e6902e7c914059ff46a02635f957cbb
MD5 869334957b20b3176cc486f5b40cc3a3
BLAKE2b-256 db6dca3532e320ad927dcd38323e3a7251ea31ce8a09433c7d6ea9b925089766

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e26656d9bcb0cb5f8695494a10fa8b4917c9389d01b6d43ff8ba65ac5bc58cbc
MD5 0ff47620f2257f49b26f710a1b4a41eb
BLAKE2b-256 3e752f890f9a54b9eef941e857de3f256d7db0510dd751f427b3d997489b0405

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 986.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 745048f065c956f8f37c9f761f80d4b5f6bc6db6a3d1155bf446bc8cef72057c
MD5 cf4b0a9e3d9798f53fc200547efb0a78
BLAKE2b-256 98addaec069c319fcb6c380b6a8e2db4ca5e1323a2c1d020381a8c5eda5b26f5

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp312-cp312-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 955.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7201f18dc1da731cdb25e03c48840de1724ff0596a0140efa361c4fc60ca2815
MD5 1349c56239601db88ba7be2e16bad835
BLAKE2b-256 42e084a6c454177439fa0a6b71dae54c7fbab44e135ca0c6ae1925582d244f68

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cae09701b84985286b70f8f64235f6cd7ab95cf2bc877d87a6fa27809d41d96d
MD5 ee4ed7c8bd3b087fe7f30839cf20bfaa
BLAKE2b-256 71f29c41e8d0b952a4bc4a71a350bb55b70b66d6ba6bdcbe21a27d13ddecdcea

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf26fcd4efd3a707ac1f6206d0477ec4c999f81c9c80807b710e7e130fd44ce6
MD5 6e927632011bb812b40191b4a99d25e5
BLAKE2b-256 e530cb0bdb84d5be8f7367bc073f9f50b5d28247ecf20c8d4211dd8396cd98f8

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-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.0a1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1a1fd3dda244cc00afa28781d839754c8f7222765a312885cdb39b390c63d80
MD5 bba89d9b89d5df8d24f9d0c1f6b2186d
BLAKE2b-256 15ef278d039748b90d5b74040c599dc52b4acc67bad9d1756082e3a2eb197ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3ffde4958b21f15544cfa33ed75a8c00cc2b458aac2bd01fde404cead5e613e
MD5 64060649785d7f6e82f5db598c47e615
BLAKE2b-256 3ffcaf2100c739ddd51306ca0aa1584fd6d7c1e1a51b83c5c3df9c236859e214

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3efc0164793253363961a06865897f643b6a6fc7c86e637b3e9dbeddeaf186b5
MD5 b48fdfbd8ec73690534b5032e157b711
BLAKE2b-256 57d5c7d2060e9576da84540f220e982892d940908cd15ca79c0fc43455ac01ec

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c186bd8888cffe22f2fc5e4f4dd333756c38b7d9ac05bd4017f36fae8b394014
MD5 e72d08c57aa615c1094683f86a90aaf3
BLAKE2b-256 13340be7998f01a3d85b3a3a666c443b00770a87b42f8f874f698e0d201613b2

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 986.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 50d5d70fc48a2574eadeed332d4fb80440e70870d9285529279a333b172a4c22
MD5 8baca37f168d7e306d09d0336c42b043
BLAKE2b-256 dd16a048409a1be95f5e782c2e3aaa0bba1780c422260c8409b20593fa33c970

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp311-cp311-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 954.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3378984112cc6fb34b7f049fb8d5f43691e43250acf24a27748c80ab8cd775f1
MD5 57ecc128866ade382678c53069701b76
BLAKE2b-256 94d1574c76ef8059f77cc3df523d30d501965eba36d397031cfee3060e4cec1c

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd3ae6de1ba9240302b825e985b086907e6131c239bf458c0f1066bf26d0e218
MD5 7fa49e37521b97893c5b691d1ba7746b
BLAKE2b-256 b1286071bc0f90c3715ea3eed8663e75d8fcaf2c55de5d785c1001b8d4fb0540

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97a56bda731484990b1ab202243c753a363edac77ddb0989370298d873048b90
MD5 b0980e88af8c1c530b487ce90f1befc2
BLAKE2b-256 b64dc62c8e2d9fc5d9d947d9f826c44fbfad8bccd260e91ffbf3f31b9e06458e

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-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.0a1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 784cedbad9ed0eb7d7c831a1579835b900922e6eb45baa512112452710e394d1
MD5 9636dadac724f311ba020478923c5285
BLAKE2b-256 995ca2bfc5371cafc372820e3e1f6266883b39c1ac57e626da2e2d7df4e28872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b881f1e09dac61240c8430d38cd1272cef08270f5beb8394c32e15ccba1f35b
MD5 fd91c8b69bb100464838c714aa5f4a94
BLAKE2b-256 ebfcf74c16367c61579a7c1db56dec2989d6c690824844d015e3aa650771db02

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d9d0dee4b09262caac8735767a6f6332ff28f7fce04bd85666d2f38a33f6b5b
MD5 4033852b24ea24809ce9d6b521186948
BLAKE2b-256 a5599e2ad1da0ea0380658ce7f7611eb33d20ccdb1c8d820f26aa950d1ac3349

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ed0e5a12c12bbf3279d5a5678935f74f4383467e99b410b3176091c88e322408
MD5 5f8393cba876836417b6b960697b53a0
BLAKE2b-256 57c87b4d6d844e20eb271dff58b11da695c61b8f90c15bd0534361428b51afed

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 985.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c6ee6c012a8ff7f7029de14ce3690e3164d2bb54c820ca5e4672e23e3018edd9
MD5 a98e93fc8c5ec8d64a3062a977a75081
BLAKE2b-256 d0e55fcf1b0fe5c82576a7661d31ef50d079eaeac7302dfc3f877c3573fd3df4

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp310-cp310-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 955.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 38d6c616f83d200af3789e50322e8ecf4496d9c622acb37c6d2b2d3359a0b1b3
MD5 37e89ed7296b7b8b0311a4c040079a16
BLAKE2b-256 2b982dbb519817283c51068eaeea38e5e0059e2d04006b6017b1115ddf8d418a

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47b71d53fe21716b40ab463a39021be69ea304a7b4136dc03878cf075a8e817f
MD5 0781582452c79493e3e6c2c3a495225f
BLAKE2b-256 c10a87592d09829ee4fd969414b6ea310e9e6bb1810646e4acea3eeb65068403

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d506b0b07977dd0515d5baaae6229e37d7d4bf96ec21a3d30a7376f5cd1dd63
MD5 afc6d6a50efaa45139553f70a5d08254
BLAKE2b-256 c569f0c612842b940956c58839f0e5f89233de221cd89f2375d13ba89a09da14

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-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.0a1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 885ab43bd8b6cfc8226f639fff1868656a1fed218618d9a8cd6afecdf0d38c1a
MD5 35eecab667d9999c95934da993a4705d
BLAKE2b-256 201d27a5f1e209d646e89644355c792dc5792b549796d85a3f623b2a8e73d31a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab0625e080279d9a4ae59ae045c7a113c5594af866ef3cff29d588716d8f90f1
MD5 1a11e81cd0c6675c91609a519f579abb
BLAKE2b-256 6d01829de72e41011418edc4a0815240458c8fe2b5bb2ccd52b649715a7825ef

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c258c311e479270fecdc6b2b6689b8bbd41459d71177e6422f640c8c4e1dac93
MD5 dc1ad6703cfa7e333d06f8c4812634fc
BLAKE2b-256 1bb9b9da8e7b13d58b1e1b00cd6fbbe6586cde21d15857667283737e95369480

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 959.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 338c378179a126d92ec3c07fd2c7e4c2ed7b3c692d2033e225b6babfd28ce3bb
MD5 e61f5c2343441b7556996c75da58715e
BLAKE2b-256 87cebd0a6bc142a135040944f505205dc32fd46a67fe29bac9393a524cb4424f

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 987.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 84464e1dacccb18a5459fb5182758afee24525e07ad6b0676c26a25bae9de70f
MD5 2fdf3dded3a10a247e056018ea11d6d6
BLAKE2b-256 f66af600b1e47b75db44f501d2c2ab1906e73fff296e57e913e372cacd2c267e

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp39-cp39-win32.whl.

File metadata

  • Download URL: thriftpy2-0.7.0a1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 957.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.13

File hashes

Hashes for thriftpy2-0.7.0a1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d1e641b4a4ee8c2ab39f8fbc5a7c8464fa0472e2a58dce823d1e24a51a7b2ad6
MD5 dd05bf77106a826c0ca012e30bcd33ba
BLAKE2b-256 b38509e560c1ed4001418c60197dd162a54e320da8f24de3ea9af3cae3447428

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b151beb1d65ced4389aabf44ad5c3f1bf8c590d902932cdc1b1b4db79ce9480a
MD5 517313a8230ed98667e43f3c89017c26
BLAKE2b-256 a806cb6abbf479be0c9b011e137147fc17b6f14242f877778014d160e5324611

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e393cc68dfb90369eaed775ee65f0a6fefd5d493148a7c0ed3e47f8570f4bc6
MD5 ff01bbd6f3766447eb196634ecf180fb
BLAKE2b-256 0dfa2555cf78e84af2aca01ee3c38a23f6eac771587cb13d797e1c0aad524692

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-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.0a1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d57fa3d2db00892fd7e1816f023d66ffa39e1aa123e5b6974fa29a51e0f8acad
MD5 6aa5333ef3a4aad382c0106f144bd478
BLAKE2b-256 7424a67db9ac8bdc30679a9c532f4de0043e82ab3bd58fa1a70efa5c7be49943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bae6031308a883e7d1addea1fede6b5072707d6160052064cb336a3138a22f3
MD5 74270f4d0d7a6b5290c6b182b2041a81
BLAKE2b-256 84743396ba2ba9c0f6629de6480b87f8759ffb5981d9339002a9a7d75033b574

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0a1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thriftpy2-0.7.0a1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8c40b6547483d85cf027342e0df2d2b1305d8309e01fd1592df19057436bc59
MD5 61487041f23d624547f54eec365d062e
BLAKE2b-256 0413945a1ff5888599332efe6f70274c5a808daa31d36a8a6d1612c6200ed66d

See more details on using hashes here.

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