Skip to main content

A cython wrapping of the C++ Cap'n Proto library

Project description

pycapnp

Packaging Status manylinux2014 Status PyPI version

Cap'n'proto Mailing List Documentation

Requirements

  • C++14 supported compiler
    • gcc 6.1+ (5+ may work)
    • clang 6 (3.4+ may work)
    • Visual Studio 2017+
  • cmake (needed for bundled capnproto)
    • ninja (macOS + Linux)
    • Visual Studio 2017+
  • capnproto-1.0 (>=0.8.0 will also work if linking to system libraries)
    • Not necessary if using bundled capnproto
  • Python development headers (i.e. Python.h)
    • Distributables from python.org include these, however they are usually in a separate package on Linux distributions

32-bit Linux requires that capnproto be compiled with -fPIC. This is usually set correctly unless you are compiling canproto yourself. This is also called -DCMAKE_POSITION_INDEPENDENT_CODE=1 for cmake.

pycapnp has additional development dependencies, including cython and pytest. See requirements.txt for them all.

Building and installation

Install with pip install pycapnp. You can set the CC environment variable to control which compiler is used, ie CC=gcc-8.2 pip install pycapnp.

Or you can clone the repo like so:

git clone https://github.com/capnproto/pycapnp.git
cd pycapnp
pip install .

By default, the setup script will automatically use the locally installed Cap'n Proto. If Cap'n Proto is not installed, it will bundle and build the matching Cap'n Proto library.

To enforce bundling, the Cap'n Proto library:

pip install . -C force-bundled-libcapnp=True

If you wish to install using the latest upstream C++ Cap'n Proto:

pip install . \
    -C force-bundled-libcapnp=True \
    -C libcapnp-url="https://github.com/capnproto/capnproto/archive/master.tar.gz"

To enforce using the installed Cap'n Proto from the system:

pip install . -C force-system-libcapnp=True

The bundling system isn't that smart so it might be necessary to clean up the bundled build when changing versions:

python setup.py clean

Stub-file generation

