Skip to main content

Ultra-fast websocket client and server for asyncio

Project description

picows banner

tests codecov pypi downloads docs codspeed codspeed

Documentation   •   Issues   •   Discussions   •   Examples

:zap: Introduction

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

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

Benchmark chart

The above chart shows the performance of various echo clients communicating with the same high-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

Project details


Download files

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

Source Distribution

picows-2.0.0.tar.gz (91.1 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.0.0-cp314-cp314t-win_arm64.whl (303.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

picows-2.0.0-cp314-cp314t-win_amd64.whl (403.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

picows-2.0.0-cp314-cp314t-win32.whl (337.9 kB view details)

Uploaded CPython 3.14tWindows x86

picows-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (432.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

picows-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (410.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

picows-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (429.7 kB view details)

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

picows-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (405.1 kB view details)

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

picows-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl (365.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

picows-2.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (386.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

picows-2.0.0-cp314-cp314-win_arm64.whl (287.0 kB view details)

Uploaded CPython 3.14Windows ARM64

picows-2.0.0-cp314-cp314-win_amd64.whl (334.5 kB view details)

Uploaded CPython 3.14Windows x86-64

picows-2.0.0-cp314-cp314-win32.whl (287.8 kB view details)

Uploaded CPython 3.14Windows x86

picows-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (431.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

picows-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (402.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

picows-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (428.3 kB view details)

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

picows-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (396.4 kB view details)

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

picows-2.0.0-cp314-cp314-macosx_11_0_arm64.whl (343.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

picows-2.0.0-cp314-cp314-macosx_10_15_x86_64.whl (364.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

picows-2.0.0-cp313-cp313-win_arm64.whl (279.9 kB view details)

Uploaded CPython 3.13Windows ARM64

picows-2.0.0-cp313-cp313-win_amd64.whl (326.8 kB view details)

Uploaded CPython 3.13Windows x86-64

picows-2.0.0-cp313-cp313-win32.whl (283.5 kB view details)

Uploaded CPython 3.13Windows x86

picows-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (429.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

picows-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (395.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

picows-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.7 kB view details)

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

picows-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (389.4 kB view details)

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

picows-2.0.0-cp313-cp313-macosx_11_0_arm64.whl (341.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

picows-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl (364.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

picows-2.0.0-cp312-cp312-win_arm64.whl (279.7 kB view details)

Uploaded CPython 3.12Windows ARM64

picows-2.0.0-cp312-cp312-win_amd64.whl (326.4 kB view details)

Uploaded CPython 3.12Windows x86-64

picows-2.0.0-cp312-cp312-win32.whl (283.3 kB view details)

Uploaded CPython 3.12Windows x86

picows-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (429.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

picows-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (394.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

picows-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (427.3 kB view details)

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

picows-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (388.8 kB view details)

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

picows-2.0.0-cp312-cp312-macosx_11_0_arm64.whl (342.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

picows-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl (364.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

picows-2.0.0-cp311-cp311-win_arm64.whl (287.6 kB view details)

Uploaded CPython 3.11Windows ARM64

picows-2.0.0-cp311-cp311-win_amd64.whl (337.6 kB view details)

Uploaded CPython 3.11Windows x86-64

picows-2.0.0-cp311-cp311-win32.whl (291.7 kB view details)

Uploaded CPython 3.11Windows x86

picows-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (427.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

picows-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (397.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

picows-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (423.2 kB view details)

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

picows-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (392.2 kB view details)

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

picows-2.0.0-cp311-cp311-macosx_11_0_arm64.whl (345.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

picows-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl (367.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

picows-2.0.0-cp310-cp310-win_arm64.whl (287.3 kB view details)

Uploaded CPython 3.10Windows ARM64

picows-2.0.0-cp310-cp310-win_amd64.whl (335.3 kB view details)

Uploaded CPython 3.10Windows x86-64

picows-2.0.0-cp310-cp310-win32.whl (291.9 kB view details)

Uploaded CPython 3.10Windows x86

picows-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (427.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

picows-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (397.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

picows-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (424.2 kB view details)

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

picows-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (392.4 kB view details)

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

picows-2.0.0-cp310-cp310-macosx_11_0_arm64.whl (346.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

picows-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl (368.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

picows-2.0.0-cp39-cp39-win_arm64.whl (288.5 kB view details)

Uploaded CPython 3.9Windows ARM64

picows-2.0.0-cp39-cp39-win_amd64.whl (336.6 kB view details)

Uploaded CPython 3.9Windows x86-64

picows-2.0.0-cp39-cp39-win32.whl (292.9 kB view details)

Uploaded CPython 3.9Windows x86

picows-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (429.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

picows-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (398.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

picows-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (425.6 kB view details)

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

picows-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.0 kB view details)

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

picows-2.0.0-cp39-cp39-macosx_11_0_arm64.whl (348.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

picows-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (369.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0.tar.gz
Algorithm Hash digest
SHA256 ae79612f6b176a31bb360d4c0cde32d5384b86d816526a9609395a2b919b81bd
MD5 9b6bf98e90cb015f095a8e31a62e6305
BLAKE2b-256 a850a63749b96b92ed5b19db98897106239ce6f6cb5bcf85caa1c3a86d79a1e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f296deb1cdad20f766fe1feb4c0321a2cd5936a760bce420bbf3598025f37e5c
MD5 ab180f8085f4c301328aa9313d1fe182
BLAKE2b-256 b8761ea8a47072729e9b0f634e06929ca4641196a0ffe5b8da0ff39668b170d0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1fff845cd4fe1a92d9c32fb76ce15a5b4c439b1558ef73f3dedeb7b748fd1726
MD5 e815b631bb5655ec85ca5f7019bd5e27
BLAKE2b-256 fdac18e9f08d3f1ffcc4991d6213972f738d31a2cd1e3b16eec382446c706343

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8fa7eb00a906f62706ffbd3672a275178e3d7ec6555135bfef6a8c390668261f
MD5 a3d50dcb4d516d979b5d0bb1ec196f1f
BLAKE2b-256 e4f79684f2dfc26accc7a6deb2f6db7872995f004679029d8bec4209d46d3f5c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9d1e2562fb4e82c94b56f775d32a21ce6b0deb3012a75556e15a9ba6540aaf3
MD5 f263849404c5fac661f677dab643528f
BLAKE2b-256 f8f49fbad9b431ea86d2bac292e1501cdb29b034472d637cecbf0921a17e5fd4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fffc6a59043489ee12ab845916031e289c02fdb433c528e0765f562acd83f89
MD5 6ad5ed779329437a4f5c8a23e1c2453a
BLAKE2b-256 0e06e38d97f129a2ca46c95d4a5d3508d6e3c26a6095830cf7fe24377d0e4e11

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34eb499f4e7ceb98af6ba75ff70392316fa1c5a752f656512c6d69499860dae7
MD5 42125cecd5e6d46e2845f1e5043ac65c
BLAKE2b-256 d8e7c41f4146f53b64260df39bc246fc32fe3b29c5c4aa1b48e3861274f35329

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 207782626e670df9c7e4fd6f690207fc646133adb86e50578f9a35beead90be2
MD5 dbea5be38583cc595a1de76c2c5a1178
BLAKE2b-256 da84fdf92ed2b631a0bdcae78a0c90ba1c5da4d155c9ecdfdb34214d26b0111b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b7b9750322ae3fdc8447f144d82c8440a35d052cdacadf78585f7ed1b085b81
MD5 6aa25e962f0fd5c4fb9e0f6d87235992
BLAKE2b-256 0ebc757c96488b04bc33758aa4491cef4cd1e53103f5627bfb5f42427686ec7a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cd2781dd9ef3208076d9f88068fd744b12b76622e63843fadddda350b13b3ed0
MD5 6f67915566d95a706ec1f7fe16e138ba
BLAKE2b-256 dd45f5ef997a43329fdbd2952ebe7e817c396c4630a2288fd82503aafb715a8d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8f9cfde920c8ec12a642e627a213060be1a36bbd02aabc7d91135f0bd7f623c1
MD5 fe890cc8b9865260d98ed0e9d5aa885c
BLAKE2b-256 556e1097c78d319e3ae2da08c027f4230c4fb3711f39710027e87d82f0ba9b0f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4dcbcbb637f031ff9a8f572e90d5b624ee2c6abc0539f2c23a80625b7cb721cd
MD5 3a58d66a8d562ef021bbeffc5d416d0f
BLAKE2b-256 fbe9781e9e8c7bcd5a73177b3dbb6bf04958c52eca4c737260282618555c8e52

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9a8e494c113dcb4c42b2fc58e85a4217dc2a3d2fd1ad1bc75d8238401143ef15
MD5 1af56e4bf0a594d990be3af8fca2f59c
BLAKE2b-256 e888fb1006fb7474c3a903609da76de2738c11e747c21df3d50ade6b723ec801

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcc065af978054a451c0cfa5497b30495cbe43506950c70b8e738a1dffbf5a32
MD5 374f53f772c0dc7b1d10d887c78415df
BLAKE2b-256 19b0e32c08bffe50a3a46c663e6181bda42fd656a2b442a03526c8299d6b1460

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a76c08cd207c96a85bc59cea5961f04acb5bc595a94ea07e570e23ccb4e62635
MD5 9f9ee5c8dcd2ca1787d28fae8d3ac6c6
BLAKE2b-256 bdbbdd30178d971f48fbeeb0fe2d0f412572a743c762106e8689bd43a1839878

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebafb17055ae00d2eab362f18cfa0c061e6d5bbe6aa03995accd2d748d71297d
MD5 8ccc7456730dff58293c5bab8330b828
BLAKE2b-256 1de6932e0012044c892b93a7dc8bf0f65cf0e05edeb3e3b6cbdf89d60e9d9b3b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7230f66eaa807de62a1577f67e58f9444c7482c55a003a6154073122753ef3c1
MD5 809232bdeab9b1a1eee9391e44911b3e
BLAKE2b-256 48112762f04982b13843d0840cf1ad25d96d246d1219821a265b9dc7b8b17c37

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35c2ccb69111544eae9772ef2d5ecc99299eda31ff383e667435f2dae7c7aa73
MD5 9dfe91d0936a2e1c39f3538d59bd36b9
BLAKE2b-256 4affc61bb32c5fd7f9d242e83fd6d80766d319c70888674eebc084e10041452f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e548b56aab977ac33658dc98c699c6157f816e721dc4af9926158584ec1d5e7a
MD5 22f01b1e8a319d5e82ceef6ae8be3fad
BLAKE2b-256 a405db40b8a393c5898466f1dfff037eac536ea78e3e2c8ff118f51452e0a956

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4dea13951aee06fd12bf394deb47de514271c4f28cc851e5e819f0946483419a
MD5 99a5cef87aea5183405971d8f8143fec
BLAKE2b-256 b4987455a82e7fcb65e259f88f88ee34fc192b8394dbe4a5a07ea0f918613845

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d8a639b6e8a6805678ea135f89d0e2d8c67bb8f7b4d9b270cc2e1051edbfe4ee
MD5 fbbcb4602d33ec99aaa0fe5227706d0f
BLAKE2b-256 b2f88a08aa834ef28060f00bb5a4f15f980859f7d4dfe85c176dc82a24149806

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e78f2866c948f8be3876107a7d4abcd0e0a1111cc9d127ff01ef280ccd861c1a
MD5 c92b6f26c287c8f8890ba0258e10093d
BLAKE2b-256 957e18af9914d7a105ad9d713ced1b76f449e867567bd7664991bde4fe36b130

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2fd77c74189a1991fb604943e2a92c75f1e13b71cc26f8cdfd4fc11ba82d090
MD5 58b04e348c69788b1edde29438f85401
BLAKE2b-256 b5cc784a8400f9a50157b12b5581868e5765139ee034f17e7818a86141ea21d6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67f9c0ef257bf2ce8e6239231e3e62e17ef2468a03ad9b645e7fc5cab6f40ea7
MD5 9e55ad83a398b9f8d13f6095125ad345
BLAKE2b-256 6bcdc7db417e91848faeee55f116c7988cd6b174fb161e3bee5a220d22714d0d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06e4759b4e2987a2b54743c021c766c4f21735068c444dcb84351f8f680f3c54
MD5 bf1e76a41104e9887edea2ee9bf451c3
BLAKE2b-256 c8e02fb21d6756401b9503f42456b08e11c7e960831c7f3a216b05f5b5c9d678

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0edf32cd98509ed4365b10b50bb5522a04795caabb9a5144c73ce97851cdbc1
MD5 231f88946fb6908b654cbd1ffb0b3be1
BLAKE2b-256 c47cec3daf1b604d679d87e71f14b0e8e683ffe072b8d895879a5b820b07f0a9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60cbb4be346d058cfc91fb902f0eec4c6f7da5099d69db5930b7ad710d5535cf
MD5 cfa2f2d7427dba2bdd1167eedcc300e8
BLAKE2b-256 472b0e73b3cd8734ff124a555e59f7352bd20798c1eda206b1e3eabbc4172d66

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 425a818c437731c89180b18aeaf56016173467a4d926453a5febb73f444094d5
MD5 fb569a36274f33d63ca05371e4cedbd7
BLAKE2b-256 71a62346e4a47ae074820389506d717684a5a70d4e51432420bbd262c6eed6f2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 015616462e21dcfa4ee0e386a6b1465ef932ce864896d0e8b2a7f72b493bb6aa
MD5 08c3b6660b59547928651a2ddcda5754
BLAKE2b-256 21992c9a9b0b5f05b15761f100377c1e0be94eb0317101cd02da5d25460bbb61

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a3be2e86bd7c64951e57e0ac0335af478c41aa8633691ab257d4eecbc3ad7d8
MD5 0b2c06ce400e3a502c166426be30c42f
BLAKE2b-256 832350f16887b06652f095e3a9d211314f2d9dd522dae88d54db2cb4e70b0bb7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c88e926032d9bd8fb42ee6d7c5cc1bbdfbcb90be9f8daff1133c616e3644a005
MD5 4e11c718f06ae888b5ad5d4727b5079a
BLAKE2b-256 4a6c40087ac6d1d2d882678c996cc197e0f589ed7a4d001a6b5c01e585668be9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b46c061953b15cc924f74fc5d649bf12aad98a773f7d490043dbb42442a1eec3
MD5 c95efb7364eef8412dc269407b4e2833
BLAKE2b-256 2b6896ebbddf23eb82798d81e268a882916b19168df97610c371c4f45595b465

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b3883e974b015b426c9b27275a0bba862819d15d2a5c977f323d9247e30620c
MD5 dc32025f23746c665259bfecc36d9ed9
BLAKE2b-256 95a3004c75a40493e98cebf306845ada339aeed53fd221657898f36bffe1eb21

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb16dc4b104f1dd6d06ccdb33f11b5f4c085d9f6ea7739853f546f08b87a7863
MD5 ffeed14058d685187e8cf8e1d85416d0
BLAKE2b-256 5860e0599b929f694f05bd9a4731926bc2a308bc770a474cf1e754ef0d162f9e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8e7985b75cb60e9762912167d33d2ec3a8afaa66c918a79656b8ba99b19c3a7
MD5 b3d001fdf730073322cc026e62cbb432
BLAKE2b-256 ff897f12cf5133791c87a9d0461f4e37a6b5f940860444ee9e41b4e097871ff1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bf420d76963fc017ae82af05a316e3fd502e953d862f13096688212552854ca
MD5 0e64cd019df10806d20cf0e3b4b5ae50
BLAKE2b-256 834dd7aac0c50d6abb96d964c375475fd6fc32aadcdbc949fe033b8d4bd21546

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a78a71e6845fbbc6ebe9385b862221085b6c5450889eec520b0baec53beaee4
MD5 2923c29b36e5c684ed23f54f694d0f6e
BLAKE2b-256 52794c6ec43ddefe99ff372a121caa4ff9b0dd8982db0e142fb1a9881dbcc904

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d0a09c6a116831978038ad565b3443ae68b6079ff12e4f4091689c5e0a01f7a4
MD5 d2e0cbaf06989c960d2e7baeacbbcd1f
BLAKE2b-256 98c4de6f3a8462b3df2e76d3cbca661a053d1d10b246c47b22f984aafed9f84c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75a49a598e78e5d007470291a8710b8f1f434412b106b3c526e6e1c8c3d76c4d
MD5 d76b4244e1fab0c5dd1f2b2f286542eb
BLAKE2b-256 8040e2e5d8aa27be7f173113a177dcc359975221811e010936ddf3914135b7ab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 42c1466ffa5f47629f5308e082ff6e2a492c5e34556c6aca7872db938914d9bb
MD5 014237f39e984e65d496baf277fc8f0b
BLAKE2b-256 ed9b6d12c8c6eb48434491a32fecd1a3891fb324c5cc6a7da6ae51d791e2d4e8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bde49a603284c9756401038e91ab9980d8dc7b7771b7a1104add714703f5182e
MD5 80b31dcb7f772b37be2860678f03db22
BLAKE2b-256 115d16be1f09802efa60cdfe4a0d52fc711839229784b9eb32371f3b99783750

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23ddc7ac11e907d396f0440c18b08a17e0e429db1da4f8b0c3e3d5142766cc41
MD5 d808b6acd0828982383fff6ed194cac7
BLAKE2b-256 69d9ac4576f5df805c9899e4030cd23ab547ec6c290023394ba77eada2c6e310

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c05348806ec400f0a158f86d8baa0abf689a539e1526145339c3528f263cba6e
MD5 613c45c41529930cb4e9c330fedadd28
BLAKE2b-256 5826788e289e4d8006f6999214e3683a8d61eff6cb9690e7fc408e03eb4f0755

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0fa57d8920b508b1f6c9f69f0e45cb181560d44a87d57cd61fe3a710a1276909
MD5 a484653be03d3f8711f68bc7377abd86
BLAKE2b-256 c59b586ba6522d9ffbfe77772c25a83528d568a61dea441e4ac09493f8f32e1a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 462b576adf470a5b3187eeb914fc892289ce065015bc3941160312b7104ece2a
MD5 a489ba19a642d0026d49626704d2e0ce
BLAKE2b-256 7310ab181f56cf494ef452859cfa308aa54d5e51d1a5455d15ef9f5e52eda810

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f9f1ee4d288c28197096448b174f3cb784cc31e9057493b503e9bc48981f1a7
MD5 7c8486f05e5c3deb0c1c0b4e6e60336f
BLAKE2b-256 a19725815b8f4f1f24dec67cc725dc7e383acf6e9d6b95db7a82241264874a50

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 944dfd8c3066e6f7bb7ffd6161db1dafc4b1e01748af46bf60c7fb6e00f6064c
MD5 2a240ce4415d88654b07a70cdafa82b6
BLAKE2b-256 7be5c90b54b1b654d24e52004730baa6d7139e70498908fef15f964306722289

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4629705cf03c7eadc4cffd3501c1bb0f671ba4a5b8ddb092d35aeca9d848ce66
MD5 ce825eb050f50940ea9ce584e762be1a
BLAKE2b-256 521d8d666e4dc261d2bb2230a53d73e49c2fcee09bd8633ad3150a7c21f17df9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0254f702771296181ac359527ad93ad9350a6e2380536a59dfda9778b6853450
MD5 93639ba5e48182b778edc68cd86321b3
BLAKE2b-256 f13d528bf6b729c0ebf210997bf2174b9117bf6facfc294b53b151b294d570c5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 667ca851dbf2d37b4a003f8f846078c19dfdf19799996b12ca3bc5153820aa3a
MD5 8ab838948470fdc2d834eb3dbc2f3080
BLAKE2b-256 b17ce5a62edb95756ce673a1ca9f9cc730c4d6286a929daeeaccbabcbb48d37b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6c6aa600474f6ec91d50b0baebeddb7bb4252066de7547072825a447a4f6ffc
MD5 a176724d82f61a3081028463f21cedbf
BLAKE2b-256 7b476209aecd11a458ba29d9a4e870d15e2db4208a2a81e82f51ca99d545d7dd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a939b9a47c8c999008f345d6a64cbaaec1dec2cb120c560f87bba39f0e7c22bd
MD5 ca19778e9e3d0c41cf2774ad4857f87d
BLAKE2b-256 fb18484af39de1eb8e83d170c761077c87fa4ed63876d84f7172ac6963406f25

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa2d6f942b4a469e33c3d2d005c87f22a46c997a9f0636711dc52196ca1f9063
MD5 03d03a6bfd7d3594fd79076e4fb3d471
BLAKE2b-256 08227d5db5c9bec8795638eb15cbf011fc2e5dc92d0d589b7a3f9a645830fb39

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0affdfdb199e835a856351d930fc752ba2623ad2380b297d190e564b4565942
MD5 ba62daa695378651e93d930a9942b0b2
BLAKE2b-256 78ea6c07c1db1628a5138faf01f58bf4395ac135e3d85eb3515b1fb2e53a33ba

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4952306c4dc177622ddf09b3adcd6b0a0f5564025a83309024bcd008d7d4c040
MD5 e3b05caa4465c4c65bbfa58fffccc772
BLAKE2b-256 4bf9f4ce0f53afffc5b7e3b90eaa9411441e6207d6df939881b00dba6b35bcc8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 3af4744da79a4841c6f0e097e6a4b9e14ecfa6cfebbb49ceb26688a51e37e416
MD5 46163d569f224cb65dccf7877e9cde48
BLAKE2b-256 0d8e3a1a2731ac32959fe132b73e7557226ee9f065657df3f1cfe3a5c2118688

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e66fbfa762934af513af43a3893c5dfd906146c66027c66432c6f555b854ff80
MD5 7ee45f6640c372462ec91b0431b05844
BLAKE2b-256 b88f47eb44d7feb8d0f67c9e803840a23eda5924a862cbc06962cbeefcad5a90

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

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

File hashes

Hashes for picows-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5f8cf7920ab7c6f7e9fd2107a56c37fdeee3347d8c0f86f8729a6765ee3496f8
MD5 4fa4c62b6a43357bdc81c7e12bc45cc1
BLAKE2b-256 7fb5636e2c7562f941d43f17f053b56c671554fe1b1b7a81ba2bf9c72e1c8f52

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8fad2c410f87fa601100612e4e3e875a56bc0c46ae300276c7717fc8ea9a9cb
MD5 c41a9a5f12a40bd2f03f6f198fe46dde
BLAKE2b-256 e13dedf13f6dcf239e7ee27e2e2e1df2176acc93eb770b0bc2357de79622758d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 408dbcd37f8dcd2a528d3e312c399928d7cc71f16ed42fd015ae9d68f577427c
MD5 1df1b360fb109fb4df22c4a1caeb057a
BLAKE2b-256 753a7903142579bf3a12d8ba8f7e65c03b8bd46b9dbfaf0a4870407d71d7c570

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e767c090880ecc91a47c765f6c2afcc2ce3a6364592fd64a0457fd237259d755
MD5 ae7637be9087437605c1c41f3e0e0905
BLAKE2b-256 c9faac41675565b56a2e632ccf20d3435d1ad380abee45993509a1c8d11560ec

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89a41036aaa97772523c6d9f4674505b911d4f5aaaa537a9b293b0af03a5f2c9
MD5 78aaabcd183a0b4d8213563ca97f0a76
BLAKE2b-256 c9306eaa49f0fa5919b03fb627ce26ea6ddd1a26b093534621c1c7409d5813a9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b602e64d8189cf3cece696756ecbb299b71edacae501406d43baf90ada9c240
MD5 0451f945f9b3d3bd45d448b421c51be1
BLAKE2b-256 0bfdc831608fdf836225e31ec966a9d799606dc144dbc38e651bad8c20072ada

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

File details

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

File metadata

File hashes

Hashes for picows-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09682c4de26a10bcdfc57291b6734a10e2d4c732eb67c62bce01da5752c0ed1f
MD5 bfc8b3296449866f9b67501f6492ca9a
BLAKE2b-256 4a1ae8fa549aadbdfbdbe1d1e0c8ebf8ea8ea0aebf8fa9ab8a5e469eff756155

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/picows

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

Supported by

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