Skip to main content

Ultra-fast websocket client and server for asyncio

Project description

picows banner

tests codecov pypi downloads docs codspeed codspeed

Documentation   •   Issues   •   Discussions   •   Examples

:zap: Introduction

picows is an ultra-fast, lightweight Python WebSockets client and server library for asyncio. Originally developed as part of an algorithmic trading project, it features a very efficient C implementation, a zero-copy interface and all possible speedups for the common modern CPU architectures.

With picows, you get unmatched, best-in-class latency and throughput!

Benchmark chart

The above chart shows the performance of various echo clients communicating with the same high-peformance C++ server through a loopback interface. boost.beast client is also included for reference. You can find benchmark sources and more results here.

💡 Key Features

  • Maximally efficient WebSocket frame parser and builder implemented in C/Cython
  • Reuse memory as much as possible, avoid reallocations, and avoid unnecessary Python object creation
  • Use aiofastnet to achieve excellent TCP/TLS performance regardless of the event loop used
  • Provide a Cython .pxd for efficient integration of user Cythonized code with picows
  • Ability to check if a frame is the last one in the receiving buffer
  • Auto ping-pong with an option to customize ping/pong messages
  • Convenient method to measure websocket roundtrip time using ping/pong messages

📦 Installation

picows requires Python 3.9 or greater and is available on PyPI:

pip install picows

🤔 Getting started

Echo client

Connects to an echo server, sends a message, and disconnects after receiving a reply.

import asyncio
from picows import ws_connect, WSFrame, WSTransport, WSListener, WSMsgType, WSCloseCode


class ClientListener(WSListener):
    def on_ws_connected(self, transport: WSTransport):
        transport.send(WSMsgType.TEXT, b"Hello world")

    def on_ws_frame(self, transport: WSTransport, frame: WSFrame):
        print(f"Echo reply: {frame.get_payload_as_ascii_text()}")
        transport.send_close(WSCloseCode.OK)
        transport.disconnect()


async def main():
    transport, client = await ws_connect(ClientListener, "ws://127.0.0.1:9001")
    await transport.wait_disconnected()


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

This prints:

Echo reply: Hello world

Echo server

import asyncio
from picows import ws_create_server, WSFrame, WSTransport, WSListener, WSMsgType, WSUpgradeRequest


class ServerClientListener(WSListener):
    def on_ws_connected(self, transport: WSTransport):
        print("New client connected")

    def on_ws_frame(self, transport: WSTransport, frame: WSFrame):
        if frame.msg_type == WSMsgType.CLOSE:
            transport.send_close(frame.get_close_code(), frame.get_close_message())
            transport.disconnect()
        else:
            transport.send(frame.msg_type, frame.get_payload_as_memoryview())


async def main():
    def listener_factory(r: WSUpgradeRequest):
        # Routing can be implemented here by analyzing request content
        return ServerClientListener()

    server: asyncio.Server = await ws_create_server(listener_factory, "127.0.0.1", 9001)
    for s in server.sockets:
        print(f"Server started on {s.getsockname()}")

    await server.serve_forever()


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

:construction_worker: API Design

The library achieves superior performance by offering an efficient, non-async data path, similar to the transport/protocol design from asyncio.

The user handler receives WebSocket frame objects instead of complete messages. Since a message can span multiple frames, it is up to the user to decide the most effective strategy for concatenating them. Each frame object includes additional low-level details about the current parser state, which may help to further optimize the behavior of the user's application.

picows doesn't offer high-level features like permessage-deflate extension support and async iter interface for reading. This features are often not required in the real world, significantly slow down the data path and make impossible to do the actual zero-copy interface.

High-level features like these can be easily implemented on top of picows API in the most suitable way. Check out topic guides and examples for the most common usage patterns.

:hammer: Contributing / Building From Source

Contributions are welcome!

  1. Fork and clone the repository:
git clone git@github.com:tarasko/picows.git
cd picows
  1. Create a virtual environment and activate it:
