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.3.tar.gz (94.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-2.1.3-cp314-cp314t-win_arm64.whl (308.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

picows-2.1.3-cp314-cp314t-win_amd64.whl (362.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

picows-2.1.3-cp314-cp314t-win32.whl (311.6 kB view details)

Uploaded CPython 3.14tWindows x86

picows-2.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (440.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

picows-2.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl (414.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

picows-2.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (436.3 kB view details)

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

picows-2.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (408.8 kB view details)

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

picows-2.1.3-cp314-cp314t-macosx_11_0_arm64.whl (371.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

picows-2.1.3-cp314-cp314t-macosx_10_15_x86_64.whl (392.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

picows-2.1.3-cp314-cp314-win_arm64.whl (291.6 kB view details)

Uploaded CPython 3.14Windows ARM64

picows-2.1.3-cp314-cp314-win_amd64.whl (339.9 kB view details)

Uploaded CPython 3.14Windows x86-64

picows-2.1.3-cp314-cp314-win32.whl (291.1 kB view details)

Uploaded CPython 3.14Windows x86

picows-2.1.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl (406.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

picows-2.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (434.3 kB view details)

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

picows-2.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (400.5 kB view details)

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

picows-2.1.3-cp314-cp314-macosx_11_0_arm64.whl (350.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

picows-2.1.3-cp314-cp314-macosx_10_15_x86_64.whl (370.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

picows-2.1.3-cp313-cp313-win_arm64.whl (283.7 kB view details)

Uploaded CPython 3.13Windows ARM64

picows-2.1.3-cp313-cp313-win_amd64.whl (333.7 kB view details)

Uploaded CPython 3.13Windows x86-64

picows-2.1.3-cp313-cp313-win32.whl (287.4 kB view details)

Uploaded CPython 3.13Windows x86

picows-2.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

picows-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (400.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

picows-2.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (432.8 kB view details)

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

picows-2.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (395.6 kB view details)

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

picows-2.1.3-cp313-cp313-macosx_11_0_arm64.whl (349.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

picows-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl (369.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

picows-2.1.3-cp312-cp312-win_arm64.whl (283.7 kB view details)

Uploaded CPython 3.12Windows ARM64

picows-2.1.3-cp312-cp312-win_amd64.whl (332.9 kB view details)

Uploaded CPython 3.12Windows x86-64

picows-2.1.3-cp312-cp312-win32.whl (287.4 kB view details)

Uploaded CPython 3.12Windows x86

picows-2.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

picows-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (399.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

picows-2.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (432.8 kB view details)

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

picows-2.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.5 kB view details)

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

picows-2.1.3-cp312-cp312-macosx_11_0_arm64.whl (351.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

picows-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl (370.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

picows-2.1.3-cp311-cp311-win_arm64.whl (291.7 kB view details)

Uploaded CPython 3.11Windows ARM64

picows-2.1.3-cp311-cp311-win_amd64.whl (338.2 kB view details)

Uploaded CPython 3.11Windows x86-64

picows-2.1.3-cp311-cp311-win32.whl (293.9 kB view details)

Uploaded CPython 3.11Windows x86

picows-2.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (432.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

picows-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (404.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

picows-2.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (428.4 kB view details)

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

picows-2.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (398.2 kB view details)

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

picows-2.1.3-cp311-cp311-macosx_11_0_arm64.whl (352.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

picows-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl (372.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

picows-2.1.3-cp310-cp310-win_arm64.whl (291.6 kB view details)

Uploaded CPython 3.10Windows ARM64

picows-2.1.3-cp310-cp310-win_amd64.whl (336.3 kB view details)

Uploaded CPython 3.10Windows x86-64

picows-2.1.3-cp310-cp310-win32.whl (293.9 kB view details)

Uploaded CPython 3.10Windows x86

picows-2.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (432.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

picows-2.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (403.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

picows-2.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (430.5 kB view details)

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

picows-2.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (398.9 kB view details)

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

picows-2.1.3-cp310-cp310-macosx_11_0_arm64.whl (354.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

picows-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl (373.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

picows-2.1.3-cp39-cp39-win_arm64.whl (292.9 kB view details)

Uploaded CPython 3.9Windows ARM64

picows-2.1.3-cp39-cp39-win_amd64.whl (337.4 kB view details)

Uploaded CPython 3.9Windows x86-64

picows-2.1.3-cp39-cp39-win32.whl (295.0 kB view details)

Uploaded CPython 3.9Windows x86

picows-2.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (434.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

picows-2.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (404.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

picows-2.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (431.8 kB view details)

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

picows-2.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (399.6 kB view details)

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

picows-2.1.3-cp39-cp39-macosx_11_0_arm64.whl (356.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

picows-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl (374.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: picows-2.1.3.tar.gz
  • Upload date:
  • Size: 94.4 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.3.tar.gz
Algorithm Hash digest
SHA256 2ce2882601cfaaa149696645cc72c93f8d4e8988e6c5823341853bd11fa715a5
MD5 05f8955056dfd07cb2d2ec0417ad9989
BLAKE2b-256 5c7c41d4e2e13cc6fa6a3f99f51f9756b629378f202f50a8c7f0887015a2378d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 308.3 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.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 659f64336aaa4c2dacd01fd7b2a2ec298a171724c6f925e07b1f318a5ed482ce
MD5 aa491889d2af30178010af4a58adcf04
BLAKE2b-256 255a82be5ccd4b42f956cdc5a973d3474fb7a90de5a2c2cb2c847ae8f6e98371

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 362.9 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9bb1b56bdcfaf840529273a424443b4ccb664392a35424c3256f3b868b3fc2b5
MD5 1166d5029bbbf0d05895c67ed3b44093
BLAKE2b-256 0cd63e86750dc3bff456e5792b59251554f7f34a1b87eb9538c7a322b74b1f75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 311.6 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.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 54681ccb89dc5a021446acb8d7d5c6830f52721bd44c2dbac614a91e9249743a
MD5 3d57cea068a128da9633ddfa3735bd49
BLAKE2b-256 e3372665c114fd3bb9698cc27c53787bda686ddb5329d4c81031401c33e651fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23a270a5db4d2e875bcd4172183189f76ef457a64760f37b61ff8e47aba0826a
MD5 63280dbd807365374b2d3d25860fc6f3
BLAKE2b-256 573ff7f618310ec19703531eb884e923b7fab57118ebeb0ac2eb1684b702ca00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e59553eddf1566339d5ff16395e49e344c2087354899a8bdb60f867ffdb8f92
MD5 12d20dd6a6a18f896d9a1c44ddc87f98
BLAKE2b-256 2706b9956220f02b5e9ed8c9d05cf39eae46a956f808b47d96e94f9078786909

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 868c05495bc8c3683e5fe24a9e9565329822cb7df1c8a5a9ebba472296ee1552
MD5 58483591b7eb3192b645bb40450057b6
BLAKE2b-256 dba9469392a6dab10e096695bab5511a57ab604abd1c8050ba9e715789d4e588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e93f845b589fdd57732b4e24bd834898b7e11df23f1c360c15b0b8935a6e5c31
MD5 a38035017151d50c20d6c67c1a4a7172
BLAKE2b-256 fb4d05763fe55475b027f382c888a678b1df6a3efa777ea516a14742516999a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46d0024a71ebdf2eb2e505a15fec138d980a21ac90d2e1501ec05d051db0d718
MD5 dc22528050ef720e6c35b4891c18e534
BLAKE2b-256 9086e5992e7644c9abbdee05cb57d83a99de4181c59c86424a41237e16fc6b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a8708ddd3d9441ad4c613bc5e5116d05fdf0d47ff93b9c67eddb682de578c22c
MD5 ffaf545d6f0d9798c7035711df5d6e1f
BLAKE2b-256 3fa76d42e105c2cbd8325724d989b196c9610ab5000d53399c45ae4fe9b980a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 291.6 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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 02e0a22c63dc819c8a7c07e0dfd03dc396bd9cfce7179c1e45f7b9714ae1af1a
MD5 96b17c265602323dcd15dd6648a4b876
BLAKE2b-256 460d0e75e44fd48bb85a868269a18976b4d7dbdda7d560ade80947070541070b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 339.9 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ced209c6eb7b01bcc11333f5ca8dfc88a27c64df829be819ae7a2737df8ac0ae
MD5 09b48df73e72fccd469607f35abdb094
BLAKE2b-256 ad65fa203a70999cd872ed1c4bca5a4ebbb261df64aa407c9728ac1f49cdaaf1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 291.1 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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 01bff8669b7068a5cdd98cb62a245e378f74d26cd46a407cfaeb33516cd9096e
MD5 dff0697e5cf92a1cd6f2d5fd6ea67019
BLAKE2b-256 d12a3eea3d2d0ff21253aba79667442d5528636684281dd93f0a7c9c1dcbc462

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de4bc99b6d9869aecff63aa038676ee50488cdd583bc942bbcfb50ad8a983893
MD5 6813a6d4a1ff2229975e338988af60b7
BLAKE2b-256 80eb0cfe173e087cc99a041609c8763284dbf0a8998359b690895aab2601da05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a49971654008c4f142ba37dbc0d58d495cc6cff5ce8e82b473979284f6fdf04a
MD5 2f3b105eb2136ca11dfe35b85ba06d79
BLAKE2b-256 406018104003a7f0f1872ed6d16a39a0fe6ac48a58c65b99592ce3bbdbbc6bf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6e1563bc137f005c2312fc9b444cb5e4ba4ccc01c98e6932ee9bdffef2d3d09
MD5 26816f53a1c7dfe1fc336f3b21e9d01b
BLAKE2b-256 535a4ecc1e6cb318a0f5aebce4ff941b8d414bae5e7e85e6ce3065f325fe3a9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fcfaede711a78d66cb6d9e753da577a51eb6762bd185d8294df86a53a82754b
MD5 8a564b4e32e111e553817e68e8864326
BLAKE2b-256 12811e4fdd8423ea9175dcd4bb5b5fd36928857ff370f416fdbafb527735abea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5685325d959bf76f1128cd1fb46edeaa3f03fa18454d4dab8873c3b32761070d
MD5 3345f999fafad2b40ec7ca966a500ec5
BLAKE2b-256 300b4dd03a680525177d7918fc384e578418f60d5e827414179c6860faa9c39a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 02345ed1d652ce2e170ac35016fadbe8c7b2bdf1597fc08f1453388e4465c260
MD5 46e4f00ea35f546e363272af8d681c19
BLAKE2b-256 753a31f922b27b84492621d4fc808ea43be1e63b6472be67ce1449c980da2b9d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 283.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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 655807abcf84283173fe41e7de4db3903f6428a10e67f8074256152f503b7c97
MD5 0c8d2322ea50fcd45a37995e13cf3026
BLAKE2b-256 b5c6597d8042243b1000403cd2f490779b95f5649a1268df68cf4e1e4189feab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 333.7 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fac5e485741c2dc8764dfb21771090c5744d4cc8fb59d51edae747f41d4fbf51
MD5 1cdd1c8331e7da2af6b86bf02c8ed1ab
BLAKE2b-256 a35f99131522535ef179bb63517d529a4819a973df519980cadea763b489d514

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 287.4 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 97725e92b8f975b13920850c33786090df0bfe186953ea276bd351a1d304e39a
MD5 ad2003b85c7ea68e59e43d04d957d5e2
BLAKE2b-256 a74df9fc436e62e7923a8136b5b1fdf5e7a14a8c1670a1eec715d43337660af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5063630fb7a683842c1f6c8b540975cc61ede40e25ce6f84a2caefe8f7bdaf54
MD5 47f7de90f7485393656b398a7985625d
BLAKE2b-256 c5585be3f4396c8621a111c8b12ff59b874bd3275db241733ce64411c40d677c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cc2ce1970fd772c24f8e8d3b7f73666b80daec5c56fa4a35c7d80db8c7631b6
MD5 d092c3a3ad7161627d9f30939c2c5cf2
BLAKE2b-256 4aec190299997eb8eacfac67b198d80c556a28095ccfd937ebd1bbba89bf2ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd438ee094644ad842f19a73474403220373134b1c2bea31fdd3a3395bb177cc
MD5 ccbeda681d1c6b70ff5d3912cf7eb08c
BLAKE2b-256 738f31a581a81a371a11bb11e2ae51d51944a471279283a5dee3730ac238f017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d1049961ce829410d9c076d67a078978c647544c61c5e8ced47da3ee3d4c106
MD5 4c1e5c53139fa94fd065c00a55e65139
BLAKE2b-256 ff843b9853805a2ceef325e59dafd2d92b2b5c9989eb08c16fa1fd6f83b431ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7aeaa85a98316f3b163246d18963ad6adbd71dcb780a09affe6bcd2ab47c0b6
MD5 6beee1e01b6bdb09b489faedf03b024a
BLAKE2b-256 6c93c78abaeea240d7bb4eeca23b896a7f3449a25cd9eea14f119d962811e182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ae2e869ebfdd1886708201b127f429785169dae0d6063c6bef7cb222d95a10b7
MD5 93f63b80a4df5e18d1ec103031c741af
BLAKE2b-256 3192ed0d98be58c9a33490ad424eb73480f0e2085b46651f997bfc7bf57be9ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 283.7 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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 905802a041c49b9e7efe51b01e57a625838c1b520c10d159935c6538c1f9e5c1
MD5 0f7913a37537cee88fa3d406ab81eec6
BLAKE2b-256 54367f08c281c2e7d3414350df7e2307760260e182c93c2a97dc9548f1115383

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 332.9 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bb002feb6965f9ecb3d17107dd00fe68c0615b34526a03ee835dd2a3431f43c7
MD5 e12a07b6ae91e0950bceec0ff8f734a6
BLAKE2b-256 fe041432a7e9d7aa9b3d36ad198cbdf298f806b78d2f9ec6c0558f93dac83dd6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 287.4 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 12f95c5a9f936f5194c973faee81a8e77a835e2afb295cdae7c1648fe36108c8
MD5 f8bd1aeaed1df2b451238c889bed5b72
BLAKE2b-256 e7c071fe3f2d5a7a63f6e3ac173631e7f3f75a288fd13f308be6bfd12ecf38d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13b19668261960366b5b951bb4001f452a1b1022a68c40331603336761eae574
MD5 e2bbf74d3b978d57c3a076043335fd67
BLAKE2b-256 7c6e9bdb1a560eb8e2b66cf3579248c90337fe525728c4458eb7d00908a8e8de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9139624743a19960baed0d7cb5e6fd6534d2495f6ce05b9e8f55cd3c96ccf203
MD5 f09a18ce7e679f7de1d633c744370532
BLAKE2b-256 e5ece1200139884117bd8fdfcf1bfc8e8885085b15d14692e5ef6d6e4b3eebaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85fb9c4df543700a9db63d371d1fd28d2a39fac6dfb64db0861315d98114cc4d
MD5 6ab0ed1610901ba9e864e7c5392b5a48
BLAKE2b-256 d73fd5ab76d17927477aad30537e77b8a56014217662aa74ba05ef76ec8213e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4e2ce26b31648a1a4004f893295bbab965c3671c84f7b6d7d703c5d5aa515e7
MD5 7b41ca91bad4fa92ebbea0f1b0efffb2
BLAKE2b-256 1fc6aec18dba5c1a6502cf8a38381204b0f006a5cdd4ca73a9ba5fec103dbe91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a61cecb31fa5e0817709ce178f0e2473334998a76cf7bb939a7cb942104f2e38
MD5 7a7885e45d0bbbd0d4900b75fe9547c1
BLAKE2b-256 6f45eeca18bb148af23ff1301e59f75c3720b790938016a1d9f434fa757d2c26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6a42ac4642737bfe53415e29e3e457845ab28f747f19e166879da83517291426
MD5 7c05b6dd51854dff4e8cbabf229bbfe4
BLAKE2b-256 9b3b17355121e1a66b78bd47705b42c6a848c986ffd721d94b65bf2b4b74581f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 291.7 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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b09b27386410214b9c9f9262160af3138c8177528875da9eaf6b4a27acbca213
MD5 80214e6a861ff5d7797d86e5ae11840c
BLAKE2b-256 2055591201a921690eaa55705df6ee0047278764a2a1ed78aaa7084446d17cb1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 338.2 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 53f4c0dceff001515f3e5d1928f7785106b33a1abcddad9c3a874d237ab4e7e5
MD5 0563084517618242d71812144c34a12c
BLAKE2b-256 2d28881d7787d8b5c8f3b0da16a30e4da894aea894a7c78e1d1824b2d32e5613

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 293.9 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4d1715fcbf5e9e3c08231ca1f6716ae7f8c83111194239fff768d6f3707f8d31
MD5 5eeb3b6144a063b8fab8ec8f44954664
BLAKE2b-256 ac219a0ac3b57e5cb1476196d01aa32513f7b8da4ed1211572930acdf3fc29d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a12d8110678bad2c9aafd20f6500cb6941321f96581f3dc2a5cc7c562c44297b
MD5 48f8abf686e39afa900dc2a2ecc17a6b
BLAKE2b-256 2cb258a793217243e4b4135d9f95156f3f12fa199ff7c2b84178f260422f7bfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 629cadd776eee80fe0e50015d58f12dc6af2a7c52e95755baf9cd7f32a453ff7
MD5 77b323292737951eede1acac363559f9
BLAKE2b-256 85a8502d33e1d49c6e7613b7f905713fd5429dbe5c513c2fbca3933e561c39a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8aad65caeff8a05486f0d06aceac9be256274792d3d2cb7767e56a036e5aa462
MD5 6d2d023400d49a5931a3af3f9aaccba6
BLAKE2b-256 9257e8f00cd24f86d2bdd60a2fef16c9357cd6ace42a78c4e21e6a4f3628ebd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb0e92eee486d87691bb9a23d1461c0cdfc4be8406f931a7e4da79929af9cd40
MD5 48685ebbaf541974cd974bef3966a662
BLAKE2b-256 f5acc4fcb7cbf6f013e64c9a343b911e28d1e75d0751840a2aecc5c50faff919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff3883730b39179550233332d07faf28158bfc78d98219a7aaaa1ab13d6ffbc9
MD5 ddfebaf4df1b3a0fc761a60c7cbd50a3
BLAKE2b-256 a8c8b3d291036cb486965130f94e7c36a9fb6a7c562ccfa3806043af8a8ed9a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc9512e32ea6f25ce47b2227d86f1f38c28d35d4e908777f0b7f93f41afc141f
MD5 f186db5dada2c95a809c4c9f02132201
BLAKE2b-256 df23243366a101605ceffb0138e43a0a5d3a698b7dde0c3085d9be163f2be342

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 291.6 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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 92e16104328f7631b2ec3fc20e9a1cc07a73294da8eb20bcb83753867fb9c76f
MD5 0506ccd4cc172d5d3dbd56cf1088f14d
BLAKE2b-256 6f66b7ca9a3bcb8202d0f2fe19647f7284b7d1103bb2b5f0d4ec1c196c20773f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 336.3 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8faeca2e455b16e44629949fbc64df979eb3b5fc88a6f7136204433f26c93a50
MD5 e45f708911f89017e9292b408c8837e8
BLAKE2b-256 0411c1915e9f3af4a4ed6727ed4b8ed97426d78851ab9b25a50697327b1d0a2a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 293.9 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e24b6fe9fbe0b2a4ea3ec1b6700f0e62f219ab380de0b75ac3120303181f3f81
MD5 4c963f679f4127338eff1fb657b07590
BLAKE2b-256 6d8768bdb7aee7e7fa35a039e34ef9bee251dedc5413e3955ddf61ea6f06ec1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6734358fac097f6de1e3ba035fe4bf8e9b49013288e4e5e80b4ed3d4754d4391
MD5 847a9d350e319d447170c0ff9643fd13
BLAKE2b-256 1b978f7032d18642568839150b0e414c0a9eed784ebfe7bb5f7db029b5bf6e37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef18e6873da4f5bbab6b1096f5f695a81e4de7c8312f416853327c38afd148a1
MD5 629e6a6dc8a1f9f7025323776f74f4fe
BLAKE2b-256 6a4b454e9dcd7481607c6021416d4f88be4e36a444075986f03485f373d13bec

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b87e3b540dd5c663f9d34dc5864b5de4ee40957cd46425025abef245d814d3db
MD5 0ec0aadf7646a563735577cf3f7c256e
BLAKE2b-256 b1e57f4ba77b162880b82b45518b3464e7119226f95ff9ba2fa100aac28d1d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4abd889468f34b238ef8bc8ddcbc0f581d5eb1cbcfbfff8b245fa13c97195f0d
MD5 17e13063a7d94167d53ae0c60a60db7c
BLAKE2b-256 6eb1fad64ceb68ba5e264a53bc13e404c8baa01e8b75561c0b13dd6bcbfd43b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 126b1e3a4a452f6f316db3730e484831e797b8c9d10a72f2617007ee03565b54
MD5 351345c502af939ea02fe89218673ac2
BLAKE2b-256 201a27b60bb153cb43919a1aa10f742d3dc040af991daa400bbca0eb081048e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccc7876a77bfcd67362fdc197c96f79410303c309a0b9bd8ab650245ef83e876
MD5 a1f0a6d4764a67cbc42eb88372f77307
BLAKE2b-256 88658d6ace23ad87466a1de1df39d6da49abc1cd060e4acfd699ca12e56afcb4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 292.9 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.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 db520c6518be689cd348e1c1654d435f1125795c05c9a0991d3d2147dccb94bb
MD5 57abe7afc9bd5fbaa0a3ef945ad64b9b
BLAKE2b-256 eb291bf2477f4a413c64f83e1bfbeba46d7e1a69e79fcdddd0b8e35f1ad55a7c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 337.4 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 470fbef78820642cd658863dde8d6ba4e8be30a8a5ad5366b831220da6f6fca7
MD5 78f2409d831472267280b468ce7df127
BLAKE2b-256 fa325d2949ff16253173108b104ca42df7d69eec115647c3e4df0922b2024ee5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: picows-2.1.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 295.0 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c585c994ae12432d4b35df531c2788e787b4f2f9a79277703c442e42bc8b08c9
MD5 e3940985deaacdf6b58d8c67f88b0432
BLAKE2b-256 d25f6e16b919c5f14704811575093df5e091261db05f3a8cbca268897b2c2642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 216ce3ef30ff98bcaba197b6ee6f5174ab803a68a40fb99b1aa6a1bb34c00712
MD5 8b9aea60652b6c12a3aad1a800409cd0
BLAKE2b-256 27cccfa3d5af76bfbe1be2c5a3d7f333440d6a8826e189bd5bf55b935a407143

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be3bc2f7db2351a2222cb2d4d6023340b200473b8ae93ee8af8759da9c034339
MD5 92e25c62c8a8cba4cf41708b91c100e9
BLAKE2b-256 1d2e07bebd7837347b79b21151ca82a228518cb1c65709aac30aae16f431fcc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.3-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.3-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.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68777431358f98ccd1c1083659b1c4165b719614f360a0c3ab37db0903f09d07
MD5 c5e85f10d3883ee60a7a5a12ff04ba50
BLAKE2b-256 8ff6c663968e9eebb7a1cd7fe796e9b2b0818ddf374d7723ec0c6958d441a0b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35d7f2c9263a2c52729f995781ed5ea87b1ad1ccf4732805d8113b879a774ad6
MD5 8e03b70308dd0d5bb7e7fbd29d3d8fa9
BLAKE2b-256 c42024124b2f1d1704e30d7ad651c1a29e2c9c9abeded53f2c529fd316b2a372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a1d4ec15862cb4625af6ce5e9b836fe7883f19753e7bda9c622c33b59e280f9
MD5 ac34cf6422ee920713a775e9ee5b0f69
BLAKE2b-256 d04a4ccc41fe795b06ca960264d199720e1582b57a4f5c36cc92fb622762c6e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for picows-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c95d9bb0e34d332af0a23bf98111fd38e8a88f7d4a9130fb2f04a48a6e5af2c6
MD5 d2f602dbf80a77ff658c124d9c46389e
BLAKE2b-256 4e64b5dfa0bd5e4e730f8d725dbafafdee8daa50ecb656ca67a8347fb748b342

See more details on using hashes here.

Provenance

The following attestation bundles were made for picows-2.1.3-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.

Release history Release notifications | RSS feed

This release

2.1.3 This release

64 files

2.1.2

64 files

2.1.1

64 files

2.1.0

64 files

2.0.0

64 files

1.20.0

64 files

1.19.0

64 files

1.18.0

57 files

1.17.0

57 files

1.16.0

57 files

1.15.0

57 files

1.14.0

57 files

1.13.1

57 files

1.13.0

57 files

1.12.0

57 files

1.11.1

57 files

1.11.0

57 files

1.10.2

57 files

1.10.1

41 files

1.10.0

41 files

1.9.0

49 files

1.8.0

49 files

1.7.2

49 files

1.7.1

49 files

1.7.0

49 files

1.6.0

49 files

1.5.0

49 files

1.4.1

49 files

1.4.0

49 files

1.3.0

49 files

1.2.2

49 files

1.2.1

49 files

1.2.0

49 files

1.1.1

49 files

1.1.0

1 file

1.0.0

1 file

0.5.0

1 file

0.4.0

1 file

0.3.1

1 file

0.3.0

1 file

0.2.2

1 file

0.2.1

1 file

0.2.0

1 file

0.1.4

1 file

0.1.3

1 file

0.1.2

1 file

0.1.1

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page