While not directly supported by pycapnp, a tool has been created to help generate pycapnp stubfile to assist with development (this is very helpful if you're new to pypcapnp!). See #289 for more details.

Python Capnp Stub Generator

Python Versions

Python 3.8+ is supported.

Development

Git flow has been abandoned, use master.

To test, use a pipenv (or install requirements.txt and run pytest manually).

pip install pipenv
pipenv install
pipenv run pytest

Binary Packages

Building a Python wheel distributiion

pip wheel .

Releasing to PyPI

Wheels and the sdist are built by the Build GitHub Actions workflow (.github/workflows/wheels.yml) for every push, including tag pushes. The scripts/release-pypi.sh helper downloads those artifacts for a given tag (or explicit run ID) and uploads them to PyPI via twine.

Typical release flow:

git tag v2.2.1
git push origin v2.2.1
# wait for the "Build" workflow run to finish successfully on GitHub

# Download artifacts and upload to PyPI (creates dist_221/ by default).
scripts/release-pypi.sh v2.2.1

# Or, target a specific Actions run id:
scripts/release-pypi.sh 1234567890

# Dry run: upload to TestPyPI (https://test.pypi.org) instead of real PyPI.
# Useful for validating the release flow end-to-end before pushing to
# production. Requires a TestPyPI account + API token configured in
# ~/.pypirc under a [testpypi] section. See
# https://packaging.python.org/en/latest/guides/using-testpypi/ .
scripts/release-pypi.sh v2.2.1 --test

Requirements on the release machine:

  • gh CLI, authenticated (gh auth login)
  • python3 (the script creates .venv-release/ and installs twine into it)
  • PyPI credentials available to twine, e.g. TWINE_USERNAME=__token__ and TWINE_PASSWORD=<api-token>, or a configured ~/.pypirc

The script:

  1. Resolves the latest successful wheels.yml run for the tag (or uses the given run ID).
  2. Downloads cibw-* artifacts and flattens all *.whl / *.tar.gz files into the output directory (default dist_<digits> for tags, dist_run_<id> for run IDs; pass a second arg to override, and --force to reuse a non-empty directory).
  3. Runs twine check, prints the file list, and prompts before running twine upload.

Documentation/Example

There is some basic documentation here.

Make sure to look at the examples. The examples are generally kept up to date with the recommended usage of the library.

The examples directory has one example that shows off pycapnp quite nicely. Here it is, reproduced:

import os
import capnp

import addressbook_capnp

def writeAddressBook(file):
    addresses = addressbook_capnp.AddressBook.new_message()
    people = addresses.init('people', 2)

    alice = people[0]
    alice.id = 123
    alice.name = 'Alice'
    alice.email = 'alice@example.com'
    alicePhones = alice.init('phones', 1)
    alicePhones[0].number = "555-1212"
    alicePhones[0].type = 'mobile'
    alice.employment.school = "MIT"

    bob = people[1]
    bob.id = 456
    bob.name = 'Bob'
    bob.email = 'bob@example.com'
    bobPhones = bob.init('phones', 2)
    bobPhones[0].number = "555-4567"
    bobPhones[0].type = 'home'
    bobPhones[1].number = "555-7654"
    bobPhones[1].type = 'work'
    bob.employment.unemployed = None

    addresses.write(file)


def printAddressBook(file):
    addresses = addressbook_capnp.AddressBook.read(file)

    for person in addresses.people:
        print(person.name, ':', person.email)
        for phone in person.phones:
            print(phone.type, ':', phone.number)

        which = person.employment.which()
        print(which)

        if which == 'unemployed':
            print('unemployed')
        elif which == 'employer':
            print('employer:', person.employment.employer)
        elif which == 'school':
            print('student at:', person.employment.school)
        elif which == 'selfEmployed':
            print('self employed')
        print()


if __name__ == '__main__':
    f = open('example', 'w')
    writeAddressBook(f)

    f = open('example', 'r')
    printAddressBook(f)

Also, pycapnp has gained RPC features that include pipelining and a promise style API. Refer to the calculator example in the examples directory for a much better demonstration:

import asyncio
import capnp
import socket

import test_capability_capnp


class Server(test_capability_capnp.TestInterface.Server):

    def __init__(self, val=1):
        self.val = val

    async def foo(self, i, j, **kwargs):
        return str(i * 5 + self.val)


async def client(read_end):
    client = capnp.TwoPartyClient(read_end)

    cap = client.bootstrap()
    cap = cap.cast_as(test_capability_capnp.TestInterface)

    remote = cap.foo(i=5)
    response = await remote

    assert response.x == '125'

async def main():
    client_end, server_end = socket.socketpair(socket.AF_UNIX)
    # This is a toy example using socketpair.
    # In real situations, you can use any socket.

    client_end = await capnp.AsyncIoStream.create_connection(sock=client_end)
    server_end = await capnp.AsyncIoStream.create_connection(sock=server_end)

    _ = capnp.TwoPartyServer(server_end, bootstrap=Server(100))
    await client(client_end)


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

Changelog

v2.2.3 (2026-05-30)

  • Fix test failures on Python 3.14 (#394)
  • Refine documentation for PyCustomMessageBuilder (#395)
  • Replace black and flake8 with ruff for linting and formatting
  • ci: deploy docs to gh-pages on tagged releases
  • Add scripts/release-pypi.sh for downloading CI artifacts and uploading to PyPI

v2.2.2 (2026-01-16)

  • Revert Data fields to bytes and add get_data_as_view for zero-copy access (#390)
  • Fix use-after-free in async write causing corruption with large payloads (#392)
  • Update macOS builds from 13 to 15 (#393)

v2.2.1 (2025-10-21)

  • Make message.to_dict() return bytes for DATA type field (#386)

v2.2.0 (2025-09-12)

  • Add binary support in dictionaries via base64 encoding (#351)
  • Add structure-free read_multiple_bytes_packed (#378)
  • Support python custom message builder and make Data field's type return MemoryView (#380)

v2.1.0 (2025-09-04)

  • Add Python 3.13 support
    • Python 3.8 is still enabled but will be disabled if changes are needed that prevent compatibility with newer versions of Python (e.g. 3.14)
    • Disabling experimental Python 3.14 build as it currently causes build issues
  • Upgrade to Cython version 3
  • Include _custom_build in sdist
  • Remove usage of deprecated kj::mvCapture functions
  • Make license information SPDX-compatible
  • Generate a new certificate that is compatible with strict x509 checking
  • Avoid storm of 'warning: moving a temporary object prevents copy elision'
  • cibuildwheel updates
  • Fix deprecation warning when importing a schema

v2.0.0 (2024-01-19)

  • Updated link for mailing list in README

v2.0.0b2 (2023-11-25)

  • Fix broken test in test_load (#329)
  • Update README example to async code (#331)
  • Fix 'AttributeError: '_UnixSelectorEventLoop' object has no attribute 'call_soon'
  • Delete and update some Python 3.7-specific todo notes
  • Make a server fail early when the KJ loop is not running
  • Update documentation to async code (#331) (#332)
  • Fix retransmit bug for large messages causing message corruption
  • Unlock the GIL for all capnp functions that do IO
  • Handle exceptions from server callbacks
  • Disable the use of ninja for windows builds
  • DynamicCapabilityClient fix
  • Make reraise_kj_exception available to downstream
  • Support _DynamicListReader in _setDynamicField
  • Fix re-raising of KjException
  • Allow cancellation of all capability contexts
  • Corner case for cancelled server methods that raise exceptions
  • Some fixes to the magic import system

v2.0.0b1 (2023-10-03)

  • Update to bundled capnproto-1.0.1
  • Remove support for Python 3.7
  • Use custom build backend to support build args (#328)
  • Update Cython version and Python to 3.12 (#320)
  • Wrap all capnp code in a context-manager to avoid segfaults (#317)
  • Schema loading from the wire (#307)
  • Make pycapnp more GIL friendly (#308)
  • Use cibuildwheel in ci (#309)
  • Integrate the KJ event loop into Python's asyncio event loop (#310)
  • Allow capability implementation methods to be async (#312)
  • Allow reading and writing messages from sockets in async mode (#313)
  • Remove the synchronous RPC mode (#315)

v1.3.0 (2023-01-26)

  • Update to bundled capnproto-0.10.3
  • Add Python 3.11 to Github Actions builds (#306)
  • Prevent race condition in example code (#305)

v1.2.2 (2022-12-01)

  • Update bundled bundled capnp to 0.8.1 due to CVE-2022-46149
  • Bundle lib/capnp_api.h and helpers/capabilityHelper.cpp (#301)
  • Avoid reading random values for reader options from dangling reference (#300)

v1.2.1 (2022-09-11)

  • Fix packaging for Apple Silicon

v1.2.0 (2022-08-29)

  • Added support for Apple Silicon

v1.1.1 (2022-05-23)

  • Added Python 3.10 support
  • aarch64 wheel support
  • Fix doc string for _DynamicResizableListBuilder
  • fix for unreleased buffers under mmap (issue 280)

v1.1.0 (2021-06-09)

  • Validated compatibility with Python 3.10.0b2
  • Remove all bare except
  • Improve _StructModuleWhich to inherit from enum.Enum
  • Add Union on top level union messages
  • Fixed memory leak in _SegmentArrayMessageReader
  • Removed many pycodestyle warnings
  • Avoid crash if __file__ is not set by importer
  • Fixed module.pyx _set_<field> for boolean fields
  • Fixed setup.py.tmpl support for *.c++ files
  • Fixed _gen.py for python3 as dict_keys object are not indexable.
  • Add test data to sdist
  • Add pyproject.yaml
  • Add missing inheritance to _Schema for _StructSchema

v1.0.0 (2020-11-20)

  • Validated Python 3.9 (3.7 and 3.8 are also supported)
  • Updated package to include LICENSE file
  • Updated examples to avoid run_forever() as ctrl+c will not work
  • Adding xfail to pytest cases which fail sometimes due to network port oddities (please use asyncio, as Python handles things more gracefully)

v1.0.0b2 (2020-06-14)

  • Minimum capnproto version is now 0.8.0
  • Added asyncio ssl calculator test
  • Added poll_once to TwoPartyServer API
  • More cleanup
  • Fix absolute and circular imports
  • Fix Promise aliasing issue (Promise to _Promise)
  • Documentation update
  • Updated installation instructions
  • Added RPC documentation for asyncio

v1.0.0b1 (2019-12-26)

  • Python 3.7+ required (asyncio support)
  • TLS/SSL support using asyncio
  • Windows support
  • General cleanup
  • May be incompatible with code written for pycapnp 0.6.4 and lower
  • Removing pypandoc/pandoc packaging requirement
  • Minimum capnproto version is now 0.7.0

v0.6.4 (2019-01-31)

  • Fix bugs in read_multiple_bytes (thanks to @tsh56)
  • Remove end-of-life Python versions 2.6, 3.2, and 3.3. Add CI tests for 3.6
  • Expose SchemaParser in Cython header

v0.6.3 (2018-01-14)

  • Bump bundled capnp version to v0.6.1 (thanks to @E8Yuval)
  • Fix a memleak in RemotePromise (thanks to @E8Yuval)

v0.6.2 (2017-11-30)

  • Add support for buffers/memoryviews in from_bytes (thanks to @aldanor)

v0.6.1 (2017-07-27)

  • Fixed upload to PyPi (forgot to cythonize)

v0.6.0 (2017-07-27)

  • Update bundled capnp version to v0.6.0 and fix related problems (thanks to @benmoran)
  • Fix memleak with KjException (thanks to @tsh56)

v0.5.12 (2017-04-18)

  • Bump bundled capnp version to v0.5.3.1

v0.5.11 (2017-04-10)

  • Make enums hashable (thanks to @madeleine-empirical)
  • Rework logic on when to build bundled libcapnp. Fixes cross-compilation (thanks to @benizl)
  • Add traversal_limit_in_words and nesting_limit to RPC classes (thanks to @asilversempirical)
  • Include class attributes in dir. This allows for code completion of class methods (thanks to @chaoflow )
  • Allow setting lists with python tuples (thanks to @chaoflow)
  • Fix traversal_limit_in_words and nesting_limit being ignored by from_bytes (thanks to @plesner)

v0.5.10 (2016-11-28)

  • Fix bug that prevented event loop from actually being lazy initialized
  • Fix possible recursive loop in KjException
  • Add clear_write_flag method to builder classes

v0.5.9 (2016-07-07)

  • Make the event loop be lazy initialized
  • Add support for segment (de)serialization (thanks to @gcv). See to_segments/from_segments methods.
  • Fix response objects not referencing parents correctly
  • Add test for large reads

v0.5.8 (2016-05-27)

  • Fix build problem with Cython v0.24
  • Include the changelog in the manifest (should fix install problems if pandoc is present)
  • Include the traceback in exceptions
  • Make sure to encode to utf-8, not the default encoding (thanks to @novas0x2a)
  • Add --libcapnp-url option in installer to allow installing arbitrary libcapnp versions
  • Support mmap objects for reading with from_bytes (thanks to @bpiwowar)
  • Change read_multiple and read_multiple_packed to copy by default
  • Fix mistakenly discarding the file parameter on reads
  • Add reraise_kj_exception to the prettyPrint functions. (thanks to @kdienes)
  • Fix KjException init (missing wrapper). (thanks to @E8-Storage)
  • Add result_type to InterfaceMethodSchema

v0.5.7 (2015-06-16)

  • Update bundled libcapnp to v0.5.2
  • Add warnings for using old restorer methods. You should use bootstrap instead
  • Fix warning from PyEventPort
  • Handle AnyPointers better as arguments to RPC functions
  • Add support for using keyword arguments with a named struct in an RPC
  • Add bootstrap method to TwoPartyServer
  • Add init method to lists
  • Add support for unix sockets in RPC

v0.5.6 (2015-04-13)

  • Fix a serious bug in TwoPartyServer that was preventing it from working when passed a string address.
  • Fix bugs that were exposed by defining KJDEBUG (thanks @davidcarne for finding this)

v0.5.5 (2015-03-06)

  • Update bundled C++ libcapnp to v0.5.1.2 security release

v0.5.4 (2015-03-02)

  • Update bundled C++ libcapnp to v0.5.1.1 security release
  • Add bootstrap RPC methods
  • Fix possible segfault when importing multiple schemas

v0.5.3 (2015-02-23)

  • Fix possible crash due to bad destructor ordering in MessageReader (by @JohnEmhoff)
  • Default to no longer using cython

v0.5.2 (2015-02-20)

  • Add read_multiple_bytes/read_multiple_bytes_packed methods
  • Added Python 3.4 to the travis build matrix
  • Bump version for bundled C++ libcapnp to v0.5.1

v0.5.1 (2014-12-27)

  • Remove installation dependency on cython. We now have no dependencies since libcapnp will automatically build as well.

v0.5.0 (2014-12-15)

  • Timer class capnp.getTimer()
  • pycapnp is now thread-safe and allows an event loop to be run in each thread
    • You must destroy and re-create the event loop to get this functionality (see test_threads.py)
  • Inheritance now works correctly for interfaces (previously inherited methods were inaccessible from pycapnp)
  • Add ability to import modules with dashes or spaces. Use underscores in place of them
  • from_bytes with builder=True is no longer zero copy. It never worked correctly, and is much safer now
  • Add num_first_segment_words argument wherever message creation can occur
  • Allow restoring a null objectId by passing None to restore
  • Support ordered dictionary in to_dict
  • Add ListSchema class and schemas for native types under capnp.types which completes all the Schemas needed to be wrapped. See test_schema.py for examples using it
  • Add automatic build of C++ libcapnp if it's not detected on the system. Also add flags --force-bundled-libcapnp and --force-system-libcapnp respectively

v0.4.6 (2014-9-10)

  • Fix build for new 0.21 release of Cython. 0.21 is now the minimum supported version of Cython.

v0.4.5 (2014-6-26)

  • Fix to_dict not converting enums to strings

v0.4.4 (2014-04-25)

  • Fix compilation problem with gcc 4.8

v0.4.3 (2014-02-18)

  • Fix problem with uninitialized unions in _from_dict
  • Add accesible version numbers for C++ libcapnp

v0.4.2 (2014-02-13)

  • Remove onDrained since it was removed upstream
  • Replace usage of strings as enum type with custom _DynamicEnum class.
  • Also change Struct.which() method to be a property Struct.which and return an enum type (_DynamicEnumField, which behaves much like _DynamicEnum).
  • TwoPartyServer.run_forever() now will handle more than 1 simulataneous connection.
  • Change exception wrapper to detect and raise AttributeError for field lookup exceptions (Fixes problem in Python3.x __dir__)
  • Allow setting of fields with python dicts.

0.4.1 (2013-12-18)

  • Remove python 3.2 from travis tests. Python 3.2 still should work fine, but it's more trouble than it's worth to write unicode tests that work in both it and Python2.
  • Fix problems with null characters in Text/Data fields. Fixes #19

0.4.0 (2013-12-12)

  • Initial working version of RPC
  • Add get_root_as_any to _MessageReader
  • Add capnp.pxd for public declarations of cython classes
  • Fix problems compiling with gcc4.7

v0.3.18 (2013-11-05)

  • Change naming of ReaderOption parameters to be pep8 compliant

v0.3.17 (2013-11-05)

  • Add ReaderOptions to read/read_packed/from_bytes

v0.3.16 (2013-10-28)

  • Add defaults flag to capnp-json. Also remove 'which' field
  • Add capnp-json serializer script. Also fix bugs in from_dict
  • Fix build for clang/python3. Also remove -fpermissive
  • Add as_builder method to Struct Reader
  • Add warning when writing the same message more than once
  • First working version of capability interfaces
  • Wrap InterfaceSchema
  • Fix setting string fields to support all types of strings
  • Fix changed API for DynamicObject/ObjectPointer

v0.3.15 (2013-09-19)

  • Add not having installed the C++ libcapnp library to 'Common Problems'
  • Add _short_str function for use in capnp_test_pycapnp.py
  • Add test script for testing with https://github.com/kaos/capnp_test
  • Add handling of DynamicObject
  • Fix lists of lists or dicts for from_dict

v0.3.14 (2013-09-04)

  • Fix problem with to_dict

v0.3.13 (2013-09-04)

  • Add _DynamicStructBuilder.to_bytes() and .from_bytes()
  • Change == on StructSchema to return cbool
  • Add Builder and Reader ABCs for each struct type

v0.3.12 (2013-09-03)

  • Fix handling of empty path '' in load_module
  • Add from_dict
  • Fix bug in exception handling for which(). Also standardize exceptions.
  • Change import hook to require modules to end in '_capnp'
  • Add import monkey patch function.
  • Change naming for functions to conform to PEP 8. Also deprecate old read/write API
  • Update preferred method for reading/writing messages from files

v0.3.11 (2013-09-01)

  • Forgot to change project name in setup.py

v0.3.10 (2013-09-01)

  • Change all references to old project name (change from capnpc-python-cpp to pycapnp)
  • Change DynamicValue.Reader lists to be returned as _DynamicListReader
  • Unify setters for DynamicList and DynamicStruct
  • Add shortcuts for reading from / writing to files. In Python, it doesn't make much sense to force people to muck around with MessageReaders and MessageBuilders since everything is landing on the heap anyway. Instead, let's make it easy: MyType.read[Packed]From(file) reads a file and returns a MyType reader. MyType.newMessage() returns a MyType builder representing the root of a new message. You can call this builder's write[Packed]To(file) method to write it to a file.
  • Store Builders by value rather than allocate them separately on the heap (matches treatment of Readers). v0.3 fixes the bug that made this not work.
  • Wrap MessageBuilder::setRoot().
  • Add tests based on TestAllTypes from the C++ test.capnp. Fix problems uncovered in capnp.pyx.
  • Implement str and repr for struct and list builders. str uses prettyPrint while repr shows the type name and the low-whitespace stringification. Also implement repr for StructSchema, just because why not?

v0.3.9 (2013-08-30)

  • Change load to use a global SchemaParser. Make structs settable as field
  • Add docstrings for new functions and _DynamicResizableListBuilder

v0.3.8 (2013-08-29)

  • Add initial tests
  • Add _capnp for original Cython module. Meant for testing.
  • Lowercase schema so it conforms to member naming conventions
  • Expose _StructSchema's raw node
  • Add some useful _StructSchema, reader, and builder methods
  • Add full orphan functionality. Also, allow special orphan lists
  • Finish up adding docstrings to all public classes/methods

v0.3.7 (2013-08-26)

  • Add a ton of docstrings and add to official docs
  • Add DynamicOrphan

v0.3.6 (2013-08-26)

  • Add intersphinx for linking to python docs
  • Add C++ library version check

v0.3.5 (2013-08-25)

  • Add handling of constants in schemas
  • Fix new error with DynamicValue.Builder no longer being copyable

v0.3.4 (2013-08-22)

  • Fix Void namespace change
  • Updated capnp schema to conform with new union rules

v0.3.3 (2013-08-22)

  • Fix for the removal of DynamicUnion from the C++ API

v0.3.2 (2013-08-21)

  • Add MANIFEST.in to include README

v0.3.1 (2013-08-21)

  • Update docs with lines about upgrading setuptools

0.3.0 (2013-08-21)

  • Initial commit of docs
  • Add querying unnamed enums to structs

0.2.1 (2013-08-13)

  • Fix enum interface change for benchmark
  • Random formatting cleanup
  • Allow import paths in the schema loader
  • Add travis CI

0.2.0 (2013-08-12)

  • Initial working version

Project details


Download files

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

Source Distribution

pycapnp-2.2.3.tar.gz (731.8 kB view details)

Uploaded Source

Built Distributions

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

pycapnp-2.2.3-cp314-cp314t-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

pycapnp-2.2.3-cp314-cp314t-win32.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86

pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_s390x.whl (6.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_s390x.whl (5.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_i686.whl (5.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pycapnp-2.2.3-cp314-cp314t-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pycapnp-2.2.3-cp314-cp314t-macosx_10_15_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pycapnp-2.2.3-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pycapnp-2.2.3-cp314-cp314-win32.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86

pycapnp-2.2.3-cp314-cp314-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pycapnp-2.2.3-cp314-cp314-musllinux_1_2_s390x.whl (6.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

pycapnp-2.2.3-cp314-cp314-musllinux_1_2_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

pycapnp-2.2.3-cp314-cp314-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pycapnp-2.2.3-cp314-cp314-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pycapnp-2.2.3-cp314-cp314-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pycapnp-2.2.3-cp314-cp314-manylinux_2_28_s390x.whl (5.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pycapnp-2.2.3-cp314-cp314-manylinux_2_28_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.3-cp314-cp314-manylinux_2_28_i686.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pycapnp-2.2.3-cp314-cp314-manylinux_2_28_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pycapnp-2.2.3-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pycapnp-2.2.3-cp314-cp314-macosx_10_15_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pycapnp-2.2.3-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pycapnp-2.2.3-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

pycapnp-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pycapnp-2.2.3-cp313-cp313-musllinux_1_2_s390x.whl (6.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

pycapnp-2.2.3-cp313-cp313-musllinux_1_2_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

pycapnp-2.2.3-cp313-cp313-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pycapnp-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pycapnp-2.2.3-cp313-cp313-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pycapnp-2.2.3-cp313-cp313-manylinux_2_28_s390x.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pycapnp-2.2.3-cp313-cp313-manylinux_2_28_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.3-cp313-cp313-manylinux_2_28_i686.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pycapnp-2.2.3-cp313-cp313-manylinux_2_28_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pycapnp-2.2.3-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pycapnp-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pycapnp-2.2.3-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pycapnp-2.2.3-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

pycapnp-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pycapnp-2.2.3-cp312-cp312-musllinux_1_2_s390x.whl (6.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

pycapnp-2.2.3-cp312-cp312-musllinux_1_2_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

pycapnp-2.2.3-cp312-cp312-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pycapnp-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pycapnp-2.2.3-cp312-cp312-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pycapnp-2.2.3-cp312-cp312-manylinux_2_28_s390x.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pycapnp-2.2.3-cp312-cp312-manylinux_2_28_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.3-cp312-cp312-manylinux_2_28_i686.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pycapnp-2.2.3-cp312-cp312-manylinux_2_28_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pycapnp-2.2.3-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pycapnp-2.2.3-cp312-cp312-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pycapnp-2.2.3-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pycapnp-2.2.3-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

pycapnp-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pycapnp-2.2.3-cp311-cp311-musllinux_1_2_s390x.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

pycapnp-2.2.3-cp311-cp311-musllinux_1_2_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

pycapnp-2.2.3-cp311-cp311-musllinux_1_2_i686.whl (6.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pycapnp-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pycapnp-2.2.3-cp311-cp311-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pycapnp-2.2.3-cp311-cp311-manylinux_2_28_s390x.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pycapnp-2.2.3-cp311-cp311-manylinux_2_28_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.3-cp311-cp311-manylinux_2_28_i686.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pycapnp-2.2.3-cp311-cp311-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pycapnp-2.2.3-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pycapnp-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pycapnp-2.2.3-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pycapnp-2.2.3-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

pycapnp-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pycapnp-2.2.3-cp310-cp310-musllinux_1_2_s390x.whl (6.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

pycapnp-2.2.3-cp310-cp310-musllinux_1_2_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

pycapnp-2.2.3-cp310-cp310-musllinux_1_2_i686.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pycapnp-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pycapnp-2.2.3-cp310-cp310-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pycapnp-2.2.3-cp310-cp310-manylinux_2_28_s390x.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

pycapnp-2.2.3-cp310-cp310-manylinux_2_28_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.3-cp310-cp310-manylinux_2_28_i686.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

pycapnp-2.2.3-cp310-cp310-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pycapnp-2.2.3-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pycapnp-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pycapnp-2.2.3-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

pycapnp-2.2.3-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

pycapnp-2.2.3-cp39-cp39-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pycapnp-2.2.3-cp39-cp39-musllinux_1_2_s390x.whl (6.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

pycapnp-2.2.3-cp39-cp39-musllinux_1_2_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

pycapnp-2.2.3-cp39-cp39-musllinux_1_2_i686.whl (6.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pycapnp-2.2.3-cp39-cp39-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pycapnp-2.2.3-cp39-cp39-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

pycapnp-2.2.3-cp39-cp39-manylinux_2_28_s390x.whl (5.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ s390x

pycapnp-2.2.3-cp39-cp39-manylinux_2_28_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.3-cp39-cp39-manylinux_2_28_i686.whl (5.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

pycapnp-2.2.3-cp39-cp39-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pycapnp-2.2.3-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pycapnp-2.2.3-cp39-cp39-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pycapnp-2.2.3.tar.gz.

File metadata

  • Download URL: pycapnp-2.2.3.tar.gz
  • Upload date:
  • Size: 731.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3.tar.gz
Algorithm Hash digest
SHA256 91b24e94c5ffc016bcbac883d3376f9940d2b25db06e7058b13bbb2ed7cd752d
MD5 00947927e84f9cfaf84d00274532f3dd
BLAKE2b-256 deedb9557772d92ebaab796fe6560308fca81a903bacf9da972808268cdd3e67

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3220dd2f0123b4f4b56a815e2ab7b57dae0b2ae3a82f1bbdc519e8aa0cfb68ea
MD5 fad308b2edbc0aed090eb2a7e3ef00a4
BLAKE2b-256 bac6b78c405e0c98643b1fac2d86aad31c6b0ecf67e00bed6478414683d90a5c

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 12530e09ce847b924b8044001a3f430b82b5c869d7d5e8b5ec0775c4e67920c2
MD5 32c3415832283b3f615956b77859a7b7
BLAKE2b-256 ec279dc0107069918d44441eae90212f14b57f100c5ce0a808a23f3b076beee2

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75a08ace3cb27bf20fcc3c67783ed3b68a261c3ad4aa27a5d126114cb0340b18
MD5 7015ed4bfdf105e07ba981365112337c
BLAKE2b-256 2cba48558cc7e9586b5939dd0cbf4cfaac867a5359c8436bcce6bc6581331fe9

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d0ec0a1638a225fdb26a4ea50bab46ddf0363f22c834d4295773b0e8a3fc0efd
MD5 e556d4949e6570c865dade009f58d3a5
BLAKE2b-256 9e0f8a97d69f716554ba347b0792764f2170ab3c3a12160506121ed204f45c95

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bb64bc217a24975a48d918be6fd8c53fb2432d9ac483ae078a80b782fdebfab2
MD5 618bf3eb23be1b8a77a7615cac88d5b5
BLAKE2b-256 8db5b316e4d91986367f5766da97ce3bac97e9d149d84d083dc9cc8446d11f9a

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1dfdf1b5a9ec40f8db78abed8041052c0a780514fec226384191e0b92410ed4
MD5 bff587f10387df8ab0093e840c48e1ac
BLAKE2b-256 02fd058c5ce0a2835f67a175e6a640eef307a18b1c22e8d865f02c1c95a5efc8

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2e014423faf5a3c801ed6513f480bac7b35e4a1c7d4131aabe2705536015861
MD5 bd495c07e76755caf558848976794f96
BLAKE2b-256 9a3bfac026e023ae0c0f2293e61ec8a0be1aa8a4fe4b28af958f4fc9451991d2

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e565e2033e3d610d6066ec5a374afd9e0f7fc2f5e0599dfc6865837e8df6c836
MD5 f8603ae6c264cf390a242157fc1a37fb
BLAKE2b-256 26d8f7e57daaa1da24fab03027ef0c19fe594c15335f822d5f5ed2407ff82a07

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 544dffbb7dd5a2dcd7011ed99b61eab743c55fc308c4696d8739790f3a064ec4
MD5 dd289d1b86e4eaa230bd0099e261fd75
BLAKE2b-256 d6c5e1589da843a15e9814ff11136831678f85efb0b6bd08838d4180a714a162

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e4ffcf4426f55fd573e5964e12fb85cecb670ccc5afd233168a7d069cc01a367
MD5 fbc805acc44db70b257b3e1e4a02f6fc
BLAKE2b-256 49f63144585de27eb7da24a63c84d191de79a68a937470d5da3f2b26f4bfa383

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2a388e94e44d9d03518c566ffb83e8a862601eb04bd96f5adc9239c14aa024f1
MD5 8be3f45c100cbd23c566b01200724f0e
BLAKE2b-256 8de74e07aaaa46466759aa8024de6262b9fd4076c413cbec6608cb226250f143

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7503c14911440f86e5cffc09ff9147a209a2458f2f102e017d07738f995bb56
MD5 438f096d70fe1605718d33d8ed15e80b
BLAKE2b-256 960c2a0727da9c84493d077ce87b953db603125fe514c7f7bf7b6346303d64e8

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2208e261c2ae846bdcf52ae50991ed3a5cde9a7828d6d7a6a11a16277a840dfc
MD5 2001fc29b3afd3446e9071b8c91c00c9
BLAKE2b-256 3a11caa4ce35840b73c42c1e11b184d5378e74d06aef7ef91e8101d8f42fa9f4

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f2fc82f8752b944faf59a48fe8e43cd87e99e3422252c341c54b704aa3fe9d1d
MD5 433815eb8b1e6e41fb5c795d497ca888
BLAKE2b-256 94cfe9518971d137f1bb86f0948ac76568a80808f46cba7b6dadb021f2ebbd0d

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8e39afeeb25a91ee37d497027f2516faa1ec3ca9e0e30a32960f722bc334c79a
MD5 8abdd5a6ee2af0c83385dcad5fd8bf5f
BLAKE2b-256 df426da869c577574ed9a443c8d984fdecbade8dda0727b86f7d784370b66c3a

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d7a7a127bbfe9750f20b601977076f21585928a5d35a79bba107bcf532c085cb
MD5 57d0d842223fe876489cf22b701f6b97
BLAKE2b-256 fb3cdf75595777a6883170437231d053b9bb9faf8567363f643847a1edc8f022

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f81734d15c580d2f1d8b19cebc94c89d3078fdd2063c26cfcabbfaf36fffe4e0
MD5 ace3c921107b0bd57a308cbaf08d7276
BLAKE2b-256 fdbb376e31a3d441d258f63a6799eef999d56119d6a59f2c1e6ca47bb8ca5f66

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 18930dfe8dea2bea9726d43be372bc77d3183e4036f0277c0e1d3942aefad159
MD5 13cde7dac7e91d82690455385a44aeeb
BLAKE2b-256 65732daed5765b88d0dcffab36de5c8f71fb09b36334b9b52c3ed5e06eb92cc8

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 29230851616214e49aea7b941866594fe7b8d01007041057c52df2354db1df2e
MD5 28ea9490a0993c9f009888745340b916
BLAKE2b-256 c6a5e356f1c3a1058e0f33eea060829b77067ae98c2d0d7daccfb7d57d21d8f3

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 739960142144ad34cd363abac2302156bb5990d2fcb9308915951098c72b2853
MD5 03ad30b2a983deee2aee86fa48026af7
BLAKE2b-256 11e9b07ee7fe8ffc98ee7e741a5067edcc5160cec1deac10dc1ffb6c85e39cbf

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d343873967342a4c44d544a018ad649c77c63e8a3496ecdd992e967c73b1e9e7
MD5 6a007d45622e090fd87844eb2932d233
BLAKE2b-256 710cd246f114403fb5e42734b0cfb0a57d168a809cfcd5549934f3ebbd134532

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6998178c06120cc8f6b3a813e6994ad20eb2ed9de7d1a4eba0372b1a014e3605
MD5 b17a0b973a4e2e68ae8b3db8ccdfaa04
BLAKE2b-256 a0a874a746ff5c4633caeca57a5dc4740716469c838a7c0a6512d818ae891780

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f7e9765af69a4e3e04319b36d6e65cabb4c7e6886f21f9680769476a56e4f395
MD5 58a5c0e87155e6cefe5621ff8da0d6cc
BLAKE2b-256 8f1eeb7a6cb22f732b8ddd94ec48070958c99a47970924c71ba7b13d43a3b0eb

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 06ac4a00ddbdd87def24e4e945ac6726c7fcd5b5fbb81a0308a517dc340492bd
MD5 2dc555311ced69b11328dd2e7d5a95fc
BLAKE2b-256 328d4d07e2580e50d92107e2678482a0e8e88ba315910e29dcbea96fe71343b2

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5e92b25b620b1c0cdf0087d8327cb3709bd748b4d7070e6ebad7ae79a2e7d292
MD5 9fa7a7f605b086bcc9166f69162afd82
BLAKE2b-256 ca85d9769e7f7bd8e041a6130d94e7d614689923821bbd743cf4fbed86cfc8f7

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d58c90634d8d6aede870e22598df001579ff3494bd375ec39c318adef1d9ccd
MD5 d7bf9a14709145f9cf1a95a120e0aa9f
BLAKE2b-256 08f2ae8740e1782b5cfbe235147b56d462b86740d6498d2225142cc0154cb656

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 690224e3c118cd70e7a067acafac5a5d13d3c9e091c05c19b8c060abf2149154
MD5 c95c83e9fc67cbe3c2e50af9c3625095
BLAKE2b-256 67b84433faa4970ff7844c6c46f83d032fd6e6d12c843412a800013587000325

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5a39a6973703befc0910531e2a0c97c6c001f49595856557d8b893b38c477edd
MD5 253c3fe5c0d0785b409b8b58315c80ab
BLAKE2b-256 943c2b7c47ab9a99a7bc9f24beabc9e86269fd3c0b815b3dbc1a40d8e01173bf

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2f46f071e6958e8bfaf0c332d91b055a6c52caaf7fcf0819a752e7124d990e35
MD5 5a5bad72827e46a907b2cd658ed9caf8
BLAKE2b-256 7e3d28c0da7bf881c994e37beaf0285cd433bddfeade1c73d967206c35ca2919

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5d9566f49818afa1cb075a50bd988d23e6705a394535b10381958fb56e65ff7c
MD5 1bb84f37e90dfd094151ef1f26fdf9a1
BLAKE2b-256 bcd142745d92a550037cf4ef25d3e7e1efbd5b99043e010af461692018497e26

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dccd8f6b67a089386e5115a50d07b4b4a5efe913409691506a9ed1ae90986c3
MD5 7c153f68beead8182f7cf5b81764e6bc
BLAKE2b-256 11d11eba840ea8cc9552e563b4adffb281228669e207935c4b4403863fe48ac3

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a26cc8bdfa6ea07c23ad037e4b0703a8c58d928b2b4e8d9e70a1f40e4499081d
MD5 127c64c139137688a2f4eaf80d5c3aff
BLAKE2b-256 9024442d5f0eb899d6e97ec712787ed761f7c565a8eff4dce1851a7f4ca994de

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eb504d5726a89e964fe7d242b421b02bd8b83ecce492b1145abc5189b2fb76a8
MD5 1b61b93e8517e2cd9e4940ae89ddf7ca
BLAKE2b-256 8da6572fac7c5230d1213d03ce96820dec4e66c76d79ed229b19f6757c7b89fb

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65f84cdda093b31a81e99669881b0c7d9151b78c9185aa1f639cb53cb91a3c51
MD5 17c36d8d5d6c1f9514ba0bb85e1fc922
BLAKE2b-256 5400433c33121e2af40b818a4c264d401540258313bb84f6d44d2e9f206946f7

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84b4b54736a4e1234756f2bb060df1dabf6d3c03bd9b0af4141d941cad324ae1
MD5 cd421f2ee7bd7da8609c34c1668f5e06
BLAKE2b-256 28d1e299b7bebaf56a08cc8463a05e4abe31f284ac4c91bae74bc4c66a42d9d1

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e99c7d6e8602244798b7b49cf01ea7fc95e959955635d914e093e63972936ac
MD5 523da2949c1d493b221d618e22acce55
BLAKE2b-256 81826b609ffdd12a661e5d5f908566a2ba7dd744109835711b7f9059022e4edd

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a31c4e6be0d15728354be24abc34eea9b63c76789bd48b905dfa8c1d82ea4a06
MD5 fee5a6d3d55d191692e779a04e7f348c
BLAKE2b-256 7dbda74d7297bbae1ff381af8d571216e7f5d33d2d0194f82ca6a7b3304453cf

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 36a8180a0d2d434f65f79960aa28763e459c4bbb4acbb8b02438d9ca19016dfd
MD5 9dd3fb1d80b2d17e6088912553b19a19
BLAKE2b-256 519e7f879575ffed0383ad8b461046c8b743300759c858bcabdc86dfc72418a4

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8fe9f2072b5420d16f7c5f8f2fe1fc72a6445a44d9803b87c711188d30be25e7
MD5 3adf0ebdebe991a2c0350a35b2d1cd03
BLAKE2b-256 7f82636f0a79888afd5efb1af62ddf7cb617b9f2889fad14049ed948c875d48f

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19c551c72e0bd13d2aab2c71659199ae22e64bf4f43b91492b628f42c3f25254
MD5 291e3050ca0652bab359e088bac9fc76
BLAKE2b-256 546f097ca4949fcccf81d6fd891cebfc7acf20155e5494869e8648e89c45500f

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c071b119adc3711ba66b6ef2cfbde03c63e665513afe641cfb35cfdc272eb727
MD5 ca881f7380bc8cca9eb8ec5223c7759b
BLAKE2b-256 4f669c9510aa367e1091d86a8383e4d98c655a5b97a84829cc46a62cbe28084c

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4adfbdf45776f984de8fb2956db368d9667f5324c44850f50ed2cf50ed926b47
MD5 f46050ad414a53b8b812501ce504fd57
BLAKE2b-256 a544fd7d024a96cc27d944eec35675022397f8468de8ded3e0d91a660bb1049d

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 00bfa9d68f14b9b1596aa63d45ac071079c38f9f07a5095db744c69732dce21f
MD5 677082f89a2441ac6abc7a740f2ab2ba
BLAKE2b-256 3f0562cdc66d7977b2efb27e68f63d671762813d83666b393d19b8e46745a391

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8dc637a8fecf9be561746e11dc42afc364fa8d4ab642e288748695890f1f20bb
MD5 baa690ed5ed2051fe01975eef194cc32
BLAKE2b-256 26d54f81a298365402a7be7f5b420dd203fee36645f029382b447e6cf61acfbf

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d7f4dfea74246f22ac712266787c88247e7dcecdea73dec91549d18dd120c15
MD5 1f0c74e2bf21b2041bafcfcc519d7176
BLAKE2b-256 f9fd02bc3cd0fe92f0346d4e46a389e639a1ef28415f6aaf0543664a08c31200

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 14d59e3c1287dab32b2e208ce043036ff90629d3f06301738d7136cc1c2a3e01
MD5 075428505aae4da0b7171f9dbf827115
BLAKE2b-256 7686dd6ce2546ad32a170c28c119d99f9c61e836b58acab75380ef41dd4d745d

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6ed7030cbc6215795b0ec9469b03136c25f110dbe047074bea75b80cf7feaa57
MD5 980d27b6bb8d43ae6df5663a5fa09603
BLAKE2b-256 2296105544aa42acc440b9a906421705e91a32119cba15e97bc07bcd342180ed

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ab08e2f0a92da980220f4be9ca54fc59244a2be1f7a5c3df760a3080d823150
MD5 097a208f2ccf7ba67f45e0b5482c2bc6
BLAKE2b-256 02d5c250304fd95d11d04a6d7cf04f93a0089599e33ee72fa46fa1d22b8a6e8f

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0fc20d8592a8bb4f7cd4f2972fdffea2ce16920afb1b37e811c87d0f159320e
MD5 f63bb2f7f6490cdfeb0f2c56e606b78b
BLAKE2b-256 ffdebbe1d356a04af883d05cfc11a6828b61ca08e672c52fe3896e90743e35bc

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e412d1f9d6c67be1087ccff33be4f60d8d135d30ef15f2ee336772c5c3549783
MD5 ae9da6c2c3c689a147a1f08bee103e8b
BLAKE2b-256 e2ee4f631bdba96675b8fb7767d2eac4ebb9ee3cfb57ade98ab8555d1940b156

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f48c26966d574b3212271a97f03d5fb24cd854bd90cce7f28f0d3cc90f43135e
MD5 b0eaab7732d1e5a319204af68897ca66
BLAKE2b-256 055fd8188b85abae4bdc6fcabd3ba4ff68deadccfd5bcdb566a671e96531d1f4

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b96aa8fc7e2c90b97fc11a9b74aafbff1a1f701b318f6c38c6f57d1b5992e1e7
MD5 0a675d5bd332dfc92097cb593bd4a165
BLAKE2b-256 6b748975cd4f399371d1f427454268a2c38a51c91ddcc6e4701a13ccbc9d1a09

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d6009278cbffa9fde587c8d8d4acb8b727b83aca1f088f42f4ed4d46e276b9e0
MD5 8f1f43f8d54437c213674aec59512100
BLAKE2b-256 c8590a60f9e95d4039da2792efd23ae6cc5439a6104c2b15b49652a3a0c27e5b

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4b59f39a5dc5b4cb04af9c2c3fdb7e9714e3e906f9a9daa9ec8a59715af00da
MD5 29f3fb53278ce3b0b1bbf6aa6c014d41
BLAKE2b-256 2b3d6c33211f162d17a8f7f3cacf71ac4549dddd174d1f9bcc64af8d7e2001a1

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06345d28564916c3ed4db607294078d093144902d1bf773babf6a7ee02ad2883
MD5 898abfbcdc08722c290b5112bf042237
BLAKE2b-256 709a762ad3e6bd9696f6d6eb99f23e2804608b3875fd5c8bd9b0f13f6f2535da

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a16f7db2f0c9b1109102192d264fc4da74bbbb9aa67afbb39cf4dcd772965040
MD5 1ac02fc94b2c8e5834be7bc9dc04a169
BLAKE2b-256 1d4dccbdd403487045385ac653e11ac5644b8947ab9698408760d4f4e42f07ce

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a34c15427c7e57bd88e0286afa57ba65044573f5564b8c1353b0caf635ef007
MD5 363421156d91919c0cb93daeb527de77
BLAKE2b-256 071a9aa61e81c7b0b818117861dc1566d73dfed17161ad29f56c762ef9ecc2a5

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0dae9e476dd726ad41e55c615e78dd99fbbb4b09280105914d801e3aedb94cbb
MD5 6a94880e2c3042e43fd48ebf19c14436
BLAKE2b-256 5b7c2b33a5120e251523deb36480e616f25a307859f7c53ee58b073460946757

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35d3498fa297bd0541ffd8388b92f20c145eee5be7e44f6e03846457aec7dabc
MD5 ddb40fc11d43d0b5ed8cdb74e673b997
BLAKE2b-256 60c9e8243405d7bf80ba32b833f1ff486203140915ae4925f58795daabdbf675

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5f551580faa8ab44962e1ca71ad9d2e543d13fc1d358607a6c546d958d365f5e
MD5 d9e2cd18b74631153c172d9898621a0a
BLAKE2b-256 da94c83b28b061f4c8def492af1adc46621345f42d3f93f166a314524d54ecbb

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4f456ed3194603d4891e69aef7ce9385b01bf373b52c543b93f8c4c9318b629a
MD5 d96d38f79e73f68bccbc1870ec277b8c
BLAKE2b-256 679cbb7d79ca73349d27c3d49fa0a8d2fff8e9e5aab843c9da2ea456d36e1a06

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27e43dc754f8669fe0926062af368e3d9a541cc2262ff08cee4c4cc9bebe220f
MD5 0afe8bb2f52e2fdc1d4059a6681fd9eb
BLAKE2b-256 2bce419877c1702169e1cfbf2846baa10119a3e7baab04165511bc71db7c76bd

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e499a837c129ba00ee537545a4c625016d9d62f5d5e92d0c3e4c8e5e18bebf5d
MD5 45f8226a481fab316b92a377816037fe
BLAKE2b-256 5442a32152af4c65ea8c59ebc6dbb3bb6a74d5f09c739069d6a1774c0d3cd6b1

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e651de34c170b1f66d67abeb8bdb2e4058b29f9950817ab7e34f40fb5c88d5a9
MD5 f6af79ca7c92db5d1be315f5f557c42a
BLAKE2b-256 f3195b7eba5eec9a951c67f48be898baf96b42f31720bfbde36b4826d5e5d7d7

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 701c2e405386acf23e7ff12914dff8b93ba65e4ac26f7fb9cd3881057bbfa087
MD5 a679172288c19472e8d8cf2f2da9edfc
BLAKE2b-256 e1dcad99bb76488195f0891a1e8764cd475fa9e24ada8c6bc4a7aa643162fc8c

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 277b16daee96eb9bd8e65c2b5e453689f223d719e8d3b700854707a0cfa009c4
MD5 b45f6601ce5f33fba95fd52517cfc030
BLAKE2b-256 210ba22b9f41106844a0dfa0c18b1c659eb0db0fd42bc7ef095d33a998f22247

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 974ad52028b99c6ac82449f4af257df28b9d58d13cbafb83b1b70765dcd09470
MD5 17de012fd8e395445f867c69689261b5
BLAKE2b-256 2fb18b01bb9351b1c9e78f3b7ec9a7189f008195d562dbb90a7342a1c3ab6ac4

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18cdfee3c7419582c6f413297c6fed35456b6a9eb8425f2e31c4e1de8ed3f59d
MD5 a4e612756a1dfc3bf3781317f729ea77
BLAKE2b-256 4f9199e598cd178463a185b694c1950d9da2a5de4942c5dda7cd0e8efef5e122

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 182699d42337cd59b4d14dbba35d501ef38e4f31d5bf92469106bb3dcbee0a74
MD5 7b68509d6ab313c9d7756724cc4b60da
BLAKE2b-256 935a61edbe8f3af92c79dc705d5e5dc701cc02c7fc3fe671cf9b8d30099bb870

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db9c40c9e88cae152cca4ddcf7ec8cd5d393b9f0ffdc21457cd1a69957d982e1
MD5 fc7954b381d55a116cbf5044546ca33d
BLAKE2b-256 0f22588e9aafd7310723550dbc4d51a0bcaf85c7279eb397b477a9a890724789

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 92a2df640acab5f9e3b5ad832245edd9fb5d7b878b9e8883ac0f93e031c0458f
MD5 0698c96843cb0150643208809a51bac5
BLAKE2b-256 c6c2b61111e6c30e9ddcbdb71ab3c30866fdc083dd5048b8ebb5422bdee19b51

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5af9e5b07177af3cdb3e3e3d798a11f7616d98973fcf7deb551acecdc6d498b6
MD5 b09d5b0c883981e68d3462a8f2dbd167
BLAKE2b-256 5b07103e91d8ad406e549b1994346a5dbaa46f45580a44d792079e0eb98f8a6f

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1751fb9f10daca12f9ff5a793f7cfb7befcf77d8945af1442567bc07e5e8e02a
MD5 8c62fa5825ec3d4547a341e762f5d8d9
BLAKE2b-256 a3ad96f09ceee68c3addc980ed71bc1bc236dc3e076769de04bb1471ecd94257

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8fdec8be62565816a23052d886889c9fd66a08e337b493b3f3ef0e072bb4fdaf
MD5 f759f97e3d044c556e1d80d4327377a6
BLAKE2b-256 f26a6b74aa2a8a1a8a8864ea0bf54510b7284a2b497328248bb2e4b0b0fbddea

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 57f39eb736cbc763ea3f124826f407a8101b0ca62dae0cf8510074f4af96eece
MD5 b1213d59bf30d6729dd88514fd89f076
BLAKE2b-256 899a2b2dffd00ffe8f4694488027ec3b3b1a7b54231126a4b62a27592bb5a751

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ab78fdb8ad7aa1d274b696d930be1bd895264107ca8273ada0d58fbe12da292
MD5 fe0cf9fdbcdf9e563412715410b21ba6
BLAKE2b-256 d215b710b71d312313587029e18f1544d91b6d3baab30b5082fa02afed219244

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c218387dc1337d2c6d6d667d35fdcc3b48298fa3559166d95cf0c5d76d77052f
MD5 34037365396d83189ced3d73ee1e2769
BLAKE2b-256 b5ea43324a6f1560b7394f472052e729b8f7d7a474c6a398a3fd26edebc18d8e

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11ceb94a29f978dd7602053d59bdf0593046c8c2694b0e4a68c8dbbbe9dbd1e5
MD5 7c4e1a2410fc975348ead0fd1161aab9
BLAKE2b-256 d44b422610281812a9fe05afc23fbe41b5e4e0923ca38287cf14c7c4ffcece23

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1324335dc2e64a3b21f0fd953ff9f69195570dccfa0c9398d10eb51a345f3e69
MD5 8ad1e453cbded60ef95553dce2fe1816
BLAKE2b-256 c4d9bff1ac415ab18fb6e35d812ea3f902fc8d2961f2a0018a2aea48e6c2f6ee

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 627db87ef86c8f065f4f62087cb186f62b80d7ff10e370e4c6117c1a7e6fc5e3
MD5 e69bb9a1424c39420442807fed47f70e
BLAKE2b-256 9643a2c6894a76c56a792f7cdfbaaef2e8daa961a56c8e80428891eed45c1b6d

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4704be5a9ffe2df3c6a01a6fbd00903dddcf6aa7b60a4cfc4a6679f6ffd8964e
MD5 d39ca4a36736b33e3debcd91882ee6f5
BLAKE2b-256 d5dae71b4d0922cd83cdd73937da4466e04202f4ac1260c08022de5a53ecf892

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b29e295ffd311d23d94b402d24cb09e48771e78914beff8bf031d4001cd0d27
MD5 b0290ab74fc5e6c62f28fdc4351adbfc
BLAKE2b-256 d90869910fa6bcac4e2a4991f2eea174ba7fb84185f6c973f3526c0ba6d37b03

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f05f6d7710178e6ee9f3e1651a3a286da8d52a4f6fcfa731b4af9db4f82b4f62
MD5 a22317c26586888fb8c6cab1698e62bf
BLAKE2b-256 c81b20fb371c5ae8799fc9c8f302250a168312fa6a867133afd32d3d61e90ea7

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3688d023a5a72e0c06de726e45b8374093dd2d20d386054eb2f13ada3e3e40db
MD5 acd1d2872a89c2c1b89204654f02365a
BLAKE2b-256 d823a3942049cf42521a9621f623be6f15f193a527699caabfca2d23e6c945e4

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 993d55d370bbeac499538067c772ef546efd48d17934c7021ef4da15f3cfe9d4
MD5 b02546cf5dd75e527119fd20af3d0c23
BLAKE2b-256 a8a1fa9f0e3c600749932491d31faba39815eab3ff7a076ebb9f5eb5f85e8fe5

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: pycapnp-2.2.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9c3d14cd3be44c55e285bac4425d1dc09dcf863b771e7f079ea7402c0e8839eb
MD5 233132c71bedcea8c31661a455a7b5ec
BLAKE2b-256 b83043de22e61ce1abe7dbd8fcad46a2faab64911e24d2c333be14b75481f9c4

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dd8db2cd6589805dcf760762e55f028d81e7777e8296f58d504c71e6900bf97
MD5 02a7d3948ff410c83c90ec8f9ebccba0
BLAKE2b-256 51a68d3493e8c292eb0718959284b04e887232424483983811c3aa071f29b994

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b3d3a4ef98433b47626e2160a35cf54a409f8ef086331645cb8026f6f7f3b9d5
MD5 425c43a257dba6492da69c2e3e0e2bda
BLAKE2b-256 cef671b526f8c014b7df56cbd9eac3f2bdefcc8e20233ae0cb34a93c5adb82ea

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ca5edea0c5146efc608aacf2f4ebac198755b7d5f3c256cb1e8e25e3c9301b68
MD5 369602d476707577da34936c0c6a5269
BLAKE2b-256 9339b2a7ada7e102dc667c4836a1a9305af013da198428c81fa20a0ecd194603

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b324cb5e3f6d9b95e8a08b5ec2d29a5942d70875fb86857930428fe329f5f1c
MD5 041c5b26acb78a8b6c70c68102aa2b72
BLAKE2b-256 fc38ceb09f560bc4bd276221b260f2af2a3a29febc2e44d59c753db49fb6a034

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e31ca081cdc657a586c1f48007c41af61f3e8cc1beb046bd75393076d7987c8f
MD5 755c230bab8ffd53d1308945461fe4ca
BLAKE2b-256 a82b54dd2755cc359337eb642607c5ee92b87e34f04e62b28eedee43c1ebff2c

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc5a45c649378983e30d6d39c2070c9eec64272f49fff6748772d87997d04ba2
MD5 716b9894735f4c652ed2d7a1e7f31786
BLAKE2b-256 11222e3c6ef8612097827b62a51116db7adbbd540414673bc0daebf31598c05a

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0aabb47855ccafc76a11433fa31167e3ffa489f42a1e86baa4c7962708f3b3ea
MD5 c0911d6b3c05d16a0d6fd6e64bba6271
BLAKE2b-256 707f9c755cfd7c4794551228a95b46ac93ae81723ac56b2f3f97fa8489b726b8

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e4c7c346416388a3c12b4adb543b3373a8bb46ddbf395d31e3421aef92faa41d
MD5 c5d928efc6210e1d6975f1fdbc21606f
BLAKE2b-256 5fefd240e9ca8e5b19302cca91df381725e2c797969470e2e28c2d5132421f15

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 daed0b83149a9c355d445a122dd4fa1ddc69800f47b48a50e03b7b46c39d8ab0
MD5 461965552bf9511aa9936e029b21f00b
BLAKE2b-256 87eb6063a26ef1880a56f77c6794d33b5ffaaad772959cb2e3f74b688b3f5327

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8472a48841bc90213462da940dd87246e43688bd6f9e1d66c9cc7946cb90062
MD5 8cd8947ebd39d82f179909432170fbe8
BLAKE2b-256 ab0795e11d259094e119cf7c0e5716a97aee095f2800a215821caa65d6b09d51

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd698578b62a607a33b40fd2e62e213d98c1909a4825e12d853b8097281afe60
MD5 f181e8b2215f965b5ead724b9eb6e28e
BLAKE2b-256 c17a09de340a5799cf070d28625c7576732597c9ddb45984ff6ea914f7399a4c

See more details on using hashes here.

File details

Details for the file pycapnp-2.2.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycapnp-2.2.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2f4b1c1a2be6c1e29e2786bd5be6c01a0cb5cd0546b0166e4cc8ea7e35e2f81
MD5 8df830aecdb498469b723096744c4abe
BLAKE2b-256 1244cc1e239783836aef53a5595e096b714b9640cb7b4a3bf3956fab5a984ba2

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