Skip to main content

RGB packing for VapourSynth frames

Project description

VSPackRGB

RGB packing for VapourSynth frames.

Converts planar RGB VapourSynth clips into display-ready packed formats:

  • RGB24 → BGRA (8-bit interleaved, stored in GRAY32)
  • RGB30 → A2R10G10B10 (10-bit packed, stored in GRAY32)
  • RGB48 → RGBA64 (16-bit interleaved, stored in GRAY16)
  • RGBH → RGBA16F (16-bit float interleaved, stored in GRAYH)
  • RGBS → RGBA32F (32-bit float interleaved, stored in GRAYS)

For higher-than-10-bit formats, the output clip is 4x wider than the input to accommodate the interleaved R, G, B, and A channels.

Installation

Prebuilt wheels are provided for most platforms. If a compatible wheel is available, no compilation is required.

pip install vspackrgb

With uv:

uv add vspackrgb

Benchmarks

Blank clip with keep=True

            RGB24 Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┓
┃ Backend            ┃ Frames ┃   Time ┃     FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━╇━━━━━━━━━┩
│ vszip.PackRGB      │  20000 │ 5.917s │ 3379.98 │
│ libp2p.Pack        │  20000 │ 5.975s │ 3347.32 │
│ akarin.Expr        │  20000 │ 5.962s │ 3354.39 │
│ vspackrgb (cython) │   6000 │ 5.556s │ 1079.89 │
│ vspackrgb (numpy)  │   3000 │ 8.605s │  348.63 │
│ vspackrgb (python) │     25 │ 9.761s │    2.56 │
└────────────────────┴────────┴────────┴─────────┘

             RGB30 Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃     FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━┩
│ vszip.PackRGB      │  20000 │  5.911s │ 3383.25 │
│ libp2p.Pack        │  20000 │  5.915s │ 3381.34 │
│ akarin.Expr        │  20000 │  5.933s │ 3370.95 │
│ vspackrgb (cython) │   6000 │  6.437s │  932.18 │
│ vspackrgb (numpy)  │   3000 │ 13.371s │  224.37 │
│ vspackrgb (python) │     25 │  7.044s │    3.55 │
└────────────────────┴────────┴─────────┴─────────┘

             RGB48 Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃     FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━┩
│ libp2p.Pack        │  20000 │ 15.819s │ 1264.30 │
│ vspackrgb (cython) │   6000 │  8.459s │  709.29 │
│ vspackrgb (numpy)  │   3000 │ 12.185s │  246.20 │
│ vspackrgb (python) │     25 │  9.870s │    2.53 │
└────────────────────┴────────┴─────────┴─────────┘

             RGBH Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃    FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━┩
│ vspackrgb (cython) │   6000 │  8.883s │ 675.47 │
│ vspackrgb (numpy)  │   3000 │ 12.888s │ 232.78 │
│ vspackrgb (python) │     25 │  9.858s │   2.54 │
└────────────────────┴────────┴─────────┴────────┘

             RGBS Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃    FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━┩
│ vspackrgb (cython) │   6000 │ 23.383s │ 256.60 │
│ vspackrgb (numpy)  │   3000 │ 24.899s │ 120.48 │
│ vspackrgb (python) │     25 │  9.750s │   2.56 │
└────────────────────┴────────┴─────────┴────────┘

Real world scenario

            RGB24 Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃    FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━┩
│ vszip.PackRGB      │  20000 │ 32.561s │ 614.23 │
│ libp2p.Pack        │  20000 │ 32.851s │ 608.82 │
│ akarin.Expr        │  20000 │ 33.114s │ 603.97 │
│ vspackrgb (cython) │   6000 │  9.998s │ 600.09 │
│ vspackrgb (numpy)  │   3000 │ 10.169s │ 295.02 │
│ vspackrgb (python) │     25 │  9.957s │   2.51 │
└────────────────────┴────────┴─────────┴────────┘

            RGB30 Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃    FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━┩
