Skip to main content

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-performance 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

  • Faster (up to 2x) drop-in replacement for the popular websockets library.
  • 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
  • Lower-level core API with non-async data path, to reduce latency and achieve maximum performance
  • 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

picows provides two APIs:

  • A reimplementation of the popular websockets library's asyncio interface.

  • A low-level and significantly more efficient (lower latency, better throughput, zero copy) core API.

websockets API

This is a drop-in replacement; you only need to change imports to transition from websockets to picows.

Certain features from websockets library are not supported yet. Check out documentation for the full list.

Client

# Import picows.websockets instead of websockets
from picows.websockets.asyncio.client import connect
import asyncio


async def hello():
    async with connect("ws://localhost:8765") as websocket:
        await websocket.send("Hello world!")
        message = await websocket.recv()
        print(message)


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

Server

# Import picows.websockets instead of websockets
from picows.websockets.asyncio.server import serve
import asyncio


async def echo(websocket):
    async for message in websocket:
        await websocket.send(message)


async def main():
    async with serve(echo, "localhost", 8765) as server:
        await server.serve_forever()


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

Core API

The Core API 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.

The Core API doesn't offer high-level features like permessage-deflate extension support or an async iterator interface for reading. These features are often not required in real-world applications, significantly slow down the data path, and make a true zero-copy interface impossible.

Client

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())

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())

: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

For Intel:

$ perf record -F 999 -g --call-graph lbr --user-callchains -- python -m examples.perf_test --msg-size 8192 --ssl
$ DEBUGINFOD_URLS= perf report -G -n --stdio

For AMD:

$ perf record -F 999 -g --call-graph dwarf --user-callchains -- python -m examples.perf_test --msg-size 8192 --ssl
$ DEBUGINFOD_URLS= 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

Download files

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

Source Distribution

picows-2.1.2.tar.gz (93.7 kB view details)

Uploaded Source

Built Distributions

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

