Skip to main content

Cython bindings for the ThorVG vector graphics library

Project description

thorvg-cython

Cython bindings for the ThorVG vector graphics library.

Overview

This package provides direct C-level bindings to ThorVG via Cython — no ctypes overhead. It mirrors the thorvg-python API surface while delivering native-extension performance.

Platform Support

Platform Linking Strategy
iOS (sys.platform == "ios") Links against thorvg.xcframework static slice
macOS (sys.platform == "darwin") Links against libthorvg.a or libthorvg-1.dylib
Linux Links against libthorvg.so
Windows Links against thorvg.lib / thorvg-1.dll
Android Links against libthorvg.so

Building

Prerequisites

  • Python ≥ 3.9
  • Cython ≥ 3.0
  • ThorVG built with C API bindings (-Dbindings=capi)

Quick Build (macOS)

# 1. Build ThorVG
cd /path/to/thorvg
export SDKROOT=$(xcrun --show-sdk-path)
meson setup builddir --buildtype=release --default-library=shared -Dbindings=capi -Dloaders=svg,lottie,ttf
ninja -C builddir

# 2. Build the wheel
cd thorvg-cython
THORVG_ROOT=.. THORVG_LIB_DIR=../builddir/src pip install -e .

Environment Variables

Variable Description Default
THORVG_ROOT Path to thorvg source root Parent of this package
THORVG_INCLUDE Path to thorvg.h $THORVG_ROOT/inc
THORVG_LIB_DIR Path to built libraries $THORVG_ROOT/output
THORVG_XCFRAMEWORK Path to .xcframework $THORVG_ROOT/output/thorvg.xcframework
THORVG_CAPI_INCLUDE Path to thorvg_capi.h $THORVG_ROOT/src/bindings/capi

cibuildwheel

pip install cibuildwheel
cibuildwheel --platform macos

Usage

import thorvg_cython as tvg

with tvg.Engine(threads=2) as engine:
    canvas = tvg.SwCanvas(800, 600)
    shape = tvg.Shape()
    shape.append_rect(0, 0, 100, 100, rx=10, ry=10)
    shape.set_fill_color(255, 0, 0)
    canvas.add(shape)
    canvas.draw()
    canvas.sync()

Zero-Copy Buffer Protocol (PEP 3118)

SwCanvas implements the Python buffer protocol directly — no intermediate copies needed when passing pixel data to other frameworks.

Snapshot as bytes:

import thorvg_cython as tvg

with tvg.Engine(threads=2):
    canvas = tvg.SwCanvas(800, 600)

    # Draw a red rounded rectangle
    shape = tvg.Shape()
    shape.append_rect(50, 50, 200, 150, rx=20, ry=20)
    shape.set_fill_color(255, 0, 0)
    canvas.add(shape)

    # Load and render an SVG
    pic = tvg.Picture()
    pic.load("icon.svg")
    pic.set_size(100, 100)
    canvas.add(pic)

    canvas.draw()
    canvas.sync()

    raw = bytes(canvas)  # flat RGBA, 800×600×4 = 1_920_000 bytes

Kivy texture (zero-copy blit):

from kivy.graphics.texture import Texture
import thorvg_cython as tvg

with tvg.Engine():
    texture = Texture.create(size=(800, 600), colorfmt='rgba')
    canvas = tvg.SwCanvas(800, 600)

    # Load a Lottie animation
    pic = tvg.Picture()
    pic.load("animation.json")
    pic.set_size(800, 600)
    canvas.add(pic)

    # Initial render
    canvas.draw()
    canvas.sync()
    texture.blit_buffer(canvas, colorfmt='rgba', bufferfmt='ubyte')

    # Move the animation and re-render — same canvas, same texture
    pic.translate(100, 50)
    pic.set_opacity(180)
    canvas.update()
    canvas.draw()
    canvas.sync()
    texture.blit_buffer(canvas, colorfmt='rgba', bufferfmt='ubyte')

NumPy array (zero-copy view):

import numpy as np
import thorvg_cython as tvg

with tvg.Engine():
    canvas = tvg.SwCanvas(400, 300)

    shape = tvg.Shape()
    shape.append_circle(200, 150, 100, 100)
    shape.set_fill_color(0, 120, 255)
    canvas.add(shape)
    canvas.draw()
    canvas.sync()

    # Live view into the canvas pixel buffer — no copy
    arr = np.frombuffer(canvas, dtype=np.uint8).reshape(300, 400, 4)
    arr[:, :, 3] = 128  # set alpha to 50% — modifies canvas directly

