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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

thriftpy2-0.7.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

thriftpy2-0.7.0-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.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

thriftpy2-0.7.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

thriftpy2-0.7.0-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.0-cp313-cp313t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

thriftpy2-0.7.0-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.0-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.0-cp313-cp313t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

thriftpy2-0.7.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

thriftpy2-0.7.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

thriftpy2-0.7.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

thriftpy2-0.7.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

thriftpy2-0.7.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

thriftpy2-0.7.0-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.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: thriftpy2-0.7.0.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.0.tar.gz
Algorithm Hash digest
SHA256 5bff141d6a5c30cc56ca64800e45cc7c79c03b9eb34ba1c7063c7d3ab3ce2e10
MD5 854b06895153eb9237aa48fb1a75df70
BLAKE2b-256 4e4fb590020e75150245613f1b55afe868b10f736a028521ed26d6d65b01166d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 27af8921a2f7b9eebca17cabd39f3543afe81ec21f992b8a9e1c5d6aa1ba26d2
MD5 f844de0b1ecdb3d38f6eda1ac39679a4
BLAKE2b-256 92c16f12315145339a4e80cebfe35c4e837c198d453f9bed8e03e00443d10345

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f12fdb8345daf34bee2bbeeb92d6923942428f1fbea0b5322ac0428ab214d347
MD5 8487f0d409fd04a0bca9950757a08b6c
BLAKE2b-256 de016093207d01b3f08726ae06ab2d7dd4a9b1a0c9088712a36781c6a3670565

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 953c5cc3e084d4856c60a932def615a47f9b0ba30813efba87f34dcc0ecb8379
MD5 99569fe0031731210b87f857da5266b6
BLAKE2b-256 86e39b3889b07f835a2ca5413517bae8a31d51258fcb6c294137e774997f62ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b18472ecaf6079567c65f8d0aa1689d4b0c2245539d55b61f1003b2716c0ac20
MD5 66a4e6ff52fcf333dba24163487a54b1
BLAKE2b-256 5e9d2d33a13e1d0638bf90a042c0fab1cbfb95a83aa7fd52b0d78d21d79f7057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a55e16ad15e667f286358a0166c8e30f936532607064617553af9cb1957c7de
MD5 43d6e8f68e482e191fd9baef07c1a8f6
BLAKE2b-256 17e991c49700aa5a90b990fec898f15b7777f2a5745a40f12f13dbd3d7c6fa0d

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1c06baf66f4cefb6e3cf46447ea13ee5c90849ed0f71a9a33a1f46cfaa89572
MD5 c3de2cd68d393591c7468c0e756f7dbb
BLAKE2b-256 79c64186d86e0679284ad791576e4ecbbd71e9eb3040c2e81ad98303a8804200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d496567a533d626ba92e5c3b3aefeee4f068e44b6af118b281226a97624f6d21
MD5 27e10bdbeae3e1fd9f6cecaf4c0e9ee2
BLAKE2b-256 6fd80794761ff2307089abeaf794557dc778f1ddacf602575524e959057a37d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c49e3005a6205ac39138f3aa0ba99cbff75b55051b5915a61c90b8a07577a0f
MD5 b3debfd8ac3a07a758fb2a78fbacd463
BLAKE2b-256 96d0523939f2740cb2a3e88bc2c991ba1c87960f01469c5963bc7fdbefc721e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 072314f4ad42c0bd1afa808edf479fff57033e193ce0561d9c60dfb066bfdbde
MD5 7e4993f0e455960641cb0d75b7c9f300
BLAKE2b-256 8b9102da9311a7f44e4d615b48f2d7c1f1a983dc85df0c908c12eb2270e7bb12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 71ef6b632dddaaae2686774aa860090905acfcdae2eb00ba26aa2d4b314bc661
MD5 4fa0e923ae8761c1eb54d9820c61d94c
BLAKE2b-256 b8a8208af565669273740e87cb8f82189d27342cf7c041e76c90efb1817a6060

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 966.7 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6fb600aab14d2fcba60f35289f2889ec9532818aac3624ca2ef55ab319ade896
MD5 86a1846a8dfabc55c0d30990e233c316
BLAKE2b-256 2e2e74d676b2e1970ae7633770541b46d6000b5559665fab82e2cf84ee522d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca93f9ae8cee938c701ec8ce0a2e357175e84a6a6402160f2beeca02aea4566f
MD5 9109c9f6a82d33d721a423c562078ca5
BLAKE2b-256 b2af0a9d62153dad30441996731c226f93b42cb495cd783e41d3ddd8def50c32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 833797e8f7f9ac059510ebf80e1dd5c0079c88ca839c7cad25de005b6feb0035
MD5 d7b31ea5e7092e99394322ac637f4bb5
BLAKE2b-256 7ca4f7c33513e42178ac0beab869311deea9f04467791ba79bbe4087c6ad98c0

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 326dd557e87ac848bb37d79e47815c61ed0cdbc035ef965109ab3357a816f4f9
MD5 646a44867bc764b081ce5815f9ae1b1a
BLAKE2b-256 2845ae9fd65e973c868b60d5e4977cf1c80bfb0856adf500369bc428151a603f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b25a7222005406a37b188c4dd8f2b9d855a162a11fb317319eb04be7bfb14f5
MD5 cd2a286eca20eac2025453bd689d135f
BLAKE2b-256 4b3f9e2dfdf041f3930f766748e3df22c7143296f6570f871cadd59f82c1aa51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bc65af0767d9bcf685a5e1bf2ae272f7de76a609effee40d851ca502aba0e50
MD5 baadf775532046bb24f192a4c7a86e04
BLAKE2b-256 de52bfa57a3c0c0e704091a8c3327117deebf1bbbd05128ff776a427572dd56b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 9a27735b0e577ebe3af6adc08be655e2c05a78e879eced7001e5a608eeda8e3a
MD5 4279ecf3e95ed8c2f3424e4760e8440c
BLAKE2b-256 060dc9d51958b2bb78fe7d686fe3aa2c2f5ed82af6e4bb599e979be602e4cd18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13t, 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.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 029e0a5c8a1bc8c2327ab4400a40e1bcaa1d0a4c0360282e34c5d06155c05499
MD5 5615ff3528531b18ece5ebd8ed56e1d0
BLAKE2b-256 7ab60b71d3eed854f0292f21c3e00e25cb37e4af1ca7a277acebdc3bf3c69b72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ced538d3043b79de2c846326ac837af32608f5be82d0a1ab622f5e1933780aad
MD5 c81560a9a62b0d644da74f8813f09ad5
BLAKE2b-256 8a5c399c9db3da0545dca2b8a89b393b24928a30bf853a72418f5362e8fb628b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 729920dbe189171d2e7c66b0273353b5ba55b5ce18501f759f9b0a4f1c4ccb35
MD5 32895274192c56d4176d3581fae918f2
BLAKE2b-256 c3198627e8ef8f8e543c1cfbe5db3d731e7156caf0af97a0a3ad9c228525813b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1210ab8fdf808a5ec3f575247b5c5d8fd9f8b1f2dd3db74e21396f212580fd68
MD5 6330128aabcc56a3915c17e42542f84a
BLAKE2b-256 c959639832ea9fdf666138b9146065f9eece9a0a85fc3386e5d17e4615b5e8ce

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0-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.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e45fa3da8d356b82416c86a12c5ff560a9ff4f97f654675550c5ea515518ed6
MD5 b6e998423845a15b713f4eb93a8719d5
BLAKE2b-256 b1e7327d6dff74cb4fa851524cdfc464812e035a6c4793da9dd033a9e1755eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0be2c4f8b1cc6f312a6f5193a31753070c0ce13bc67600fb3131fda3add38bb
MD5 ff250cbe9864f381a702ffe2f88a7b31
BLAKE2b-256 5e1ed82edcecd28dad1e2a8bef607513ef44b15cd4ff310c5e651309a2b4caf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6c1152df22a86347a402c0a4b63296bda847a7ac6ea11e4b650c1f6d6cb8b39
MD5 68818c70bd78c7187704142fc111ab3c
BLAKE2b-256 800ac71ac4e9e4cf87e0dacdd2c8930b275d43b9478a04fefb149e87299602a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3cdacf3fdcef63093b9488131bb143da9cf40504e2a25d7bbdd00f0f7adafe64
MD5 3ac9bb6a4ffa1e70beb2bac8c5240ba7
BLAKE2b-256 6d5fff5e9c3fd5020ec40b6fd7fbe04616f069a435075c8802c07386e66d0802

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bbd168284d0d55dd0722405ba47b1094b3b9373e25ade47c021d498e9ade2e1d
MD5 de5cc959ddf7f035b3dc0a73db385d11
BLAKE2b-256 ea3ec3e0a6736ae06e4eddc2aa3dcdf24061057b72e72d94ec32694505aa8a5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 953.4 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4912f684ec388665f02ad5f16ee0624179587e6f5fa311354e7220c351458c19
MD5 717c7808c1ea6e08de2910e7d03a417d
BLAKE2b-256 2bd4ab79eaa5c249e9e8bdb9284fdd1f9ab1d80dc19464736c59832adf8c83ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5fdd3e2952069a94f93c55045cf0d9ce3eaf121697d18e8102db268b137e137
MD5 87cc249348f1d63448e0f257c1b8728f
BLAKE2b-256 105d08fe11236307992ab0145d28efaa675507f300f563cb509882356e2dd739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da459b4780f74305e3fc2cb091e2fe3bb3158be7c5a5dfbb12b384284cac5978
MD5 517d7aba9b8454a69efd43c12f97569c
BLAKE2b-256 9a1086f930c96b0fbe4896c6792939d510188a4c872eb69da40aff69872c4aa7

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8220f945bd8f7661090caa7edf360deee82243768778eaa3559fc27623f66310
MD5 1bd083b4c1e4cdeb2b4697274b83fbd2
BLAKE2b-256 ed7f8a9769f7677cc0c95592f133a295b0e4df2fb37928af4e920e49f87ca3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7a61a9c86c332f287ec6a7f05a3cfef46515665d0d4425fbce8b9467ea2fc07
MD5 a52aecf3ed441f5029c9c841c3d69bfe
BLAKE2b-256 4be93eccd40549d757451982952d3a41065d5daf8eb07107bf58f03641469006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 933f9df462b69e7e102e9c8aed8bd797b0ffb306393e355ea734a7e96653960b
MD5 f2c3c7f1f61649086d01bc14af0da136
BLAKE2b-256 11da3cfe210f4f1ebbc46ad552d72cddb48853b13e054898cfc2fc49e7c8fd99

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for thriftpy2-0.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 660dfc76390bc84702f878c28cee5b83eadb6ddb76546213857654a809feec57
MD5 89e7877b060d519ed41272839b4c41c7
BLAKE2b-256 fe99c04c301035111b9295f4ab5ed8cae6061088f5a1f61e9cde98853c312412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1271bb76bc04cec826172cc92f14d561dffce64b67819e7101e9636694b06155
MD5 e0dafda13bbd5c750b7b7b763d9cecf2
BLAKE2b-256 a9869f2b62e4d26a8f993605dcef3360412bed7c28c8929322832aab820c8155

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4d09148efcccbf575d6990158fed6f0900c4b599d1c26a039ea040b025baa05d
MD5 2dccb9a64ebd43fe8a07a62d6e48bf81
BLAKE2b-256 7ea9d5500239b849587cda8287ccb8cb728fb5c21b25de66fbfcccfa195c14f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08acfe6b7de43ce784af8f6479688d0529e1410331ca68e133a64e08e2f4aea2
MD5 7a82f2dafe4891c92825035ba7e1a9da
BLAKE2b-256 f3065ef66ab0802bb7bb70568f2704c7494e8bcd019581381dda6ea8420b4dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60d6d5696537a306d5944f1054a0a5d4216428e80f553a7c0379b8e108a3870a
MD5 fa832f8bd05ab11adbec6fbc19d82e6f
BLAKE2b-256 419da7f8b4a5b20a3db95cfcd3f8a4d435eae87e5e53019f36170da1c0397372

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac6cfc9ad7db6cfd41382a0bedba5f2276ab29f6becf9ab72fe3d485eabb2f72
MD5 5ddf8ede2380fd5b629e5621aabec4f0
BLAKE2b-256 fcab0beb49fa4303a4adc69c4bd7191ca00468ba3e47ac83151a9caf590899f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94407523b7103ed30d9eb243e70472c0c58c1b518c5b6f736cab71aa8ad329eb
MD5 4f880874696e03ca6ce3d0fc507ca3bd
BLAKE2b-256 52f17507ee23bfe527f8e201d11ae85c790ae376d76da713372769f6ad9445a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 823a5d491885df8eca108811ec4416070ce06e7e945d4f76be3e067075dc27ec
MD5 9d5b91e185d4188ff62b6930faeb0753
BLAKE2b-256 610ff9d2dcb4be029753a8bd41f69d375f15733fe7628a2ef7037dd21a1b10e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for thriftpy2-0.7.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 36c49c28f23c195c5b8dcfe702f5a8e735689bcda1d7405d92f17ef44053d2e5
MD5 cbd149916248c18998a9674130fd395f
BLAKE2b-256 0f097adcd20823077503225fe4cbec8c215c2b65af12b1aa90cb667da6c5f320

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eedf45aa305a583da594d556d39a46b4947da830f6b77d258d6d6ccdff715c71
MD5 1d130ab758e46a6e3cd28be1eb38ce99
BLAKE2b-256 1913cb98a4c2ed48a62e9f4c6dee0949b80e7f233d9d54b9aa37cb5a1ddf474a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 954.3 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5686ca023dfc89224047056fd6d756b978b497d86d8be8d38e8b1e5eff8e0c41
MD5 377cd83af236bb15b0f74a14e5fc110b
BLAKE2b-256 d78e43acf25b6d5e7117b4693684a18474c2c8b301a5cea0c47491df2bef1efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78a80cbfa207ff8b6fd2ff5d9f7462fa118931c53b3ca6ab5c81bd403912f512
MD5 8ebddffe0355fa705f782854f826b871
BLAKE2b-256 f9f83e6f1f42649b2d6a975b4f441dcf7bc056d33dc2490ee759f52569f7888d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a1091a78701bb2c803ae6c8f7513f7683a7c51897287ffedca11f18ec74eb55
MD5 5668fcd4e64a08e498eb15e27d0c9568
BLAKE2b-256 dfb404af35d61acc3dcbaac96982216f17ae55c3f59da367fee56aa7820c2c52

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de510eeb0a1ce3c96ac9764ce62299731dccbdbd07143ab9fbef458836176db7
MD5 57c2ef1ede70cda6bdc490679d89d271
BLAKE2b-256 6e450c71bc7a120ce70db949d589719d6e487a24ad277ba26831d70c0ad5958f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e1bf162d2f2b0081dede87cd4792e3613d7f8afcfacfc9384c32614858cd99e
MD5 34f3ffc99f3160528ddb4ea9aaf4220f
BLAKE2b-256 db31b331c2bed2a9f9c960393b020f603cd45eea5b4f1d3fc045fb94eac9ceda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d47c8222cecdea92b81a9ce47fde372cd5123d10da7ae5c53a0c27e58422774
MD5 5e6b1019f9940cf454c76f8f45199ae3
BLAKE2b-256 2442f0a97a95b6807da4b42e82f8ac8584e0a125d3d861bdc3f33fe020640cb0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for thriftpy2-0.7.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9dc70874e55f1fcfb54e52c46d2b0b7078e7f9d72d8296d06120dbbab3f80d0c
MD5 1437a47067c8b6200c49fceb61cda781
BLAKE2b-256 5af9b69f5606af748fa9677b748d92c70cf1bf07f08394444fd1bf70f91aa529

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5170de60a931fed1f6014c146cd7e5c20cad48958141b3465e966f2789aa89d
MD5 00ef3f6dc2ac21733783bde3a2323c8f
BLAKE2b-256 f4948e131333d28b42a2f4603e78161cdbcbb664eba922972eb83ae58f18c1d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 955.8 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c03b6679564b117f41ed3eae1cb78640e1640874eb6d699836d2bf68daf9120c
MD5 adc8595c64fef20de249de333a81a8cf
BLAKE2b-256 dc802c3e7f3869269cf7d54c7e5b4e9f01cf697b1353e2ad6d0a40d2db58dbc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96aceb73a9669f23ba3111f4acc78dc5312238f2f5735dff076e3d9acca74435
MD5 c15c8d968e4fcb351a6c9ad4cc7f7f45
BLAKE2b-256 ee47077c6079e3e5bb673ff77d313a05f8e73704e237fac273a78f3c2a984d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24ea65e54a22d66ddccc841db610bd7792752b142f3680187c98c3706ebad31d
MD5 db2ff1d605b5d4fc0703d2e838f4aeb1
BLAKE2b-256 94818776e835fc0ecdf1bf8cb17092ed76cabed9e23130617ecfc03370353eba

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04df2449594c1c65ffd2e5b98087198b636f3b343094a4626bfc876fa2e003ca
MD5 af307df6c56aeb6e24bd503a70111fd4
BLAKE2b-256 853bedeed78bc0268bdde7fb28fb794e4511f39661de67a990563c6062c0fba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 377789b95ad686527e840b7076f2f05a293b9abf3fd4709d2b4f339a61a8fa70
MD5 6c951cb22aef166ca83e1178925a4bb9
BLAKE2b-256 deecbda241224e8f541a33c0dee639282d3192f35d614e595a619124c57e77e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20e267307672c958c3102d494f647153e1a8051576c35fc50dba212367bf0079
MD5 8050ac8c178fe8c2465fe0c6c6a67cd2
BLAKE2b-256 8256734dab3979df1823a4c924ebdb7215f57bce6d01f92b19b458534cdc7430

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b8b3191ceb2859418ff9e5c10f4dff70d9e7681c38585893f2e1f6d053f19109
MD5 9394eb203e89a12efbfa077264761b56
BLAKE2b-256 15159a2052c7c9e011bd82e464174c97225354e1cbff108c7a4b24f40a24f89a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1a89a0bd61aee5abe258f2c4998a7dee1d1766db4a466ee11e013da5001e27c0
MD5 a29493a755b81fa5214da150bd4d7f74
BLAKE2b-256 9c23d6324a71a3e36dc59270f17ba3253ec16daf781725ed16f9cb7c5059bde2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: thriftpy2-0.7.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6bd72cf93c915a050e1b7472e017a57099d0da94e875d2f96955bbef4410f362
MD5 ad59169aac38d7f033ef8a7a977cf1b0
BLAKE2b-256 4adca27955fdcaa21d2321f1f4287eb827ab2cc1b07e38f394858efb29b6e225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc4d3edc3b01d671360531a33612b04512d95406e452e05c34e5ab8c9fe4a124
MD5 8d4a64d881cfd9945e8d69fa22e17999
BLAKE2b-256 daa4010ca37c7266c38be86835e3e9122dc3eb4ae0926572dac896c0e8275f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc571e196acbcaf878025aeb484eb7a8eb834ea94d41bcfbd1db21534b5eb474
MD5 907e1d9ddf25d21c9e17005b1635a4f5
BLAKE2b-256 3c0b24adbd77a6f98c009bf6309681afa0c3b75e4f0160df4f3317bdbdd44dae

See more details on using hashes here.

File details

Details for the file thriftpy2-0.7.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79126791df159cb2d675ec9f6c89978698af1bc28a282206476eca620bc9ac3f
MD5 bfe3c38d73e35f605c4ce666a05e96cb
BLAKE2b-256 5224ea7a2dd650334d7b85430daa919ccc7f6548c44523a716e7ff095f72cb7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 713326565097d4ef3b6ab2d245e4ee9c209149336429ab42acd8b67d71fb5696
MD5 a1e9b6bf40f6979d63d9b383ac860e67
BLAKE2b-256 6b0c4d9771d85529fb3da40b37ff2fabccf265943eb93ed0bc6069e054f781de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for thriftpy2-0.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4224ff98a40e68dd49fe53a8ab87b48fadbd7cb92fcfc95ac6ef274974aaa11
MD5 60bc29d7107f7f6b65a7562ff30beada
BLAKE2b-256 48e8078cb4449bb1c943941d72cda9b69efe0a79e35b95f5081c0b952852b922

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 Sentry Error logging StatusPage Status page