│ vszip.PackRGB      │  20000 │ 35.110s │ 569.64 │
│ libp2p.Pack        │  20000 │ 35.950s │ 556.33 │
│ akarin.Expr        │  20000 │ 35.505s │ 563.31 │
│ vspackrgb (cython) │   6000 │ 10.987s │ 546.10 │
│ vspackrgb (numpy)  │   3000 │ 15.695s │ 191.14 │
│ vspackrgb (python) │     25 │  7.110s │   3.52 │
└────────────────────┴────────┴─────────┴────────┘

            RGB48 Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃    FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━┩
│ libp2p.Pack        │  20000 │ 42.757s │ 467.76 │
│ vspackrgb (cython) │   6000 │ 13.680s │ 438.59 │
│ vspackrgb (numpy)  │   3000 │ 14.353s │ 209.02 │
│ vspackrgb (python) │     25 │  9.774s │   2.56 │
└────────────────────┴────────┴─────────┴────────┘

             RGBH Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃    FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━┩
│ vspackrgb (cython) │   6000 │ 13.862s │ 432.83 │
│ vspackrgb (numpy)  │   3000 │ 14.358s │ 208.95 │
│ vspackrgb (python) │     25 │  9.785s │   2.55 │
└────────────────────┴────────┴─────────┴────────┘

             RGBS Packing (1920x1080)             
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┓
┃ Backend            ┃ Frames ┃    Time ┃    FPS ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━┩
│ vspackrgb (cython) │   6000 │ 32.984s │ 181.90 │
│ vspackrgb (numpy)  │   3000 │ 29.858s │ 100.48 │
│ vspackrgb (python) │     25 │  9.788s │   2.55 │
└────────────────────┴────────┴─────────┴────────┘

Building

You only need a working C compiler/toolchain for your platform:

  • Windows: Visual Studio Build Tools (Desktop development with C++)
  • Linux: GCC/Clang and Python headers
  • macOS: Xcode Command Line Tools
uv build --sdist --wheel --verbose

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

vspackrgb-1.2.0.tar.gz (10.9 kB view details)

Uploaded Source

Built Distributions

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

vspackrgb-1.2.0-cp314-cp314-win_amd64.whl (79.2 kB view details)

Uploaded CPython 3.14Windows x86-64

vspackrgb-1.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (495.7 kB view details)

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

vspackrgb-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (493.5 kB view details)

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