picows-2.1.2-cp314-cp314t-win_arm64.whl (307.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

picows-2.1.2-cp314-cp314t-win_amd64.whl (361.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

picows-2.1.2-cp314-cp314t-win32.whl (311.4 kB view details)

Uploaded CPython 3.14tWindows x86

picows-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (438.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

picows-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (413.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

picows-2.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (434.9 kB view details)

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

picows-2.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (408.2 kB view details)

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

picows-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl (369.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

picows-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl (390.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

picows-2.1.2-cp314-cp314-win_arm64.whl (290.3 kB view details)

Uploaded CPython 3.14Windows ARM64

picows-2.1.2-cp314-cp314-win_amd64.whl (338.7 kB view details)

Uploaded CPython 3.14Windows x86-64

picows-2.1.2-cp314-cp314-win32.whl (289.9 kB view details)

Uploaded CPython 3.14Windows x86

picows-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (438.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

picows-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (407.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

picows-2.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (433.5 kB view details)

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

picows-2.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (400.2 kB view details)

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

picows-2.1.2-cp314-cp314-macosx_11_0_arm64.whl (348.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

picows-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl (368.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

picows-2.1.2-cp313-cp313-win_arm64.whl (282.7 kB view details)

Uploaded CPython 3.13Windows ARM64

picows-2.1.2-cp313-cp313-win_amd64.whl (332.3 kB view details)

Uploaded CPython 3.13Windows x86-64

picows-2.1.2-cp313-cp313-win32.whl (285.9 kB view details)

Uploaded CPython 3.13Windows x86

picows-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (435.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

picows-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (399.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

picows-2.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (431.5 kB view details)

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

picows-2.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.1 kB view details)

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

picows-2.1.2-cp313-cp313-macosx_11_0_arm64.whl (346.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

picows-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl (367.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

picows-2.1.2-cp312-cp312-win_arm64.whl (282.4 kB view details)

Uploaded CPython 3.12Windows ARM64

picows-2.1.2-cp312-cp312-win_amd64.whl (331.6 kB view details)

Uploaded CPython 3.12Windows x86-64

picows-2.1.2-cp312-cp312-win32.whl (286.0 kB view details)

Uploaded CPython 3.12Windows x86

picows-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (434.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

picows-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (398.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

picows-2.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (432.0 kB view details)

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

picows-2.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (392.4 kB view details)

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

picows-2.1.2-cp312-cp312-macosx_11_0_arm64.whl (348.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

picows-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl (368.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

picows-2.1.2-cp311-cp311-win_arm64.whl (290.5 kB view details)

Uploaded CPython 3.11Windows ARM64

picows-2.1.2-cp311-cp311-win_amd64.whl (336.6 kB view details)

Uploaded CPython 3.11Windows x86-64

picows-2.1.2-cp311-cp311-win32.whl (292.4 kB view details)

Uploaded CPython 3.11Windows x86

picows-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (431.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

picows-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (403.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

picows-2.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (427.5 kB view details)

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

picows-2.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (396.6 kB view details)

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

picows-2.1.2-cp311-cp311-macosx_11_0_arm64.whl (350.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

picows-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl (370.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

picows-2.1.2-cp310-cp310-win_arm64.whl (290.3 kB view details)

Uploaded CPython 3.10Windows ARM64

picows-2.1.2-cp310-cp310-win_amd64.whl (334.8 kB view details)

Uploaded CPython 3.10Windows x86-64

picows-2.1.2-cp310-cp310-win32.whl (292.7 kB view details)

Uploaded CPython 3.10Windows x86

picows-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (432.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

picows-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (401.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

picows-2.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (428.6 kB view details)

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

picows-2.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (396.6 kB view details)

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

picows-2.1.2-cp310-cp310-macosx_11_0_arm64.whl (352.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

picows-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl (371.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

picows-2.1.2-cp39-cp39-win_arm64.whl (291.8 kB view details)

Uploaded CPython 3.9Windows ARM64

picows-2.1.2-cp39-cp39-win_amd64.whl (336.0 kB view details)

Uploaded CPython 3.9Windows x86-64

picows-2.1.2-cp39-cp39-win32.whl (293.7 kB view details)

Uploaded CPython 3.9Windows x86

picows-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (433.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

picows-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (402.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

picows-2.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (429.9 kB view details)

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

picows-2.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (397.7 kB view details)

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

picows-2.1.2-cp39-cp39-macosx_11_0_arm64.whl (353.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

picows-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl (373.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: picows-2.1.2.tar.gz
  • Upload date:
  • Size: 93.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2.tar.gz
Algorithm Hash digest
SHA256 d9123159d521eec251b94ecea6c778e7539b570dba83c9c810215add8f5a248b
MD5 86fd8ef3e579f6c71ef67b057b57ab75
BLAKE2b-256 88c28b175d451f8bdc74447d37d9d3bd76a199de2bfbd5d35536d5781990bc8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2.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-2.1.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: picows-2.1.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 307.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1c5c54475e7f4add722aa29d772310dbfe694244f592ff6e3df1401ba71b8915
MD5 8cef065b2723873eb4727802a864da03
BLAKE2b-256 79ffd769a288464ef352a4b26e01a216ad83ffd054fd7b781cdec4929ff1c706

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for picows-2.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 be66575dd6807b44ca76aeb8f54f8fd1c4cebadeb46e7141abc8f788486767f4
MD5 4d13205d4ef89aee163ad76049ca4ce9
BLAKE2b-256 3f673702b8460425842ce18b4649bbe06a9ce5d46bf20fb449ab3b99c1145d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: picows-2.1.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 311.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f15b502dc3943eb7dd5ef193f79c12abd620b34acfa391428a52f1d3568e23da
MD5 74e1024f724f49f2cf132ef8ddef8702
BLAKE2b-256 1cf941f475c007d7f76ce6b4a29434752766a32937b30dc451ab08a8365399ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c39244d82277dfc984938c8f9de50ee98288405ffe0b08d9ec2d5862e9386ae
MD5 5d0f6fe4ef805fe5462c3538a094cff2
BLAKE2b-256 13ef8265f485f380c4aa3c66249c9b3bf7141f6f8fedb6ee077fb56c4acaac16

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cd09856a1a4592c65b03059b43494a959bd4c3bc5fb9a3d9b32cf931e2f184d
MD5 ed7174190cc5a75b83eca3ec3c38fdc1
BLAKE2b-256 e4319cc62d9a5ebb77b261ed0298fe88d4bff7cb0f75cf2503695f72ecb78992

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e8f003f9df7d9783ba14b7c34dfde4945c9077daf22a30955a2c62599456e67
MD5 9f7b6078dccdd5c9f611191b2964d6db
BLAKE2b-256 c9b0835cb4e8495c0bfbd6412ffb196aa000a395c313960741202eb2e5548585

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8933df45174e28200c7ff053da1b3e0ce55929cecf81aaeb278d1e47d13cc31b
MD5 a0f1bb5cbbffdeb59a976da564400294
BLAKE2b-256 357500a3f9c8e2cad4926d0e98a6c457e942629be80625507e8189c0039379af

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24c9622d168c2f8c6d66aaa72940b78bef0ff60f6dd6fd9da683abe44c95eca2
MD5 599bfb3cc7f7108e4ef2f3b4f6da257d
BLAKE2b-256 c9dfd3be983e8cb14e201db05d14faa485fed08db93fb61f22673c3b8cc92a7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 90b8fdb5abf2629dfe5db61643e6ed9a638c95c0e287c4817a6d23c7c7c67ee4
MD5 beece715910fd955e777b9414377a815
BLAKE2b-256 0ffa56b60ea6db2be571c2394120d061a2cda7feeceafacd29b5761f2521c45e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: picows-2.1.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 290.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d4d739b9185a696bae6fdcaad8f6cf6f6ade1bfccf509bcca783a4f5bb4b0887
MD5 1e99129854b3b33b40340a52e11616e9
BLAKE2b-256 a8be14b1d2ef0d73c73d81f7468d93e1039c9c01b8ef03476f4c0d714f769bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: picows-2.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 338.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3e5dbd5ff6818b8b402cec2c995d23a95186231f3631d01513765b412e010da8
MD5 cbfa825926088cf11e311a2b6a4e4e79
BLAKE2b-256 351a7cc2ba8dd79b84f80bd96f6328071375916b040102af23ab2d54788f3208

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: picows-2.1.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 289.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0ca0a62638c45da10ae5f0e0fc50bd68ae4b952093fad7b9bec4f84f203eab3c
MD5 3ca560e4c27bb315afa02a4eb743b9f1
BLAKE2b-256 de72a311de2d5a92f2069152842dc4c2c4cb3fb592298ed3e259fa0000becc47

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ef57ba1279bd51cdaa58fc6f294ea79e810592a967fcf97245802056f826b0f
MD5 9177f2ffb63e6e4047c3b649a6c17066
BLAKE2b-256 898ee38dd91c2f955d6a584060ac7f9577f4bfd5785efdb99e9b6886e3697edb

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd7b2f17bb877d4e1ad80aa72bf3c060375a9f2ceea50a45e45390bc1ce88fdc
MD5 27aef547c2e7c02f283d93d3d52f0bc8
BLAKE2b-256 b3a100cf824229af7875343e4a339d385f4b7670452afaf41f102cf686d72811

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e35c192af192c34b2ee1d6862818c1f033eb164edd9dd9dcadba8824fc73b0c1
MD5 792896213ad7b0cdc6b00c971f9e83be
BLAKE2b-256 e1e7fb68b44a94264d793a5444e224beb29d9064eba3eeb8e3300e9a6ea8ec1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 545912066d5c68bb35f63c9e1f2553b2b3c9c0e0e3595172ca0fd1b595e2dda7
MD5 3928feabec75b733ea0e891d4e74af5e
BLAKE2b-256 48a8f4a3539570d4590f11f3b8bc27fafc040e1624a05cd1dc29f0794547d9cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66ef2ca6c64a738190cfe613883d3fdec145e03c5adb45cd9c65207932ffba6f
MD5 3d30c1f6b885e756f0898d40a175fa07
BLAKE2b-256 1b5af3dfde13433f9e4085995b8b52ef45d79758d1863926d9e056e2feab5627

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 95f5e88e6e51861399747388ef969de00eb89ed4b51df82316dd58ece844b940
MD5 8f7f9e5a2e2cfeec46dbe3cfc59b467f
BLAKE2b-256 758b0f9aa7513778e74b5b12dbef5f2bd4f951c5dc3c788efb1ad8ec18ff5946

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: picows-2.1.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 282.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8f983315ac41f68feaca7474a81eacad3408e9f86314ff11269b80e0ae304b41
MD5 e571d7ce56996daad133ff31f5e5cbbc
BLAKE2b-256 31b8c0bda64acd5def29010bb89d230382bb79e3c16d6bbb8ca6b80ef7407b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: picows-2.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 332.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f2fda5bf4a3c459ee8bd1b8c9a7c20ab8fa42d4cfd6a7ce642a790ea60d438ee
MD5 8c08f8f12e75889b889cc8758cc4d5ba
BLAKE2b-256 f36cf09d1414407a21040d582460af704d6e6309e539d22269909bbddc16d1f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: picows-2.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 285.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 26c6e05b4b75a72fb5bfad88a9f81c9138679a9d1dc8a55a2cefbd001fc40ea6
MD5 2106934d0ace15d770d8678a21fe5175
BLAKE2b-256 010efe997b3dd25581ca4f87a58ac8d371c140b37ac9faef6ff0bfa3ec5b76e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3572387039c5a04525efdb0254aeb5041881572e4868165e95a77ad27b527825
MD5 2fe914b7f4ce398ca0529e0692f30617
BLAKE2b-256 571573fbe9c8b5b5f5eb7678b7b77faa1b28e434f1162993dd6f3c5e65930e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6664639f6ef691cc310402b50eb41e2c350969057c41759eaf3fc7fabfff0c1
MD5 86ffae78bac7778c0b33de71cab5363c
BLAKE2b-256 52d7f05e116fc07c8e490405ed9fcde9fd132c307ccebd2cf2a678b51adf7546

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1138fc0aac2340a357e58780eb6decd8547cbaa07878c520bd49cb3eb08f5896
MD5 b87fe69518ee821152f777efca068f49
BLAKE2b-256 343ec6ae00c97136f7c74babac6ee32310fce476e00ebd346e37b617093f1029

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 092fc38e10af8b5431088a5d257427b116208cb38f8f19632a4dd02f5e75d8ab
MD5 222a539b81de45618a880af0d8920462
BLAKE2b-256 27d23a61a5091657fe03e371e940350009eb194bddb5b56e9076d993d74b5a4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bf6664616e6d3aa5f9e261ca2be47290ed8819bc5414d0275121b92e166627f
MD5 e76159a7f0a9059716de0bcef235414d
BLAKE2b-256 28bb2fc046f7e68906899be6838b4b9a1450bc4d38dc9a658183c1417597ab7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b2a2514dd50d2f3dab6aaeb28e706ac4984316bca9a24077eb64f4e49e120813
MD5 07e41eb7f3f0bda2a044c039e4d79ac6
BLAKE2b-256 c34e97909408ce12793f4913de0e3fef78b9306940359916779e516e00d766ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: picows-2.1.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 282.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7bfc38a743a63a0f5e225727825fe6986a33a0ebab93cea4c4c8460fe53f16a6
MD5 36a4925baec4a53d5064f39be0b03d2e
BLAKE2b-256 e8270d751c019c138ff9dcbf14ec15aeaa4efc5611e692efb9ce1f8e25274f48

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: picows-2.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 331.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 76c52eef7184eec9a3c8cab51e862344980ab5df39f739745240c108f3a72b67
MD5 03696ae62cdc1fe9ce073fb8745eb4ec
BLAKE2b-256 bffbda9b692ea3a782792d38d78d6bc135ebff36b20dda66762d5ba239796a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: picows-2.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 286.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0426e797a6301c1159b481fb6557cc57d3e7a8214d5e69534c7d1e40cdd85435
MD5 e9a674cd41880e182429e6da3cd3851a
BLAKE2b-256 a3f08c26e231c2c50edf8a0561f4be6eeef002c7cc144526fda870928d217605

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 013e26a9a24f5d723c4304980e8df4f1be8306c60321d460575e9209f332d80d
MD5 a0c805fe7eebe79312990f8ab67e9249
BLAKE2b-256 324ee3e32b02e3280c63bd0fee0600d7bd3251ad2a2f603cb51486b6ee0dac7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c715b7e6ca8458f0ba136f7dd92bc94dd4fe3d29ca1891ee07197964729c1b4
MD5 19bbb4ecdfe652dc62c6ed3b74208622
BLAKE2b-256 2bd2bcf2480637d30855b82db02b8abb27fc04617b9a16a117fd76413a03b892

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 237b92ab446967f9b1f4e660c11b0461ae0cab9ef98fab1cd5ad26d4fbd85b87
MD5 990eaba99c5df6a0d6b534bf9e68eb35
BLAKE2b-256 ebf0329b229338a538373d8a786844fac12a9a154ef8bbc2daf04d7f63882914

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d0aec5fd2e08d2997d87c891e7c248f33d67f6494094d8ca55cbd867461767b
MD5 5c04e4cc92a6d3ab4672b7c4d41b7332
BLAKE2b-256 5a4e75cae1da106d0100a895542321d144f736fefa9eb3e849366c18dcf44d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e833bf6ae125299d62c24c063973ea5bf814b351e78f1526ee51464fd8d733f7
MD5 9b14bfbc9816e8f46b4033b8363a315c
BLAKE2b-256 a31a83492b0997a448896c94c284b29eb00440cfd83dbf4ecfe7ff542e100b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0e662c9041244e882bc3938a91213330ecf72ecb3162e6941ec3340ebcfdc513
MD5 1c0c05c45ed4051d22df8126570a94a7
BLAKE2b-256 e8542615ab74b7f0cb06ac11b1087ef043c912898c4778e7a37bcc04391df018

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: picows-2.1.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 290.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 dfa22eb1c38b6d44b88ddc84c7d9797fa07b96cc8416e84bbbf2cbc1c096175b
MD5 a7cb5372fba901dd8c4724dbd5903a74
BLAKE2b-256 18c4ff20bdac45cc77222a10bc5a527b1a8121892b6119eb7e87ce3204cb1611

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: picows-2.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 336.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 816138efe2b98fb36084e3408e89e5ae216e86c515bfeab9efac7dda80b5e0f0
MD5 40ef8943cb47c8fa552bb38fdd20475a
BLAKE2b-256 451cafc04c7e5b7b3645c6b11e950ae2b8fa1891e0e90ad1b6fa432d1080fdf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: picows-2.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 292.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 70b7f0b44609092d544ce3242d7bc0705d6fe2e7e308ff46f0d4d517f39faae7
MD5 23d55e0784d832e6586bff16a026a2ce
BLAKE2b-256 8827b089fb4954e08bde88be14863e021cd7679eedfc101294d2715091c7d9c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d554dfe33d2321081e03d4238545a9f7084aed9e21d614770f17903d7c3005b
MD5 cf7b315cdd793d2d743dba57e713e19a
BLAKE2b-256 00a4b3a91b01ea3e224e1c9953d7f0e115734906c47817fc2c7c5807f2001c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9da3c2e96f8bb6d6dcbd220551e0100707c313c56881f9f1a19cbc6fec24339
MD5 46ce1aee857d304ea7a3f1e6064b05c0
BLAKE2b-256 7580204ed6be47c5bba97c840d0e86278ca691cab723547d476b462d869fc24f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8857cb17faf5ad998d4c1bacb0611d652193086eb3dfc4f71b91378eae6b1971
MD5 b78efcf6ffc4f0d61106948652bc29e9
BLAKE2b-256 3c508612810686cbd32a8d210a414403dbf4119bd85a74417cffbce60cfa6e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c3fb9f87e3841ede6a951d888db6809bf7e17ac5c31a3e07b9f8fe312a1bea1
MD5 7ea4bdfddc6d9d4235902ec8c3fe40d9
BLAKE2b-256 b1099dd3e7825102638829cc21bf73e0809b9c37b76461bb98a4085847265c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8fdf4f28a3b3d8947fb07dffadf21cec6e5844cc5fb31b8bb3283d10b9ef21e
MD5 99cb79ca438c49ca646a1ba0b4e30920
BLAKE2b-256 fefe4fc37654ba45748d1e55cf630ea7dcd44fba9745cfa7d4c9eaa3e8ec7e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4608cd69f5267318537434789ea42f58889f8d79dedeb1511e98e17f229bf7d4
MD5 9ac9c6a7545fe4ac2c7c3f0bb42b099f
BLAKE2b-256 aef1754b209235378bf93c77ad6aecca1c439a63b0db4ed01f7cf0c1cfe2d3c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: picows-2.1.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 290.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c2e2bcb45b43b9d91ba2c7c92435f5afd1c6edacf3defa1276dd2e94871f3e74
MD5 5bf0dc0ef2a1aa637b20e82613bf3af5
BLAKE2b-256 a75eb1a48f0b536d070822d26cc20e589df0dfd32e971a28c544cba30816773a

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: picows-2.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 334.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54c04af087c90fcda9d6b869e712ff482d944a8a93210ce37561d75b18c3da09
MD5 51618fb440f11e235639d1fea7076d8a
BLAKE2b-256 ea7e1597faa3c119cd1788d16ac93bcde2a3530e3e0dc59ad24dacea56974437

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: picows-2.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 292.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 25223976798435bbaa2c7a91ee9f252d75fc2098207e50cdb334fb46e73ade11
MD5 729a5fe210e8fe1c3ddd87e55e2c4a23
BLAKE2b-256 e0b45a9a5b1f0d2dcd2d4ef5d1e6b3cadf5ae3cce8617916c0b7c4e8da1be781

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b201841e994a4adfc537b6217646f9eeb49641f79a8ea8b8c56e4961236e92f1
MD5 75499106b8cc629f3266e376fd753325
BLAKE2b-256 b4469ed7da7dfe3f70d7616b56cd9f5c677a7c480ba4947a9193880ffaef7332

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88e0fae0260b6e697ef20fdddd35e17ac7f6f8f4d12676c097ecf583bb6500ad
MD5 f43c114d8070a86563848d2be92fd19f
BLAKE2b-256 1c3b3626fff576132996deb86b2c96d95876bee90e206b5cdd69afac50cefd94

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19c78865ad86b67fda223b5b69afa24ddce8423bcf26feaebb2629a853eebf90
MD5 126c6c096b4fe74f10a412f7b8442cde
BLAKE2b-256 aae2dc7be4a80da3f2a3f92e3e3d9ea8183d0ab29a03d9214536a5bfb18267a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0845adf3dd67bbe187bf8506b91898586b5e64334879b625ae7b8bbc1b520b3
MD5 8553fdf0dc83a368eae2e794ab6553aa
BLAKE2b-256 6d5c38c6242eff49ba78e00dd60283f5a9ddb48a2fa163b06f178f17315614cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0ed02b361bac358694da3611d4e1e88730b8627e373acafd03ca4385aa5422b
MD5 722dd9806143175062e962e31d8a9364
BLAKE2b-256 f42721c574433c496fb3ae84605d4fba5ed3f167fffb4e5f7464d51e85e26737

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26f67308a08b2e42169c0b0abf48b6aa35939979d2a375a0c0f389fc220cebd2
MD5 dcaf9b5669802e32fc640aad11cc74a3
BLAKE2b-256 35ab8b9eea00033970c109498a67d4eaba0d5fafc6b936d193856850e0a00d9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: picows-2.1.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 291.8 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c3821ee1993896d761c2d5fe1d9a1efe7b3617908713d85f3ff39cfeac3f94d8
MD5 083daf8dc3e1fe35b62fafa8aa0aafda
BLAKE2b-256 395b3492b4149ad5c2de814da383eae4e24b24d9c608b0691eb96fea8c34c2e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: picows-2.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 336.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ed07be01356c6f5fbbfeafd4db6241f1d84bb5cd3bfa68b337b73f49e6e175cc
MD5 db09c677b947dd219582dd1c70ce36ad
BLAKE2b-256 f7b00817980ddd60b7eb6cafe8154dbbd44e9943723d9944f67a07073d758294

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: picows-2.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 293.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for picows-2.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 948c4a9a295a8454ed250b5ba16749bf317851307fa1a7fc8667fa3b04aa4c00
MD5 c0829206f4241da8adc5848fae2c3cf8
BLAKE2b-256 48e61b69dd79b5dfc34e061ad1baf01bf5d5a5b661fecdbddee3cc69dd63d675

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6b7cc7356b909485319e22809ac66f7b1d8ff8a03dc551de1961cfbad649a94
MD5 dd58e00dc7503a84dc9f81f42e23032c
BLAKE2b-256 a5e91ab8c5cf2b5e8b2f27c5753e6212256e6f440b8026ecae188b69a2c5e67c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a393124ed69c56aa68a03c9debb12e59e9027d064c1068529ce8557c00e2adc6
MD5 0ceb56f5c961782b7ed625cad20fe9f6
BLAKE2b-256 8ef36161501c129c62c7e715581453a958992019f9306ca2fbe4285107056554

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21a6b14fb62d02186e20b38266b1dd034b36891390f438447164d296e45bd556
MD5 d831f8283b75c45cdad00741da4f2162
BLAKE2b-256 38f466c92ca78dd61bced02f09ecc3532f3dcf5535e78b075ebfba8065e7de85

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4fa1a76564e6623451e4ba2ad34af51064437dd417f4da966a73e8eea9ef1cd6
MD5 4e8d02744c433131c91bb8110c47319b
BLAKE2b-256 a960ee452101c8c3f55c15a78d70eb989c577e8287e2e880fd1e4022c244a465

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 021aa6a66920f6dc15079dedd0963be84dc351b3463849cc886cd25f2eef45e5
MD5 50220b4ce137491e1a6f02d23b4628e6
BLAKE2b-256 1d4c3a18452d857417e6824ef41907bfcefd3210fc9b6aa65bfa88fbc1369445

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picows-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33a41bcc46aed3140d632c1171a1520bb9747c7024b8e5370065965adc5d3b49
MD5 63ea0f7d0051a970002b55264f1f2c6a
BLAKE2b-256 aa8c045224d20c3ad5a19ae6b12ceb3eed8f8da0eab2b76ebc9c291fad5a2bdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.2-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 Sentry Error logging StatusPage Status page