memoryview (stdlib, zero-copy):

import thorvg_cython as tvg

with tvg.Engine():
    canvas = tvg.SwCanvas(256, 256)

    shape = tvg.Shape()
    shape.append_rect(0, 0, 256, 256)
    shape.set_fill_color(0, 0, 0)
    canvas.add(shape)
    canvas.draw()
    canvas.sync()

    mv = memoryview(canvas)
    print(len(mv))  # 262_144
    mv[0:4]          # first pixel RGBA bytes

License

MIT — same as ThorVG.

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

thorvg_cython-0.0.5.post1.tar.gz (344.6 kB view details)

Uploaded Source

Built Distributions

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

thorvg_cython-0.0.5.post1-cp314-cp314-win_arm64.whl (633.1 kB view details)

Uploaded CPython 3.14Windows ARM64

thorvg_cython-0.0.5.post1-cp314-cp314-win_amd64.whl (704.0 kB view details)

Uploaded CPython 3.14Windows x86-64

thorvg_cython-0.0.5.post1-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

thorvg_cython-0.0.5.post1-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

thorvg_cython-0.0.5.post1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

thorvg_cython-0.0.5.post1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

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

thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_universal2.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ universal2 (ARM64, x86-64)

thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

thorvg_cython-0.0.5.post1-cp314-cp314-android_24_x86_64.whl (1.3 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

thorvg_cython-0.0.5.post1-cp314-cp314-android_24_arm64_v8a.whl (1.2 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

thorvg_cython-0.0.5.post1-cp313-cp313-win_arm64.whl (607.1 kB view details)

Uploaded CPython 3.13Windows ARM64

thorvg_cython-0.0.5.post1-cp313-cp313-win_amd64.whl (681.2 kB view details)

Uploaded CPython 3.13Windows x86-64

thorvg_cython-0.0.5.post1-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

thorvg_cython-0.0.5.post1-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

thorvg_cython-0.0.5.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

thorvg_cython-0.0.5.post1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

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

thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_universal2.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ universal2 (ARM64, x86-64)

thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (2.6 MB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (2.5 MB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (2.5 MB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

thorvg_cython-0.0.5.post1-cp313-cp313-android_24_x86_64.whl (1.3 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

thorvg_cython-0.0.5.post1-cp313-cp313-android_24_arm64_v8a.whl (1.2 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

thorvg_cython-0.0.5.post1-cp312-cp312-win_arm64.whl (608.4 kB view details)

Uploaded CPython 3.12Windows ARM64

thorvg_cython-0.0.5.post1-cp312-cp312-win_amd64.whl (680.2 kB view details)

Uploaded CPython 3.12Windows x86-64

thorvg_cython-0.0.5.post1-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

thorvg_cython-0.0.5.post1-cp312-cp312-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

thorvg_cython-0.0.5.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

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

thorvg_cython-0.0.5.post1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

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

thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_universal2.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ universal2 (ARM64, x86-64)

thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

thorvg_cython-0.0.5.post1-cp311-cp311-win_arm64.whl (624.4 kB view details)

Uploaded CPython 3.11Windows ARM64

thorvg_cython-0.0.5.post1-cp311-cp311-win_amd64.whl (695.5 kB view details)

Uploaded CPython 3.11Windows x86-64

thorvg_cython-0.0.5.post1-cp311-cp311-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

thorvg_cython-0.0.5.post1-cp311-cp311-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

thorvg_cython-0.0.5.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

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

thorvg_cython-0.0.5.post1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.1 MB view details)

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

thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_universal2.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file thorvg_cython-0.0.5.post1.tar.gz.

File metadata

  • Download URL: thorvg_cython-0.0.5.post1.tar.gz
  • Upload date:
  • Size: 344.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thorvg_cython-0.0.5.post1.tar.gz
Algorithm Hash digest
SHA256 18168996b4c0a06771942af15b1226d45f9cbf6a30b5f0aa72934458a405c9f1
MD5 3108f5258ba847dc4954d93273ee7e02
BLAKE2b-256 95be5238bfe22c71de01d3afe920d743b5d0d2f2ac569ce2a763ab71ba86e354

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1.tar.gz:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9ced7a27766884f6ace0d88bde5f2e4537e1d5ab8e8165a3c5bb60771bda93dd
MD5 debfdc2e137ccdeda59fd9e3b2144377
BLAKE2b-256 2f1fce0bb31582892e214ddac36d682ca8e7b27b3956d74b1ab336850bc264bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-win_arm64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d30ed8c4e2f77f3b898f0131adedaae152d752efbf7e798dc6c9d698a0557fc9
MD5 499b9ef7a03e2756c3a5392b1a42cb5b
BLAKE2b-256 770d10dad95d8f649012c04792f555ffa833e544c339df21f98cc8db03491b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-win_amd64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fb927d8d420ab248969f96818fca10f0b24e2966fb5648a828efeab41b6b682
MD5 f1a911e95cfb2907ccedbfd05e8399ed
BLAKE2b-256 bbffb1e951d0b4f86a0f18f4b59deeeb20aa0f611ad56c60aac3eaa1841bad3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2b7a21b21cddda9cc441da6e530f7e810609a0cb9534fc5fb9a0f06eb2f5b37
MD5 e25da0fff61818869f252cc885da4c05
BLAKE2b-256 b255322ebd910ab3425a314f9439b23b82a7fbfcabcfc3252e9716afb366d0e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f82702f39b7c6459b89433c4d354834a2336e8323bd3a3d6617e1aa45b7751d
MD5 b871078b7f5d9f3ad8d155651a317f36
BLAKE2b-256 14bdc74f282d04c2345d9b24e9fec6f7e8ff649ad005a9aac911253b2c15a8bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a81d1339521fc6ec2a2615877d6caebd8afc120cd892bf3122872b3ff27f234e
MD5 7afbe9c2ebb64604f1e0d24b450d48f5
BLAKE2b-256 6da588a42c8c9d2ee4a4f2be4339ffc2889b5f872d4d1db3c3511dad03a371d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 241c70fc648b2bca7c8772541e6189a87a199659337de1dbf4666c4bb45d870b
MD5 6f6d127b89caa1bb09befcf0ded48185
BLAKE2b-256 2f7c47b151fe82981462b24939f1c8eb74a2dffc7645224492ea003c8ef28c96

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 add7b59fe5802b7ca35e98362cc1f51fdc382553ecfc1523cbdcbcf2a902d0cb
MD5 71047731e85f1c433d6bb0fa4f1c992d
BLAKE2b-256 fdcbfb1b628a3665976173f28a148e15f39225a1b40d33415e757c0446cc0e38

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4c9fb702e64ab412021f6a1c33a6d0f8c9840fec7d059fb20a5e9813f230d8a
MD5 3d092a4b6ce25b4502db41f95d6d7f03
BLAKE2b-256 6bef187cc811dfaeb35102670c347a8f2d6c19003eb9c5ba62cc1230e32fe249

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 a9720b7a1780f90a8cea0a9e1cf51f8fb09aeedbdb2ae2426d412d7331a465b7
MD5 6bb05ff19a85c3b9914ed06c9a20a441
BLAKE2b-256 509070291ba2b3b901b3299191cc6771256225690869f1020286299a72ff2049

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-android_24_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 81d95c6dd9f0dc77355cfef1ae052d1706a9254791aab8dc8adc852035e02aa2
MD5 ac06abf906750bb93e542fbf2c213089
BLAKE2b-256 9d77cd58345cfe5561f617c401208620d0ea9f1a3406276794d6fe29a7be3a78

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1b0f7c27eddbae971d61788e0cbbb437ab9ab7d7b0509fb26ebe86938357e76e
MD5 903b0babe215a40180e2dbed56d95858
BLAKE2b-256 330c1265cce37a0f4965a6ed532a414d4dcd99150cb9a5de37672118a488e011

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-win_arm64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b3db6bc5b19ada41d87028096d441dfc4f1cdbe8d7d53e3ab74009d5ef997e66
MD5 59041d27342dbd632947c6a6047bfbbe
BLAKE2b-256 13d4e5e0885029e306c88298b3b31465b839d7b1ff98f646478167ebd2aba861

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-win_amd64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7093516c2304366b88caed81a47ad2a3d869371f79f7a04780148684161cf573
MD5 e8d1481b2f9d4e1369beeaf9d9b77242
BLAKE2b-256 d1eb04c0104c526306d56bff282342b8d0f7bf14f3cf43911d1d133d116cca1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12141c5f9bdfae831485dd003067f8e65e0adda9bdd9759172fedef879f6d645
MD5 d152d1b307d7370ca86d12ee2679cb00
BLAKE2b-256 f09d85fe4045333f0e27007e2df3c13d2fd5305d5e960c41526a75c1f3c80183

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b577e90d046394a2ee436c7dcf129840fbcaa27e1d7648240e91ab3ab85b1273
MD5 ddba1a57033df5c5441771e33eed457b
BLAKE2b-256 d44b7c11bc2e6ea21b612b8ef6972ecd3f80df7526d06bb20f70ab2129d3993c

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b56456ab696720aa5e6e3303e8bb1000ed46f054dedab4b165485496a5dcc898
MD5 8c4cce9ca40f438a25f6890c39dbc2e0
BLAKE2b-256 88111f549c07c70c0b83837619c91d4e1c5d7ba6053b9ce19ebf8a64ca77814f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d5186e28b2c1a96f876f4636198122c10eef5c6e427982dfc2e649a5a96e0154
MD5 497dcf3726ff8c1ffa9b4cb87f53e52e
BLAKE2b-256 2e4cea324e6df1e85ee87ddb27216fbbd8ff05e23349b94bc244d3bb07a0ddd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 998db839c169a6608ae23b5e234d2989f8a4dda3d2b7cfc3727d1f9be210b769
MD5 f7c6f09f4d690f1f2b9851fc0e10f3ed
BLAKE2b-256 e57526656a8f895725a0afc06f8dd324bf95a651eb7dab1e1432d9d4dcba720b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3f6b2ae46134ae2b15ae94bb4f7de43d65fd43e30cc7f8366c8d5ddfcc5f728
MD5 3aac115cb9b17c7c0bee2a2c5b351ca7
BLAKE2b-256 e20d2dc5f4e9b3dc8debebffedfdb1518c2170e3141db02016214f514cee11c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 f5ccb5466671f63c6571376ed1f28607bf2a7967cc0ed7d87253d10c5bb29e06
MD5 11e501052a6e3145a99924db89821878
BLAKE2b-256 9c1c4e606b78fe8cf1475af7b19cbb55241b2fea10debbcbdc066b56e2936b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 d0c66a1b6ad24cc5f6a461a27b6cef71da758b0e3f4b07a8d56e3d285f785d75
MD5 9f97316bcdd2b9c3801d891b9ea7abf6
BLAKE2b-256 93265e2a99d98e64b03d5e9844680e599bcd28af8c8b2928e1062b61624bdbb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 a1beb29b4f2ee65fa96655272727e9886b67457f154b3e1743c08eb43ef15bf7
MD5 6cdcfbef2d462af8c9691b7f6c83c31f
BLAKE2b-256 c8a3c9664f83afbcdb3eb09e42b93081f55cee78f44a9d981fb753d29df5ffb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-android_24_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 610c2a466824e1fde87a389146a42e50416b3e3362ac8eab4b3507aa41e7a7df
MD5 94537cfa6ce876a773428725e78334ec
BLAKE2b-256 64d49627080ca619b78b6272fbaf6e23a5019e398b3d5add828899f252a220de

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-android_24_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 b421e4f478cabe177c388e3bdd696d4026c6afcccfcb6ad1683fb41dfa43229e
MD5 1129a2b670e63508b7c77caf52533cbd
BLAKE2b-256 508eeb095811e9842902ab783bfe51c52940cb4f11e52560535a059629bf2b52

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp313-cp313-android_24_arm64_v8a.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 95bdb720c6bed32355172eb9e0b8d61380aef2da97f81306c0dc09a149f5f2a6
MD5 b53d49a829a70d94a23404806f6907f5
BLAKE2b-256 8595e221655af0f111f32609a791c6306dc7b6eec18d10dd0004fdd9707ce42d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-win_arm64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9255a721409d73dec966de0c318a0411e130fea064d80542b2553f1f58a216e0
MD5 96d7bb0852c33ad6e827d443e1784815
BLAKE2b-256 48aabc1ca213b7d9dd0b8b8fcb854061cd27ebb297cda53b37d4d48ffc51eca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-win_amd64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e6922f6b7e9e160d9fe10c8f0b2a3200e7a3e4308ba695169c3e90a0b121ba8
MD5 f115d4dfcd640240ae3688e28f03cf95
BLAKE2b-256 b8086db5c8cf2797e4e9bbac38ccf68bbaa88ecf83014ec9870d368afe610f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a19d5c065245aa9d9ac84fdb19a47bfc1e5778dc6797ff689a0fd6945b86e90b
MD5 229d7ae5e79ff565f8f4385d9b78782c
BLAKE2b-256 b9dcf6f52353d33cb2d49900495bf2c31a9e340783e11717fa43697093be1900

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4532fdc09b9b914ccd77f34ece46d005987013d33997dbd4acb4f0cdaad7b2f
MD5 022a777829d3e1d08f8f36fd7626f86f
BLAKE2b-256 a4cea931c00a965286ad07acc95cd91f89bfb9e59a0590b90f9780f324a09f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91b9d60950d4ace5d09af5464837be9fc8fe4535de6687cfcb7798fc85e770ba
MD5 37c650f811ba8cf21161aa0f6023d85d
BLAKE2b-256 837f96ffe7eea5075adaa72ac59290238c3f6547a452585f9868449828834dd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6492d2b2687433986cd0a09ae5047ade7972810956389103443dc662743c1b99
MD5 fd2c42874f4ea2849e91814fbb8879bd
BLAKE2b-256 d3c82a1badac56b29a8899a0b4913102eca2589dbce309fa861421f976a2f150

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4391d8be60980187b665f571807664aa7b5dda7a68a3fc972d32c8c766be7bf3
MD5 040b0f57890a259251701b07a1ce13c7
BLAKE2b-256 4bb11078d5da53767b653e942d377d3619b337876536ac8f9a4d23dc5bc63ff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae014481e8f166026dabec6b956e59f51a5a8003b2dac3ed0ba182098ee2b85e
MD5 5d5e09571e294c722cdf37ae379e2262
BLAKE2b-256 e68d5344db09643d8686ff693e39ffe8a11d8eb4dd68301755f2df2798a86c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 59c041cecdf94770f687f2644e6b9fc458589f9129e86508ca016f8dd1a75351
MD5 9c6c783535beccc1f252e5d021b41235
BLAKE2b-256 90e31d97a7570a70f0d8aaa697736afc8395f082cc355a4a39278561d9dfe285

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-win_arm64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05bab45259d16685753e30204b23147d939a58cb7304e27ba5b7bba9b236f8a4
MD5 f15757cb1283255a4637d6ff7a08d34f
BLAKE2b-256 b0bbf4f61a9d27f48072dd2d126741bc8bcc16b5e585be8da8eb2728dcfd76c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-win_amd64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5049940042379d8794d76608f9262966bb787004dcd6cc5f923dbad09401e0a1
MD5 15173670d4d615bb1cab8d8a0f86d827
BLAKE2b-256 4bb5fc68010966670e2474605b3e7ba65fb795f275f9f6fff0b3f97e0b0c3513

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76eec095ad404bb30c834c4c3cd577d88a8df7b4a64d006b581555de5bfed202
MD5 17edad919fc0aa173722aca1decb0a4c
BLAKE2b-256 f7edcd6a678032969ef8fe8335f2385a2ab381529e737a3de78fe661f2519471

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90e43ab57e6c402fb81b51878cfa21c8affcc6dae5a14636d1a2c95efadbba52
MD5 41f6241333e559efa6ab23d11f5226df
BLAKE2b-256 0c148f4d77be9023617cf0687cc9d93ac3e594ec3b6d11320a5ff3f1f406b227

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1881efd6ff0197433c78f1d3018cbd72ae43e5eafbbe15a4bdb64ac4248135c8
MD5 e9ea6a6161c43dc7b9e3ea4e26dc8581
BLAKE2b-256 7e13b1a2fd17db617083ed6df48db5344153a983eb787abaf35ce0cb16831340

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bc26d66cfce34b889c40ae38700fd117f2bebebdafc848244d7c62bc6094021a
MD5 e9af1ecbd65b6525a0904f9132faf0a4
BLAKE2b-256 405c0d1a1be90bdeb7594a7ee8c7fd0ec1a53474be8ea708d02b430b49432c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 f928eaae2b09b445f72c8f79e98847625f1ce95d026ac515a2d3f60823f0f1c3
MD5 4a40cc3cc9a9c7536c35542d308fad00
BLAKE2b-256 e076f2bf0d8dbb4a4eb2df591c96fb936502af17408296761f55a2f77831607f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_universal2.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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

File details

Details for the file thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f97a3a5681617dd10b9a273bf1c0a1febe9660f6bbe6c09b7338f661aa8c1927
MD5 4ae21af9707df0dc54c9e49234ab4db1
BLAKE2b-256 50068adb74a5ee816dc60d116ae0af82cf502a28a94197ee8fbe5fd1f894b497

See more details on using hashes here.

Provenance

The following attestation bundles were made for thorvg_cython-0.0.5.post1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Py-Swift/thorvg-cython

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