vspackrgb-1.2.0-cp314-cp314-macosx_11_0_arm64.whl (89.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

vspackrgb-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

vspackrgb-1.2.0-cp313-cp313-win_amd64.whl (77.0 kB view details)

Uploaded CPython 3.13Windows x86-64

vspackrgb-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (500.8 kB view details)

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

vspackrgb-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (495.2 kB view details)

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

vspackrgb-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (89.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

vspackrgb-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl (92.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

vspackrgb-1.2.0-cp312-cp312-win_amd64.whl (77.2 kB view details)

Uploaded CPython 3.12Windows x86-64

vspackrgb-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (504.5 kB view details)

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

vspackrgb-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (499.2 kB view details)

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

vspackrgb-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (89.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

vspackrgb-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl (93.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

File details

Details for the file vspackrgb-1.2.0.tar.gz.

File metadata

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

File hashes

Hashes for vspackrgb-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e86c06e083cbec909e59133be3ecfea4abc3050ee83cec7abf974d106924cd46
MD5 120001dbab0b3dd8098b218581cb27f1
BLAKE2b-256 89d3f9e87166caa9ce30487794e36c8eae52086b37ac4317bc134b7cca369a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0.tar.gz:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: vspackrgb-1.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 79.2 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 vspackrgb-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 211cc63c6fe4adda49058bc9af9b0e133fc0fe3ba2fbca637e18c1243c2e4acb
MD5 8a84827acb706ac78934081f57ca88aa
BLAKE2b-256 ecf037bfcae91aaf72fc32ccc6a50405a12d81a8fb0a6ad7127791e21e6be847

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp314-cp314-win_amd64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 163c04be1ad48075b642ef792cbf66dd36a31c32a569d4f0a0841593c54da95b
MD5 fbb17b92b2fb9ed9d12e76d978e82d21
BLAKE2b-256 fe8eeefe696a72a7412ab814c54b38840d0523d5c8396e3d63763db15de0e89b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d632f3026ad9687cefc1da52b621ec7744a1f029d15ef5a114341e954438a7ad
MD5 5ad499c1f3045d21c0cb402ecf74cce0
BLAKE2b-256 5866220271c9ef584470f0b9e78224b3a595428381b8714748c2ee48ab50ae90

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cdaeff96d23fd6c6246a7d67fb748edeac9a7b9938568d75251569c979a459d
MD5 86f351fdfbbe800d75e1a957102884b2
BLAKE2b-256 4b507e5c0fb38ff7a46bafbf6ad0c8b4294bee5392ec94a3d467e4a707169225

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 895cec1d91fd5499a9d7a0eef9dcd1802479110777a2764e9d0264eb23c8c208
MD5 2693b207fbcafe7f05b248f94619589c
BLAKE2b-256 70f4559e4c4402c08f87cdcf79a42c02a79e91ba0516048cac873e27b92d8bd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: vspackrgb-1.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 77.0 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 vspackrgb-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c9206af0b04c347832c87cffc01da1bca2d1bb4a227cb96d30742299d9dae177
MD5 f04e478031c4f444a48a3ef7d083919f
BLAKE2b-256 6e887989749dc5f2d48d199375dff9f70228be6ff14bfa4f070d229b40ff5c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp313-cp313-win_amd64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8cc3566f31efc377baed70b5354c0f648e0cdf5b1d14d16610f9013d36438f2
MD5 211bce0eb4faf7eb1bd45e4b2a31e58e
BLAKE2b-256 85f0fcb6d872d3269f9cc68e50fd2dbfc52c36b9b83b42f2b1563ca660d72d2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d9c72c43ffe04fca2ecc9b0e851b5c97e42256e166463ae2bc8558816479b15
MD5 fd8f8d026579f02490212ef28c2b9753
BLAKE2b-256 4c004d7b6cf4246fb3898770958cc4925327b30fe84d5e3235a0ea5e1d2d0583

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afdb4174298324ccda22ac9fcaeb80becac79cc6d2d15b838db5025e66a80140
MD5 e6c98f027cfc5a98b0d6758d85caa26f
BLAKE2b-256 e58352c00cd58f1ebdda2e6c7efacdec3dda13b46530428042d179c5514f909b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 16f67e40e62c23f4db3ad0e36a7504494f7e56e8ae39c9d8cdf00667f7bb5ff5
MD5 b6aa58210f45c2ea773e507e94c03d1f
BLAKE2b-256 c55b099667600889328fdec4dccfa67f449874951e0174c3ae74cc785765d2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: vspackrgb-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 77.2 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 vspackrgb-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b797966cffe2058ca823c678385e00920f945463ae01221a9a0fe2dffb2f5c9b
MD5 c6d410327dab8742060a30793a7853aa
BLAKE2b-256 f0602a16943bfc3c9c5bd0165d745013762b2b6823e369c048bad47059057e8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp312-cp312-win_amd64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 440ea74e472a4a2b94d667945a3ef0c1eca2883d064da371c706898a2d9ddaab
MD5 d66b4360dd138e121b43e2286af24c72
BLAKE2b-256 21c0683b7434529584eade0bf27dd5ebff25bcc7b628eeb5eb94545f9a2392c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8daa5fe69401150bb9dfc680a3ddf790d24d2798a4dfd56d7dacabb444de62f3
MD5 4fd013e1440205809659c0248e3cab59
BLAKE2b-256 b6f0161b1ae0ec12d4dea24e46906e2c158565ff5c1767677da967cfcc7bb38d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e03703005b674a94a3e859990bf92e1419f98b40ec817c4291e26cc1aa2a04b
MD5 5ec7f3050baa7c4b15886ee98736a2d1
BLAKE2b-256 99b8b5c7d55a89b002d5b97f8d2c80a4c77d39f7519b19f348e1cac8e1b58774

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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

File details

Details for the file vspackrgb-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for vspackrgb-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 51fec743574db551ce4401e9524b97bb44e15a470450d75e914c154f99c8c5c1
MD5 9502f4e7af3f61ce2a6c6606ebf254ef
BLAKE2b-256 57db2965231f5ff8b84a7cbc22051c313f8615a08d2378f702ebb1e10f0641b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for vspackrgb-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: pypipublish.yml on Jaded-Encoding-Thaumaturgy/vs-view

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