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.9+ 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.4 (2026-07-03)

  • Fix memory leak in _DynamicCapabilityClient._send_helper() (#398)
  • Fix SIGSEGV (NULL pointer dereference) on malformed Text field
  • Update default bundled capnproto to 1.4.0
  • Migrate project dependency management, testing, and CI to uv
  • Consolidate configurations into pyproject.toml (removed Pipfile and requirements.txt)
  • Apply small ruff linting fixes

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.4.tar.gz (738.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.4-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

pycapnp-2.2.4-cp314-cp314t-win32.whl (1.8 MB view details)

Uploaded CPython 3.14tWindows x86

pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_s390x.whl (7.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_ppc64le.whl (7.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_ppc64le.whl (6.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_i686.whl (6.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pycapnp-2.2.4-cp314-cp314t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pycapnp-2.2.4-cp314-cp314t-macosx_10_15_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pycapnp-2.2.4-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

pycapnp-2.2.4-cp314-cp314-win32.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86

pycapnp-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pycapnp-2.2.4-cp314-cp314-musllinux_1_2_s390x.whl (7.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

pycapnp-2.2.4-cp314-cp314-musllinux_1_2_ppc64le.whl (7.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

pycapnp-2.2.4-cp314-cp314-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pycapnp-2.2.4-cp314-cp314-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pycapnp-2.2.4-cp314-cp314-manylinux_2_28_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pycapnp-2.2.4-cp314-cp314-manylinux_2_28_s390x.whl (6.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pycapnp-2.2.4-cp314-cp314-manylinux_2_28_ppc64le.whl (6.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.4-cp314-cp314-manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pycapnp-2.2.4-cp314-cp314-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pycapnp-2.2.4-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pycapnp-2.2.4-cp314-cp314-macosx_10_15_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pycapnp-2.2.4-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

pycapnp-2.2.4-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

pycapnp-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pycapnp-2.2.4-cp313-cp313-musllinux_1_2_s390x.whl (7.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

pycapnp-2.2.4-cp313-cp313-musllinux_1_2_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

pycapnp-2.2.4-cp313-cp313-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pycapnp-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pycapnp-2.2.4-cp313-cp313-manylinux_2_28_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pycapnp-2.2.4-cp313-cp313-manylinux_2_28_s390x.whl (6.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pycapnp-2.2.4-cp313-cp313-manylinux_2_28_ppc64le.whl (6.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.4-cp313-cp313-manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pycapnp-2.2.4-cp313-cp313-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pycapnp-2.2.4-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pycapnp-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pycapnp-2.2.4-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

pycapnp-2.2.4-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

pycapnp-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pycapnp-2.2.4-cp312-cp312-musllinux_1_2_s390x.whl (7.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

pycapnp-2.2.4-cp312-cp312-musllinux_1_2_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

pycapnp-2.2.4-cp312-cp312-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pycapnp-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pycapnp-2.2.4-cp312-cp312-manylinux_2_28_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pycapnp-2.2.4-cp312-cp312-manylinux_2_28_s390x.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pycapnp-2.2.4-cp312-cp312-manylinux_2_28_ppc64le.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.4-cp312-cp312-manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pycapnp-2.2.4-cp312-cp312-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pycapnp-2.2.4-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pycapnp-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pycapnp-2.2.4-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pycapnp-2.2.4-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

pycapnp-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pycapnp-2.2.4-cp311-cp311-musllinux_1_2_s390x.whl (7.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

pycapnp-2.2.4-cp311-cp311-musllinux_1_2_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

pycapnp-2.2.4-cp311-cp311-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pycapnp-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pycapnp-2.2.4-cp311-cp311-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pycapnp-2.2.4-cp311-cp311-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pycapnp-2.2.4-cp311-cp311-manylinux_2_28_ppc64le.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.4-cp311-cp311-manylinux_2_28_i686.whl (6.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pycapnp-2.2.4-cp311-cp311-manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pycapnp-2.2.4-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pycapnp-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pycapnp-2.2.4-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

pycapnp-2.2.4-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

pycapnp-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pycapnp-2.2.4-cp310-cp310-musllinux_1_2_s390x.whl (7.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

pycapnp-2.2.4-cp310-cp310-musllinux_1_2_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

pycapnp-2.2.4-cp310-cp310-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pycapnp-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pycapnp-2.2.4-cp310-cp310-manylinux_2_28_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pycapnp-2.2.4-cp310-cp310-manylinux_2_28_s390x.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

pycapnp-2.2.4-cp310-cp310-manylinux_2_28_ppc64le.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.4-cp310-cp310-manylinux_2_28_i686.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

pycapnp-2.2.4-cp310-cp310-manylinux_2_28_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pycapnp-2.2.4-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pycapnp-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pycapnp-2.2.4-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

pycapnp-2.2.4-cp39-cp39-win32.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86

pycapnp-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pycapnp-2.2.4-cp39-cp39-musllinux_1_2_s390x.whl (7.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

pycapnp-2.2.4-cp39-cp39-musllinux_1_2_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

pycapnp-2.2.4-cp39-cp39-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pycapnp-2.2.4-cp39-cp39-musllinux_1_2_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pycapnp-2.2.4-cp39-cp39-manylinux_2_28_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

pycapnp-2.2.4-cp39-cp39-manylinux_2_28_s390x.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ s390x

pycapnp-2.2.4-cp39-cp39-manylinux_2_28_ppc64le.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

pycapnp-2.2.4-cp39-cp39-manylinux_2_28_i686.whl (5.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

pycapnp-2.2.4-cp39-cp39-manylinux_2_28_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pycapnp-2.2.4-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pycapnp-2.2.4-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4.tar.gz
Algorithm Hash digest
SHA256 a598bd3952de76a803a53b845c8c300828338b949946d49f8af716328cda0a1a
MD5 3ce23bbcf79adb401d4a9aecfe0de4bc
BLAKE2b-256 a1b6de6176fd9d0a16b2ca03f1f6dfea391ef64222a394dc135c2f7bac2347fa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fbf5e9b3fb43300569a04d015355a3462becb421275a6bd9bf19cb304198e4ad
MD5 313a17cf039e3d8dd657df120668bc41
BLAKE2b-256 213cf766e102bd6c7c2e4b23117fc86139e304d010ddd1aae2345beef9051ea1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 87ec866daf3368e424c911b571faae720e02ac7ac7ac4c9d32d4937a48d5b22e
MD5 60c0161df25798a5908fd441ab52fad1
BLAKE2b-256 f2dd75098b348065f6de8a62afcab73587c7a082b0e83e7015b3c3318a8fa5ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f66d61e9c5a97a1d2902b81d5d002fd9e052387e5355e1d988e28e00c3de8223
MD5 f670be67dc70cbfbcf2e8f71729622df
BLAKE2b-256 07283eda852ad9586f2fc3f1150a8782416d357d65972ee0094362227280a34d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3b52d5fbdf82a56e9fabe84ec3c9574b5efacf9206c1d6f32397f39ad14d8038
MD5 8e8de268e213b4c03de04b45206ac45d
BLAKE2b-256 38e25760ee23a5e6d56a69f384cb7236e4646652b422bd3df3d94226b118fc86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a4e4e091cf578f0c4b60059c8c181f30e34e35b6b74cb67af4ec49c906f52746
MD5 dc72ec044041f291f627f44a466f9e5c
BLAKE2b-256 53ae1b6742fb0c506b9be05dc99eae1f993de3e84627a3fb7b339cf711693900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b86c6f92a63ec07e7a365d8ebfacec180c7f862a77ed25409f13f852e681578
MD5 4297494f9e692ae061e0354081d81a0e
BLAKE2b-256 ec62ea67c05d88325c251ad8a4e2a48783ab7bb86c4549e24ca46fb389744eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96f1566ef6ff0f756c413ad4d9b6e2d49c4d1c1d60c310e14fb0143ba9d23a6f
MD5 50ccc8999b4c5dd5184ce4b69b79a8f8
BLAKE2b-256 16474fa69aac71441a95cd3c429fa7f75c33b23a85c21044a37f7d3e549c5443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5e635e356c68b91381561753c46cf23c59388d13f784e5588685def16ab99ba
MD5 0389065e8032271d9339c34d0d2dc69f
BLAKE2b-256 64a7e954b0364523ae491a880f3354beaf111dd7aa986b0f498b4a7c4d164e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bd84c96509cadfea3c127c9928bf008dc21124f53aed8aaae7f16e08f28d79d5
MD5 aff25d89d1099064fa0a3de89c13fbeb
BLAKE2b-256 56fd3323f03167e4ccd3b13f3d2ff0bf8ff4d071735a44c0f30d30b00c9a9d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8164b020646fb9a366d4976232326fae42c01834bfecf2c5251db23aa9c21695
MD5 1c2a415191f9fc49ae3f44dd2182db26
BLAKE2b-256 f0ed7cd95057740b0338cf11b6531e60bddfc86c132d6a11ea761a6a67def170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ddf8d60b9e698690bca03ffd0c839853151640d7eb3f6728da458e40c2a0c894
MD5 a8a86f1e36777a41063f22005812976f
BLAKE2b-256 bb86e7f2558deb2e08c01e0151332b1ee96d8b237f837319721c1cf159815626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03ff197e3e6e737dbf3748d4d735e4ae778cf4fd16f80ef0bf4f63007903e13a
MD5 5b7840ec9be45e4109417e1730101801
BLAKE2b-256 fa9ae961cb2c2bf47ec2baff471ae75cc505345668bf08d0afcba271a3753035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13297222f4a71ef776a5897c9c84881fd1f16d8cb864e9673e05562cae67166d
MD5 a038011bf7ff1179d059517396ae6a34
BLAKE2b-256 d1c6ce98c5a4842f3ffe6cdd560145001a060721315c07f4201d2bd739e90647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c0fa292ef30ef429bbf12cae3cacae9750f5dca23a1e81f802bf511add50d49
MD5 56b967739e4fe3c4022a09e054d2cc1c
BLAKE2b-256 e6c5c5a719a27dc2a08a1cdf8fe0e2d6ff08b668dc4ecf533215a453f3f7f505

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a3eb38d9b5e81b8ac0b21ee3626c5146cbf675580842cd07039f74d53f4156a4
MD5 62d2b26faedfd592f54177faa9c82134
BLAKE2b-256 beacf4a6eb37458e2b289bea9b3735ba62e9d8498d54e587da66c37c000f14fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7608f8b737fe23b6bf72d06917c10f40b85a835581f98f62cefa5332791a3336
MD5 ceeed7c852a577faf34533aa942c0704
BLAKE2b-256 842753db34226b8aaa82b780da3703d552c9f36e151adc9a725f5088e1a764ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e9212cd6ec0976071c252608b8f96966f7ac33f9a29af72c594ace662514c9f
MD5 bba817da193d66881aec66a017a295a6
BLAKE2b-256 6cddd217545921b7a803ef4f50bc974912df0d671ece217b9a9cb08ce118345b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 64373985fa3a4660e14ec81671e927b422cc4b21ff6f1790287fa1b7620e86a9
MD5 5f050bd53799b15fce63250f0bcaaac7
BLAKE2b-256 ad49040e28edc4672461495916608242f8d56c4b2bb4303c85bf7d65103e4969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 88971e8a4f0c433872ad156ec2af2ea104727708aed9007a3e4100ae47ca2538
MD5 0bd0bc0e0935b1036ce5ea3bc6526138
BLAKE2b-256 b7a6b51a867a7a5b10aef80d1726357a01dc42b0f7deb102308eff601adf138c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa40eb5f44b9f62ad99e7df200a3a024ac3272cdc7d2c3ac3bb74c64f89178ba
MD5 f29d2e494a16d814cecb04a041c1f9a5
BLAKE2b-256 598fd56c8f193d4c766ae4935075f2087515949edf90c24062eff3477aa311d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4221a2abd7bd73e3b6c9fe9484bcdb658d79d2b6174b6ce45cd0cfc6980adfe
MD5 dc1b56f0506164cdf3181446b23bfc69
BLAKE2b-256 bf6f04e7e4ba7a9b4e1edc5ee3f76f9a409c68d11d4cc18e7799ca95c46e1b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45bd2a2eba74f94c96a532af1f8b944fafc5ab74483ed66c2d88bf6606e5a126
MD5 b85331d25c5a25eb75bf576e0e1386c5
BLAKE2b-256 290285440be2c931dba83231f01ca13c28a6d1b94ac5a1de3c56c47e4e4cef3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 411ada8107419076409ffa9d176891f08611550b17e2b6c684eef3ff31e092fc
MD5 b299f0b31bb48e32746d451f4fbf9283
BLAKE2b-256 52b05979b5db4da40426888d9436a53f18b17695487af32de44e1e4709e88ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 40066e7ea9c3d388e2c75d65b10fdde50d69a49eed18ece9044f9cf8fdacf54c
MD5 0f2c13eeada63f79ca8873d0429cfbed
BLAKE2b-256 6063d209c74f9467575761de3bdbc986efebf08b56a43f09ab5668873e69a3a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 38af0a432c5deaf9ad5efb9ec1d2c496eba78cc96a70f896c2baf76de2a1d7b8
MD5 178c319db7a353c74169729d6b7badb6
BLAKE2b-256 0df18e882360e2b105ccac5bb6fd0e8b8cb1a6e3e1e469d8e24134ffb1309fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35d9ac936938783cc4723c1e0a7fa2bdbe5d76803f2f2ba167d1bb070108830c
MD5 59144aef3c0261266165cdaf69366df5
BLAKE2b-256 5ef2e1a7f1e234d429318f5fa82c4367d6890db21a55bd646f5e072c55de12a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 986ec18eeeff3ede2a0d82a4b77ba18c318a26514f49d705491d4342b0d04d3d
MD5 e39f5f256699726e41bc3548561e0367
BLAKE2b-256 29da415b4b051194ccabf7a23484aff6ff79a6a9841d779455e03bcaa1d86de5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eae0d12142e529bdca858ae29cdc3969314a17e64e7256fb88e82c684846ac1a
MD5 54dadf75d3ca0b5962b674317e838ac9
BLAKE2b-256 59b969eb374be7698e3d85a605af5dd3ba86cbe2a3682ba7fc4876d4bf5beef8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99fbd0d096cafd63c63edf0be6f82214c1b390f9f61d686146518c971e59eefc
MD5 dfa108d66b4472c97fa2b3ab17dfab57
BLAKE2b-256 76ac26ea5ae9f52d7836d489628f92b02879fb39a82284d4e806a360d80fa234

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5a90625741062a28d859b1694903b4c84f3e70023661839a3c73635ff67a5e47
MD5 c75e8cfb2b3777d36ac7c955e6e9e960
BLAKE2b-256 83686271db9461172d6b03612759ab2cf967318c72aad8f9db7cf26ff5486dc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6724b5665f6a1adb8f7bc574f3b223a1f21c07294040fbd4e08885b754f24c45
MD5 b81d4d3ab7a623f60b2c31cb2dae8d02
BLAKE2b-256 7341d0a57aa6f24a8ff2ea584f4fc838058423f026ccf13e8d6eddd1565f1fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2a32cc049ccf59f4c7390197e66609f87a4b979fe922fca8328a6dabb8c644d9
MD5 330131085d50fddadeeacaf7b537d76e
BLAKE2b-256 41caf32c26f828a1e406e2a181a815431ef00127835dd6e78765550bbee36b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 517d812d53d07e800c8ce9fb156b027f208a0b0a62e725bf85a2f3d051057dfb
MD5 d51628118d733f8bd22d2bef2b69e20e
BLAKE2b-256 ee06bb996d95aa984a6b3896c8f953d2e334954d6ce441fe07360945567f0671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11eb14153884d19771aa7e92e8601d084e6655cacfcae1441c165953d2b8ce3b
MD5 b100f872f72a7a7753ac7ac656ca4913
BLAKE2b-256 ac1971ac1b2bb54ef67e21b0d8254030a950fd2c998aacb4ae5d9583127ede84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 181326bf648a65398eeb9144aa8c55dbc0b8c58c7991d3f91fa60275591648e1
MD5 5919013281465d33c6737c0a8aa21ab0
BLAKE2b-256 4845a950f5687699f1a98a6d9826f3fec16eb8fdf9c8254f67afb9c98b0ff10b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d5444575a2f9c2f1cf50c99ef08d9a76dde47a3a13fdf02909fe6c6e1b69901
MD5 f3e19723c6aaa94c22528498f9a0db5d
BLAKE2b-256 6f200745b69c093e8d315bc72443c13e46b47838f8a0d8bf05f7453273b74e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ddb3a39941af3bb23ca598f1f9e43246e7e212937c53ba3cc4b5dcfb7419fe56
MD5 f324c24e6227f22a1ef7a8d16e1fbdcc
BLAKE2b-256 2be8d1ebb880fd7860b09c7fc4962f5f941dc14e8cc8b8d124684e9c46bc3808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c270456d650c7bd19654b6edd171bbda0e4de76d3c243be1661e6ef643c3278a
MD5 e2205805593a2ae3ac3e46dc580f19d1
BLAKE2b-256 f22192c8e94fe29587eb54bf8bd47ab21bfd5e92a633205a8fed1608fab380f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b6f2f09684b96dbd909423b83b3623c61bad40f88ab834470c7347e444f143bc
MD5 3e313252bd99bfa1d9d2d9d57424903e
BLAKE2b-256 9dee8369fe8116ff09d61fa8065502f043d55937ee3512a04e393eb641e2931f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27db8ec75f252337612db30af95a0e12a0a20afdb9ae4f51c7086dea1e626f77
MD5 8253b798569bed68582be57766edf0a3
BLAKE2b-256 955c601967f085c26f3cc5293841c2b2755ef51782a8cbc6ec72cb5a2cf92d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b513e7ba63b8d2a4832d3dc1d683bfbb28df1e34d79eabbbbaf08ba058fb9afb
MD5 41ea288014002e6efb9b8749857e10d2
BLAKE2b-256 a72c4349dbce7e7068b1ccb297ef9a645cff08f213a3e30a6d397a8f6326e12e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f001ec86321ee9e6a8f86ff03fbd76e0de2d1d0518e83f3901cb5b7111d9460c
MD5 d27710ab22539122e54b8a99bf3b06bc
BLAKE2b-256 25f23ed6394e3df3cf1b85168fd57d75a7bcfc2f9d494689fa32b0d7ea9b6691

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bdcf2c04bbf92b075581c8325708cce3093d073945057c9ab5bb6a80f74b06bb
MD5 87f0bdcdb19b587423bda5e6f071c64d
BLAKE2b-256 eaafe3aff02a283e6a71604baa5631f924b8d5cd00538e119b375fef90218ec0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4d50c983c2564e4fee209a9de44fee30009e15cf1af788d38ed0caf27b5c8587
MD5 906b5c0859f2b928ef70a66c694dda26
BLAKE2b-256 214d45bf451720b7f1de33ade1df291d0806a71bd1e249fbd5ce50e53c94fb4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24003799334310d7760d0bd5896773051afa93c28b17c5e5fd2ec2c9f6df50cc
MD5 02be0f038fef0e56e73b171199aa47d0
BLAKE2b-256 1fee823f3823b977681bf569623c2fc6e07e38853f3aabc8515944da1071653d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 70a6bc1951ca1b7579bc053bef9d97ee72902329ee9eccf21533881a3b051b9d
MD5 342893e9bc442a571d8edaff71088204
BLAKE2b-256 51bb746b6b5169e7fe8ceb518451280a4712c9e09049ca921592ab60ce258598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a22d39d36c6c07cd0be934b7c82999faa8d38e16a6808d5ee7d88e4a84c7ef95
MD5 c789ce915a9d0ff7252606ae02df9992
BLAKE2b-256 23ddaabedffcd9bc85184a626d638d76fc35ac1201af07d00feebb804b661bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0ecb2636231c27f0551a4b7df92384fdf0637ca5b2fad996e9450aedc4f2447
MD5 3c2ea54a76681547cf9de172a83d4823
BLAKE2b-256 059877e6a4041ce04b84175ac8856e6c5f520c30a72c986eb826152b410ea41c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f76823b5ce17ab91d3c69849d906ad872b2615167c21e436fa432f84373d3f46
MD5 dea4697a42b54b25efe0a3fa4029c87d
BLAKE2b-256 66ac35525c61456c1c4b272274af9212ee9443c0edbd611f43f9bca0afc64b3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80e12e4713dca8683188aae7dd883b25d9175c1b41455af2b5d5a35dd0d3c42a
MD5 835e41e6a731265aa381905383f4b5f7
BLAKE2b-256 7db7d4386d6b47add50d659a5f8b331b8f3a13f8de4fa8c2d67b88d5ea5163e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3e78f352005b731d475e0589d70dc6e0070d0e8cc5cd5e2d8b45222286413145
MD5 9ba34d3d4cb12642f39066fd579b1534
BLAKE2b-256 9a98342c6a297ac1e03182fd8dd4fccff44bd5627540007b1963b58a7fbdace1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7f65558d2da2df1bff585f204007c9bf9c8492bf9d47041f31041f41991cf242
MD5 dc853201bf590701d9ae8bf1fd49d588
BLAKE2b-256 bbef40ed7ce9d9e9b2804e2f1f78f3a39f5aad8ea0452813709327b3fd627fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ad8d314b92301c76839a09c6924d949d65686938250aef9569081ece3776ac04
MD5 f1549d7fe533c51c477ae4786edd8a98
BLAKE2b-256 db4679016a372293d62eebcd5d3bc0066b6b0b96c661c46b2fcfa657dd9ee565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef67d39da054f0b2ff4b69a4c6e20e993246a33c57f45f2b2f323df2ea4c7d5a
MD5 d59c543843d917fae4f57815d948230c
BLAKE2b-256 df62dfb4fa3cc6b246a1b0a0166e50b2b5b3c5217d82b7ca84dc8dbc3d57b4eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e54b87f5e2ecae92a6288fd0c25efff3bf3655c65cda710045bf02dd0226975d
MD5 0979fd5dd49d037688636e483383e4e4
BLAKE2b-256 09e469d8bb4bf0c45b9ab9c11866b26567d456c5a6a1def98feb96b4c4681721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5ce72f99b089966b27e43a95911f2f448c2167ed9e56355b626423ab197c729e
MD5 52ec9baf197be5b54d6c5e2c1d33dee8
BLAKE2b-256 fcf76e9db433fd206f08bb24239bbbf37248211fb05e43b91a3eed29ea0777b9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a2e55f73ed816c0d42454f4a68fc2fc7f9d1598afaf53625e0a592932e96b83
MD5 814b628b00ec3343739fc014dcf00721
BLAKE2b-256 b230f1bede85540fa9c2e25bdf0c62cf694d9a031f260e99d93f37f90b543445

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f892295724bb979115de689876c181dabc6b719b01d896af5d3269e710ccb526
MD5 c2019023ad56e90faa4dab79d244f929
BLAKE2b-256 59b701160754959db318f18538af0182cd99ac3666cdab215ec6c55dfd2dcb36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31c3a9bf6a35b0d640eabdb58f804253fd6037658d19f3cd1c4437c25a574267
MD5 5e33faecbd0d14f6c76b5ca2e2aa68b3
BLAKE2b-256 4dd48ba2b96d18b558e4180496ff55a4745383c7413b4c50ffa583de838f603d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 796828ce481bdbe41603ccc9bf68ca837925f0ba132e426ae69f8af1158061e5
MD5 2d9a7859d97719a799f9905c79c6386b
BLAKE2b-256 41acacf8725b76759329437974ff563172adf364b717ccfc733db59bb0209066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 514dbfb866a1dcbac3efc22296b44977aebaf43cb71be8b6ea3bc70b19b5c6cd
MD5 b7b95787911b367bd9bec8efa4e86df5
BLAKE2b-256 d92a6c5287f6dd2a01c71d6098d4ef5d1885a74ffd56247c4c9a7d98a26013f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69531f93a7a2e4206caad035ce20958f38cd2c21c12ccd65cce690cbe2edc061
MD5 a5c603b7a63d5f4c01464351effca848
BLAKE2b-256 cf9a7404f91d3b3d483cef95e13d57c069561b9160ecbe3d7363356f6d96680a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 767ce1fcf433c2e56dff5af538048ad75122971576bfd89c7c2566d12504d0ab
MD5 a8b133a812c5a569c28a8ed141c27b40
BLAKE2b-256 73cae4e8e3f8674fbb61ed93447f9684b23c08b1d217cfeadfca8dbc4e044670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7055771afef9fdfabedcabcde0c11938c016779cd512d93e3bc04d6ac6dd65d2
MD5 7ceaf290e67eacbffb2d7dd3b032226d
BLAKE2b-256 f90167dfc72dc783bf4c08f6b3efdca52718dd2b5bb72260c3bfe839f8ba66a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d4ce157c11877ad7dd23f71af47a66136eb848b562787bf62125227a15052389
MD5 fa454f3e34955e508062810231a77585
BLAKE2b-256 4d7960f958c81e9f9feacea6ce8fc641133737c027de35194a4676bdd04940f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e63373c00b7c47d0b6be332d5fa0ea12f03d8fc53e3c1b5c54f23e739854b5cd
MD5 990e2b5757557babfe1b86c9b6bca04d
BLAKE2b-256 5f34242a306e9ebc9436d10c831866d04f70ba99c26efd50d7326674ae359bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0d7691b608c22fb3e6b737d1853efdba7bb86eeef06f2e025f4f6105d9c004a6
MD5 24300ca05a91a7eae7da1842515122de
BLAKE2b-256 5592d0558ff8f4dd162b9781f63c06248380e62ddee17a77d40cd49c2f690724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 780cd9207ac5eb1baad5013d4bc0e4ba67235cdc054e01ec4d6ba395de42ce6a
MD5 424a5b3a3a998f329d43526e8a032c7d
BLAKE2b-256 45fd29715275e5953e94a506929de3c187de41d9e505960b9885c26c866a9582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d7df5d9a3c0ef0cbd4ca98453ea497a621fd362e6114299dd494193b26c8733
MD5 fc850411e5c971d4d16548911e1b0f76
BLAKE2b-256 a90b3a0f90aa2d73b7c722b25fad551d4b2981f4c73446ced9b0d4762718e43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b246680666335e95086489ad34c71a53436dd6e70b00a042377192176acb5ff4
MD5 c64616b41ea0f152fc6c68c1dd982442
BLAKE2b-256 186d665cc3cdfc518253c3ea69880bb0376105f322885459a370b2b39ac2ef02

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7caab6e296c255af89774f09fd9baacc8b02dd770a0eb32193d75d8b97e9d1c
MD5 89a54603b3208580306b3c5ec8314670
BLAKE2b-256 f2a4f89ce1d3163c468d5524e9d5a23b003ee8ce0ec766781028c1e320152a27

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4ad979e26dcc07e4c09f7e33ffe06cbc6e7e918f170e0e90a4448fbdda3770e9
MD5 77c1fd75b86246e492df56fe4233ea3f
BLAKE2b-256 32de0674b27f2aa1300564385828f8dd89ec50fb536780f29d0e611d69b600cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa093ddcbc83ec374168c30369762725eb5fa390ac2c680753e6cea9a5611dc5
MD5 d433eaacccbc69fb6fe0b2db478344c1
BLAKE2b-256 d4f11e8f02b1a952a106456b26642e0a66efefb352221fae23792482236aff48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 51b382fac364146b87df3f43788a44d38c791dd8e83481371e994eea4426aec1
MD5 275e6ed4d214f055f6dae72d845d912a
BLAKE2b-256 4616f897e1082738fd2146f67f548cef7591f9ad41ed413bbb5558e1e9d86f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e9953c0db832567e5dc7f75be1313729bb2efa8977198701e7b70771270e528
MD5 ac0c88e5855e236ec30885d2a6ed61f8
BLAKE2b-256 8e59342f29f488ec44c037ee22e7257e2243d489d503d13248b3084a57344a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55ab10f98146368ad22b59b67811e0425e5c266ba869e2f4307c5b83be9f91c0
MD5 db13c99c2b1c17469ef31dd93a46d2dc
BLAKE2b-256 168608aea5a40a61a9541047d06fc8cfd34291e5b0dcb4fa945e84af02ad830e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1c85bc04365cfbd5430001a3d482a1babe546f75f7e5a2cd33dd2667395b86b
MD5 6d4ce34dd11ab8d0203bed761529e458
BLAKE2b-256 7d15b9f014e97ebb24b7cb9ce1d26f28565296f36e3a2de95152eb9fcb9c80bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d59c387782a61af813ef8fef0e74f75b38a3bce5be54bfacd266d88667b1b07c
MD5 49be7db7c4de6cee70445643df45a60a
BLAKE2b-256 ddc42d896c47aab7f725b372df9764258cce663dbcf359c5c8039d65b4941211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 584edadcc15379fbafbe6924c3c554535884e8983403d200e2f14f13006decad
MD5 9e808c0d3796e42dce19b1ca5d333b77
BLAKE2b-256 a3894f98007833e452c22dcc91c2b94fcf5f7766df178fe8af5dfae221e7173d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f8c0954835a712f0fd464cd448669fbdd56c95d9eeb201be8111763992452405
MD5 decbff3aabf659b68099caaa080c24c7
BLAKE2b-256 f53e3b64bce6c63d04bf1e81b42854834dba57e72aa8e33c3a494cdce64e4c32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 40088d6d781d3a808ebd976f9aba711b1f7b05dcbc24cad39715062505ec1471
MD5 74502b09ad8cb717bdd6baf58b16d985
BLAKE2b-256 b9d16bd56daeb9538812e3e2c63fa6a9a7079a3d6241267f88b23d88751959a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4da9b6f9739fda6ab15200970597e6d7703534aa828d68660406a15801be5aa4
MD5 a612ff5dfdd83c083ca01444b7aed1d9
BLAKE2b-256 081ce9c6d19fc949f85fee42f0a2f45df61b1f6dca4311d78b106cc95545ba70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0cb4ba94a9ac544f7db1b066402c0f00adbf77d047d19ba6a451e9f8b4dfd33
MD5 d4c7423427c3093a546fdc5c0eaaa58a
BLAKE2b-256 07cc2744f4ff7ec7441bafac11d3d825fcf7e6cebf4f041015a57b2d983260da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4c503cbf4b9f19fe9d289201e32fa4e2d979a2b01bdcdb8b370f13a5c301f0a
MD5 2dca795a726588bcd247c9d043dc93e5
BLAKE2b-256 84883ab4dbc1486253d562f488ca0700fe0363396d0bd26af4b388026e408d52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7440087acc945977388b6328819f43c85ead4eeff033739cdbf717b043846838
MD5 eba462cf2edb509c6e57e496d1d1f4aa
BLAKE2b-256 0708efd09ed7bbf176f6e63c90b8cb12286332fd2e3a6700d98870c6f9a0c8db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b72a6f2e23b8c8bb4ea5e7e122cb0d3b80565a4dadbc88d3b34642a2ddb7e75e
MD5 05e55afea0e6dab7bf0bb7bee78987e0
BLAKE2b-256 c1f94d4703cb955ae95e74017257f6295d28514d3436341c2bd9820b22d9ed65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d1afe4f5005404e4a57f1379771e48b9a2d6a4ea7ab5b6e5a19cd8f6a6964b9
MD5 c882c5e1495062d5ea7d5de743e309de
BLAKE2b-256 4566e31011c6dbcab197cb1bf36459eb1c251edc89daa12c7c2907959723db6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d9aacfff1391c95ec0d07f5e23f46ce935d3a669452948b0d33d3a5549a6e54f
MD5 b5dbff699acabe0acdcfbffbf447d159
BLAKE2b-256 10c93a2701cf1ae5558a04e979ba43c0fba0bd9b93f7e1d809e4a98be41d4728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d496a669999fae0fabc1a3f1d851606fabb3dd5d858fa6204ddcb402ad2ba18b
MD5 357aacc6166f8b9239ecb607acbe5c83
BLAKE2b-256 bb91c8a1e77b3e37be10845ddef2afdd15274e800624d15cddf9e7870f0cbc72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da740b16208730c14941fe83a317e601e4f301694155bd6d1462a76f60040dfc
MD5 0a945b739a1e68fa133ad2e53a5a4d4a
BLAKE2b-256 f2514b18e1a9a1df1aa9e7fd052e061097ea2167612d8ccd200382bcf980ef27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 675f38a9b55bb69763755d844c196ebccba311872b800cd2f0428912b7a31415
MD5 13a8837cfeca0c91ee640bcc8e777dd1
BLAKE2b-256 40ae84581851683a3cd9eae4902e8d379c3ff3bf1b604ba36251aa33ce8ebcec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a8e1e18d5e7e323876c82d793b67d4e6fc6d79ff8e71c40a083dc346a1d897f
MD5 3c16d97e5a3a0b0c30b2a963ee3bc6dc
BLAKE2b-256 06f10279237fc771914d9a7142f33cee79aee456f1b0a541f7f8cda4c5ad4eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 93ea4c25e61ee9a4308efefb1baf692ba25085038c17864b3ae4eb29c30f6568
MD5 70967bd39ea522a32f8be5ded4f632b0
BLAKE2b-256 c4360ea36638f83e63b00a5890fda05f417cbe8184489c30bea3ef9456233016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ba0b2fb98426e67b14199c42efc7cf8f1b5f240800d3e6f0874e9be08ec95aae
MD5 27e7744b27d68fb48e5482d279ac630d
BLAKE2b-256 e26e53c22129c19394d8847a73752d3e92f0a170c02a323be0d7247b42c392d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3c92225f7be587b483cab72206e78f0a5a70884e25de1dd1cd9d46be75e53aeb
MD5 db4ffcebc83016ac474dc38bc311b3c7
BLAKE2b-256 0c95bacfadac607ee1f93458648d45a6e3e5664781323613ec2a02e87e33df08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31d1fcebd926c280378000d46f16c7637ce0fdb9c74425c074f6ad532f957e18
MD5 0871ef74648d9b407e42411bc36d7fbb
BLAKE2b-256 9a896e4217d75c653f1c3e3840ff60ad48ee5b0b2739a7d05b29d5bd1326f960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f05ea55c89ad197ba39e62da36145a907bdbba03711e0101b118f26986a8375
MD5 ae3aa6f2fa8dbc6e02c9b5f1559cd335
BLAKE2b-256 705a41e18936d6be377d89cb420954552e509ae3cbc3a0a7e3aeb60958cf4cb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycapnp-2.2.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 026074658a2b5da82bfed604e5d3e59979b43c4bac11197d1f3bc8758416e07c
MD5 978238574d6af4d8e930b36509c612c8
BLAKE2b-256 549c34a73c85f428b2a48a1b7632520da82e69018f0747959dbae9d5289c0f65

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