python3 -m venv picows-dev
source picows-dev/bin/activate
  1. Install development dependencies:
# To run tests
pip install -r requirements-test.txt
  1. Build in place and run tests:
python setup.py build_ext --inplace --dev
pytest -s -v

# Run specific test with picows debug logs enabled
pytest -s -v -k test_client_handshake_timeout[uvloop-plain] --log-cli-level 9
  1. Run perf, see call graph
$ perf record -F 999 -g --call-graph lbr --user-callchains -- python -m examples.perf_test --msg-size 8192 --ssl
$ perf report -G -n --stdio
  1. Build coverage report:

Building for coverage testing requires enabling line tracing in cython, which significantly slows down extension modules. It is disabled by default. You would need to rebuild specifically with coverage support.

python setup.py build_ext --inplace --dev --with-coverage
pytest -s -v --cov=picows --cov-report=html
  1. Build docs:
pip install -r docs/requirements.txt
make -C docs clean html

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

picows-1.19.0.tar.gz (59.4 kB view details)

Uploaded Source

Built Distributions

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

picows-1.19.0-cp314-cp314t-win_arm64.whl (158.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

picows-1.19.0-cp314-cp314t-win_amd64.whl (203.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

picows-1.19.0-cp314-cp314t-win32.whl (174.9 kB view details)

Uploaded CPython 3.14tWindows x86

picows-1.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl (226.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

picows-1.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl (212.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

picows-1.19.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (223.2 kB view details)

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

picows-1.19.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.2 kB view details)

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

picows-1.19.0-cp314-cp314t-macosx_11_0_arm64.whl (188.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

picows-1.19.0-cp314-cp314t-macosx_10_15_x86_64.whl (200.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

picows-1.19.0-cp314-cp314-win_arm64.whl (150.3 kB view details)

Uploaded CPython 3.14Windows ARM64

picows-1.19.0-cp314-cp314-win_amd64.whl (170.6 kB view details)

Uploaded CPython 3.14Windows x86-64

picows-1.19.0-cp314-cp314-win32.whl (150.8 kB view details)

Uploaded CPython 3.14Windows x86

picows-1.19.0-cp314-cp314-musllinux_1_2_x86_64.whl (224.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

picows-1.19.0-cp314-cp314-musllinux_1_2_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

picows-1.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (223.0 kB view details)

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

picows-1.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (203.5 kB view details)

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

picows-1.19.0-cp314-cp314-macosx_11_0_arm64.whl (178.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

picows-1.19.0-cp314-cp314-macosx_10_15_x86_64.whl (191.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

picows-1.19.0-cp313-cp313-win_arm64.whl (145.3 kB view details)

Uploaded CPython 3.13Windows ARM64

picows-1.19.0-cp313-cp313-win_amd64.whl (166.9 kB view details)

Uploaded CPython 3.13Windows x86-64

picows-1.19.0-cp313-cp313-win32.whl (147.4 kB view details)

Uploaded CPython 3.13Windows x86

picows-1.19.0-cp313-cp313-musllinux_1_2_x86_64.whl (222.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

picows-1.19.0-cp313-cp313-musllinux_1_2_aarch64.whl (202.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

picows-1.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (222.7 kB view details)

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

picows-1.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (200.2 kB view details)

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

picows-1.19.0-cp313-cp313-macosx_11_0_arm64.whl (177.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

picows-1.19.0-cp313-cp313-macosx_10_13_x86_64.whl (190.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

picows-1.19.0-cp312-cp312-win_arm64.whl (145.3 kB view details)

Uploaded CPython 3.12Windows ARM64

picows-1.19.0-cp312-cp312-win_amd64.whl (166.6 kB view details)

Uploaded CPython 3.12Windows x86-64

picows-1.19.0-cp312-cp312-win32.whl (147.4 kB view details)

Uploaded CPython 3.12Windows x86

picows-1.19.0-cp312-cp312-musllinux_1_2_x86_64.whl (222.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

picows-1.19.0-cp312-cp312-musllinux_1_2_aarch64.whl (202.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

picows-1.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (222.8 kB view details)

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

picows-1.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (200.6 kB view details)

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

picows-1.19.0-cp312-cp312-macosx_11_0_arm64.whl (178.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

picows-1.19.0-cp312-cp312-macosx_10_13_x86_64.whl (190.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

picows-1.19.0-cp311-cp311-win_arm64.whl (150.3 kB view details)

Uploaded CPython 3.11Windows ARM64

picows-1.19.0-cp311-cp311-win_amd64.whl (170.1 kB view details)

Uploaded CPython 3.11Windows x86-64

picows-1.19.0-cp311-cp311-win32.whl (152.7 kB view details)

Uploaded CPython 3.11Windows x86

picows-1.19.0-cp311-cp311-musllinux_1_2_x86_64.whl (221.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

picows-1.19.0-cp311-cp311-musllinux_1_2_aarch64.whl (207.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

picows-1.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.1 kB view details)

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

picows-1.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (204.7 kB view details)

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

picows-1.19.0-cp311-cp311-macosx_11_0_arm64.whl (180.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

picows-1.19.0-cp311-cp311-macosx_10_9_x86_64.whl (192.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

picows-1.19.0-cp310-cp310-win_arm64.whl (150.2 kB view details)

Uploaded CPython 3.10Windows ARM64

picows-1.19.0-cp310-cp310-win_amd64.whl (169.1 kB view details)

Uploaded CPython 3.10Windows x86-64

picows-1.19.0-cp310-cp310-win32.whl (152.6 kB view details)

Uploaded CPython 3.10Windows x86

picows-1.19.0-cp310-cp310-musllinux_1_2_x86_64.whl (221.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

picows-1.19.0-cp310-cp310-musllinux_1_2_aarch64.whl (207.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

picows-1.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.0 kB view details)

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

picows-1.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (204.7 kB view details)

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

picows-1.19.0-cp310-cp310-macosx_11_0_arm64.whl (179.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

picows-1.19.0-cp310-cp310-macosx_10_9_x86_64.whl (192.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

picows-1.19.0-cp39-cp39-win_arm64.whl (150.7 kB view details)

Uploaded CPython 3.9Windows ARM64

picows-1.19.0-cp39-cp39-win_amd64.whl (169.6 kB view details)

Uploaded CPython 3.9Windows x86-64

picows-1.19.0-cp39-cp39-win32.whl (152.9 kB view details)

Uploaded CPython 3.9Windows x86

picows-1.19.0-cp39-cp39-musllinux_1_2_x86_64.whl (222.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

picows-1.19.0-cp39-cp39-musllinux_1_2_aarch64.whl (208.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

picows-1.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.9 kB view details)

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

picows-1.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (205.3 kB view details)

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

picows-1.19.0-cp39-cp39-macosx_11_0_arm64.whl (180.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

picows-1.19.0-cp39-cp39-macosx_10_9_x86_64.whl (192.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file picows-1.19.0.tar.gz.

File metadata

  • Download URL: picows-1.19.0.tar.gz
  • Upload date:
  • Size: 59.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0.tar.gz
Algorithm Hash digest
SHA256 990527f08c7ee4995270469fec24e15b870719a2eb02d1ee3b387c6df4bf0ec6
MD5 20f7aa8dd53f4c531a98374b7d2b6324
BLAKE2b-256 74736663400dea5465222b7d814b69f1c7307f39b0fc5acb31a6eafde7c5a8db

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0.tar.gz:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: picows-1.19.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 158.4 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 df737f2bc921d27f044a6bcb9cc07a5e867e18b96a9fd56ba35f7676a5be6e0a
MD5 987dd0f3c1562d4dfc0ffa89f3bd0b0f
BLAKE2b-256 b94cd4a3c10ea9ca51f7310bf32b491b4d11b4b837ccaf46bb741d7fbbd18cc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: picows-1.19.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 203.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6efc102ae7de217d836df510f3cff600bf6379e8f12f400700752232220df71a
MD5 5260ee62b00e757955cbb55fec4a12fa
BLAKE2b-256 1bd5d16dc5c9c8f1c762abbee9b3d866d0b3d42a2ae7fae34c0b29c010fe52d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: picows-1.19.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 174.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7cae32dce47105c336ec19944883b3951029cbae46755b98edfc672b8f6bff6e
MD5 7d8b5d17f293f99ae85350600c814a57
BLAKE2b-256 799d2ed46ba261049fa81e4c4d6abf73f3fd6e17fa5e6592e552d955ad4d7d41

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314t-win32.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c024df1024eebf77943a9e4737330c13cff0dc64928e96cf8eab2339596190b
MD5 700f4e6535a36571e0eff3d81872c817
BLAKE2b-256 89590e9e9e3cabcdc7c05e93eb8f5fcfcaba5f129c06b9815f7663417e4ea51f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1e28a7bd5c261b003ae845a0b2feb41f253134e2494bd45e6061fea40e865bc
MD5 995e70c4ee390f2a6cc589a27c53b47f
BLAKE2b-256 50406f4e3044ff653b241307e0df89e70e6ad790711bec3f304d239961ea6884

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83b206a0be41a1b5bf59013e5858e2d5d5e82aafb1a34f39027e8e2ff902cd92
MD5 1e62c1b2733f1e54d791c022cd759d7d
BLAKE2b-256 299b24cfe21d570f4fdf17675b0cad5f2012bbc70ef19548d9c970b1ae711252

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6733574b078587ba4bada5ec6de1714ff1c36571bec420f16ea31b368a814003
MD5 e2ebeb9d007a2522812fa6ff3f93248d
BLAKE2b-256 e21d2a69f80949b8b1d650c0ca0efb34c7cba1f7f34324814eaf53d53a237518

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13a339c025bdaa2b10000fd2dad02016998612b023bbcb99271f6c9e48e49a88
MD5 75ae1420b00c568f815fac91f528a952
BLAKE2b-256 b3de3e498e3604b09bc5519a668fd6e0eda395d8cae6fee06ecb3ee45e9a1cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 69ea0758ddb48654cd96de0032b976825828c1431752136efb9f02d7f0dde8ff
MD5 d850746a4d56e855d311f245c41aacf9
BLAKE2b-256 ce955a22d186a3f1728ae6003dfa56c5156bbd41a649e639e067c715b8615e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: picows-1.19.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 150.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b884af84acc816d9ac5a4e92594fe75b46d5c1a433e8652613dc32b77a635dbe
MD5 e32ac81ea1469a5509616869d64ca9e8
BLAKE2b-256 bb4c495fd97ad4adb866d37adcc531cb80e18ecba20c53de6069095034dc1179

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: picows-1.19.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 170.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4d7c7a73f15dafd95bd71ca68b80c038a48bf0099acd5cf29f912d4149ba145a
MD5 847428d5e1a1836d2d2b6dc868b944f3
BLAKE2b-256 019d6c43ce1d20d05fa1d90305d748330f7eea7429712fed51616e1792b45d74

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: picows-1.19.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 04f25b5c7ac2474ae999e8bea2d2d0bf44222c3db684bbe1075a8473d90eb768
MD5 a49903aad054b052a5e0facc319dd266
BLAKE2b-256 758f85273452a7c9f328bfc50d1b8ba879fca3d28ce30935f6898e74ba3985ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-win32.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3c427d18d258e97f808913f0c615c0bdb590e5d3809e5fe446f66c222b6c856
MD5 c29ad4c6e367b8660bafeaa1efce8e8e
BLAKE2b-256 cdad129033a0bee5dae2da835cf5976937587b02f3e37a7c02f090b81a224952

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 931dbd0929ec822aa4e8374f16d472d43162cdffbf9faabdc253ac2eb85faaff
MD5 912e77d0379c1b8337b053659188c9b3
BLAKE2b-256 018890e598cdd7d8c168d2b63953c132eac23620007510c09793554e21952096

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3ffd61b77f2c248d7b99f961dbcbda9fa56e96f8c631cf96ffb4d64f8457101
MD5 e9564c117c31681cbea038ae03eb1c0a
BLAKE2b-256 f6498b411b0d8423a4fa5f3d271bcbffe0d5caf0b8a87f118187fb485b0a607c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66404b1f9966dd68566c823c87289522f905a8cf6c078af168f50645e82fe05e
MD5 e130b04f191f68b214b27e0d6d55723f
BLAKE2b-256 66ada42a534422564388a3cb08fd498624b514bae62545b1b63585afbe034eae

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d12efc380e4def07488f9ed9b47690e55811b62aad536b597f717e031b38c47b
MD5 50f684138b1c44cbc12aa1b9dac6c8bb
BLAKE2b-256 5a4166fbc9d3c6710d79b9ee22aca0d63b3a7ffeda8d8c53a7268e5d6cfef3cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 895d8fc9120e6ffa6b3f91a364a7b548061cffa393ace718ae8647c5d62e5789
MD5 f12ba89c45a6c6a0f8f4ad83e22e08eb
BLAKE2b-256 cd53683367ba4f62f8fbdb5228c0eab69ed54abecd8453aed9ad8efd05650b5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: picows-1.19.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 145.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 24fed555c9a5c8499d0eb183cde3d7ec398260f1bc384c487e92e04781398d39
MD5 f0d8ec5896cc1ebdd69c105d3853987d
BLAKE2b-256 3e8738f17a9755d673c892bfabd0280150026e8ac7aaef73039c8204e6ff1745

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: picows-1.19.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 166.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4e7a9792c29cee36dcc82a503f881b97956a58760fc10f2bf2d58bc4bc6d5657
MD5 f34c5bbfc6fbe497a653248e7ac85777
BLAKE2b-256 aef82b6ae4d12bb44eb17cbe8bdd89c7d2e191f291750fd86bafd931e37baf4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: picows-1.19.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 147.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3c6acd5cc310c560d160df6f37ddb4af4360f633856b36959708fb73fb7599ad
MD5 d959c8a9d46967322ca54f1101e931cd
BLAKE2b-256 060bd8de17564b54dc5e025428f1fd653f4b18f9b877a232c535044d754fa8c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-win32.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c1d2885cbc6892c3745718ccc7198db24f28a1e7da98e6590f60fbd5e19261a
MD5 6d524bc1679e667a9a91d4e420572e23
BLAKE2b-256 7ef03c2b751eefa0449c3dc884a0772edb5003c6789e3dec7e311298505518ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aed266322a477cb8cb1e37fd9980eb3b565087ef1c3f8614450384c589af9c1f
MD5 0a8a0b05eaeeb2f6102a1ea6bf211adf
BLAKE2b-256 3e475731d976d28eea2cf0c43959ebe0aef6b3f18f29516fbffaafce2a299292

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90f94f60786631b3f8f76602c533c527a11d44dc6ddcbb95edce813a22a0e057
MD5 7a586f8b21df0b5abe0bea901146504a
BLAKE2b-256 efcb1244e02f7a45b5139607f4f301a0179fa5fb008ec63a50a39305f221973c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00a8bcc04d731185ea87d5b707abc15e4dc26ed7cb4f7d84d48ba4ffc5fce544
MD5 c95f9d714fcb1853bca286281cf30d7c
BLAKE2b-256 a083247e8fd13086c315d1aa4a7bccbcd1393878ce1dd147e77171aff07ca0a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfce8fa810818e9535d2c9cb9f3979754cba9c93fdbaef6984e384a8e92e53e6
MD5 24a807ef78b9b928e65f69afca62f345
BLAKE2b-256 8a24d4c7b7d805db7fbdc238f4ccfcb3595c74181df28efa3f174c5ec01dd3a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8205cb1170e9721f76c8f247c6033faaec7580048f36ff15e710f0a35c1112ff
MD5 586f0e34c0adcc7fee61908ff41581f1
BLAKE2b-256 b60b9d6057515f546bdeba2647ee8c19eadbb11ae9e21427193b0bad8a9f5bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: picows-1.19.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 145.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7f24a25fd871e0011ff83ba04fde693313c553543f072bf1146c2dd82c68b650
MD5 114fd248766e84b46f0cfa390fed1fc3
BLAKE2b-256 732dcd64554d99bbc6645edca9e6c4ced79cbdb0243945fd5714737a5d849e44

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: picows-1.19.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 166.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f19e9081e3e33a9e58fc450ed087124212f2c0986ca1f9708b9ae48cd93602d
MD5 11588fc000dcadfe9c5dbb27b2f08f29
BLAKE2b-256 bad3a48100bbbc12361580ef70cab932b7ce42d8583aad8cfd55504a028fe296

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: picows-1.19.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 147.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9a20a44a41caab404652745ddddf3ed0cdea8f0983cdee181a3057bc0d32396c
MD5 ebb2a3cf0e9cdecdfe346b48bfdaf7a9
BLAKE2b-256 630ebe93dc79169fbff9e275c6798a34598bf3c2a936f08fe7a7a6ee8c4a90b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-win32.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0d676857ec37df679b2312f5d2cc8d301c4e48deca2a6b058d8f79a0745fbe7
MD5 551507983e6113a70548ef85343507d8
BLAKE2b-256 a2680a426201c633f206523b00177f214ba796c5a9fbd7a83b80884e030e72c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cf6633f62e5349b5f2d0965b417a83be0447a563a6c4965a1ec812fce578a1d
MD5 03ab09b9de7e11a9005190963785aab3
BLAKE2b-256 ee7375b94cb96b094cd3cd7f4f9a42ee9e6e0e46f4d5eec4f43328f17dcb22a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca773791087c492cd185dd9acd409ea6e33e29ef2b70ef48a07247d43e3c1c9c
MD5 9bb045eaa4576707d1af68d68557c951
BLAKE2b-256 ea425863822cf4c31ea9e438c18bfd96be2d81bd26dfc1e72795c3f7b93578eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 574bb2dc4d9d211c1cd9ac412fba179a7aae1e65a7c33c0f5ef90d6e9f0c082e
MD5 21c27f60c3112712935357e124303268
BLAKE2b-256 16ad35614e7800ac05f2e38002a5ebc564d25f8987337f960881c6388f739a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baa1d221723b05bf8df736f80b8c96b1d507e57fe0f6eb7bfb96bdb9b4cde4ec
MD5 1de4584d1028833aa22d482ddc7c473c
BLAKE2b-256 e69f88cd3b3df18146f423c07ff047c69d3eb01f3bdf38e3bd86ba6491eb8822

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f5f05b5fb6b8b1a2aa5a77eac3af7446fbf9a7f2a202b70217f909ce195c7ad3
MD5 c053868f64813ff7603a485e5df93a3d
BLAKE2b-256 8655ebcd240e8f1a09a11fdcac35254873429a7cd7b5df1e1c3e9033a512a446

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: picows-1.19.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 150.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9d8106e131c49ea92992d7e13f0ad17c58228effdabad4b7862698447a9b8926
MD5 a5dd5a2c3e43b63ae5a66c778c133ba0
BLAKE2b-256 ba4000c6f42bfe1208587a8c4fd5df33a485b8e727e9da3e2391fc92278df93f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: picows-1.19.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 170.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4edc8c1519e42e5de53a6e3752c301ab378e9250e932ccb00a8ef0fbd371fd0b
MD5 4bcfe18354185a807812dabd58fd1fef
BLAKE2b-256 7829f4c59d2dfe821ee83ea7a1545c6edfc06cae736c57c39e02a8503535d33c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: picows-1.19.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 152.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 511263305123f2a943a2c4d15ac3acadc1da734805de7fd738478047dcd948fd
MD5 0c8a1a164337d10ce5f1a98e35f48abb
BLAKE2b-256 dcec6a4c0e6426b157330dbec91e2066078f1f1525e0299e2c95c59358d17135

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-win32.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf3f04b62e7b36a4d9af510b3eb93382c4a5ce709cbd07e500864b192cbd82d1
MD5 83e8fb6b5582412a8dcd1eae4a9a90fa
BLAKE2b-256 9d9bd91a8b149477be3d7c5e5021db39b0218bff2e8cb406682bb56d42a6a39b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5e51df773a97756f022ccb25ae639e9905d1515dfc960bac71ee6e31d767eab
MD5 6619f367e8f142be95c7a8d6665dfa55
BLAKE2b-256 713247afa95705edbf784b683ef453a58e6371210f095a431d139fbb3d8998f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7538507c55388f37c2c8b1d5ecc6100d39e7b353cfbb99eed1b401239f9e1282
MD5 8bc37d8df76b797d5951d9d4a36d277c
BLAKE2b-256 0e8e54a0dec0b2cef355ab48b20fb9f97442fdade09d42ebde30d7008b82719b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 893f7090700fb8769874b852b8522ad231cc1412c6eb2c7a1618b0b2bc721a98
MD5 c11a0fffdf24ba818fabf16df0c0b0c0
BLAKE2b-256 933917d39a275245c57221a381a1281d8c14ea4ab0a7a503662209e96ce3fd4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f9ed859958452ceb51f53e90086ed0afedd317d8dcb3f0952d565eb66e9bbb8
MD5 f1b75ea989ceca8c90511632f3077717
BLAKE2b-256 78761d20b9dfba4065d64e87a8915ef42d083bbb5a8377d2ec458ef34fd80ca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa5dee1d73e1ac48edb2cbbf38c902cc6dd1de26fd9afbe47f91c48bd6f07637
MD5 3bd22de79a0e0f892c6f60dd32a4d18c
BLAKE2b-256 a6850e0bd76084bfe0b3a4da3fd590057f4e23abb90b23d95ea26ad65c809c0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: picows-1.19.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 150.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3284b709e31d7f0023eabc32ef73e81a7c6a4cef462c2da73b47683e8d0bd65a
MD5 bbc93d1b5840ccdabc63143d7e6e74ce
BLAKE2b-256 007512d13db4310fee2cb2a4314371c27c796133896d9bc0e1e880a137c89643

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-win_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: picows-1.19.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 169.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d8d69f20f635a0a366a4ead8c331657d1f055cfe4c1da6112707e8f3ee107cf5
MD5 38daf80290caa00a4dc8f5378557f08b
BLAKE2b-256 955229ebe912f80e59c3fadaef5c9df58375ca47a01ad2055c13455f0e313e97

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: picows-1.19.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 152.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 29874c29b0b61d7c7ffa6343be23e409e108e1b93e5edc256f862d27c317fdf3
MD5 d07cb4d86362b47fc8b759b559a5a309
BLAKE2b-256 7e0b82ac10751ffb7fb8dffc54a030e7720c2b2b73a3deff6a9654436c295a29

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-win32.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec088f50cf54e55459c9408cdae25a38da4bd7e5074254d4b6691a3f92bd2bca
MD5 c1a3d6adc48c129d911c1c0258dc153a
BLAKE2b-256 79c4b609f031f3794a9085ef7c9ebd2a58ecfddf09466433eba96e861bbe4f65

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc8e2eebd0bbbd763da275bda1f01282541ec986e1a92fda579fd6a632fe55d0
MD5 a81551cc3a5d399efedd8278af19233a
BLAKE2b-256 b42ef06aae5ff927b149c0879c10531ce2608fb68082fc644946a5218a89a3a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a276e9e42a2930c08adbb666f43122a83753fbc154a6beb9bede9c2f5271fa8
MD5 a8d407f48ab02e6cdc44ea8452d10d71
BLAKE2b-256 ed575ff759df55f35db02ea28699d61b2013b4df1f445f84f8150741758d41d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e1d1421ce9f040a83a8dc6de432517fa58cfb9a239ccb6c096c344fbba8fe55
MD5 2865a2ca4f1619ad3fa5ec5e7ced78f8
BLAKE2b-256 2cef306b8cd620a87ce24950054ca7f978a66d2f9063b7d25b2a7bf89a572760

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a0642424990c83ad723733576f91bdffb9db6e788a6ef817274a988dc368662
MD5 748523dca11fcc5e7035ade0102f3cb7
BLAKE2b-256 795b13f782a6ae370d5004424cb7d5431db13d6493b6aa0c756c487fecdfbdfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 047a6a7765b81f328c0f27f56e19dea1d72b6ca6f38cc72fbef99137d7bdac9b
MD5 584dbf8e8e43863b83c91867561eb191
BLAKE2b-256 64c0ecfa82bff5437672df6a7e8d6f4f898abab944f1638979be687ffd65dc20

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: picows-1.19.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 150.7 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2be6f98c0ad9cca3741328f1f0794bd9472dcc15ea856693fd9aba87222d6465
MD5 6014a804bd7dc34687dca69c77c39418
BLAKE2b-256 b1420236b5f84a51d1c57bd5f3ceb50f0db896e54685b5bd54a49ad042b2a2e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-win_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: picows-1.19.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 169.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 decebf79946a703885f0e06b0bf7bdeb273a83df5850aca77572971c742bd1f7
MD5 66eaa38a8f32e402475a47312e56abbb
BLAKE2b-256 83c791def66ab1a634c58bfebbad86e65504d0021048c128f0ed192fe0606ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: picows-1.19.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 152.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for picows-1.19.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c92dd8a4ffff05a300bcbd72159dfb6e07a13737724700bbfb76fd50f257ed35
MD5 b148ae596e0420bc92eea6db1e8b5a3e
BLAKE2b-256 5625e1475c8477de676da8cfca0d7788f1a07f8f648a49cff3d9b56f5f6a2c19

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-win32.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a8339776a003fd1dbd8f53d2b5c1e31f3be2ae2afd83eea3a97360e36904bf3
MD5 9c1a7b9698924ed01a6f146a5407b0e3
BLAKE2b-256 530cf36791decc8b64c40d5e40607024b754f6595c746e69c4bd375219dd9673

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc9a64d3ee462992b1f7fecfda024469670c99fd9a9c1cf40392e47f1a6a0269
MD5 cb6c0e00a76471e8831ebe69256f9ef9
BLAKE2b-256 bf11613c42fdcd8e5009858eff8541c4d027e1f678f008c55bd6fa3f176e8f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 443841368e5997f5fb863ff666913fd7e7788543113abff0126af30fa2254129
MD5 35b5cc965fe19b667871ea906e4350ff
BLAKE2b-256 bd581897fb52260c4c9bb451230727384963dc7c92c81146e3e8bb58345f1f20

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d07ce404f42315cec6f70199505bf97ca648e61a2efcfa984e94656b204c000
MD5 50d713bd21069b2e158734ac1bfa1e03
BLAKE2b-256 fb2b4c2b2288b06a39324764e9d11c7f1551da7fea208f04cdc1124d2de824fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecc52310422c10931f82e801e6615009d1c8163a69f2cb45e8497d47b0fbcc43
MD5 aaec83732c86dbb91ad692119de3273a
BLAKE2b-256 6d97690cd22ac1a7c6221bb719ae625407790afd3a51e6ca21920bcc3af07fa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/picows

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

File details

Details for the file picows-1.19.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picows-1.19.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 282c9c340b7f70a44eae907a61d63cda454f18cfccca45357f5ad7cacdc1f42f
MD5 ad9afa51e1125c6ad2b8f55241bf8a47
BLAKE2b-256 fefe55592c2e99bf0e4dfbb3dc7b87cbbbc4709a37f77ab9ab1fa16a2887ab9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-1.19.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/picows

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

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