Skip to main content

pyside6-scintilla

CI PyPI Downloads License: MIT Python versions

Permissively-licensed PySide6 bindings for the Scintilla code editor component.

View on PyPI · View on GitHub

Status

See GitHub Issues for what's done and what's next.

Why this exists

The standard way to use Scintilla from Python + Qt is QScintilla (Riverbank Computing) — but it's a PyQt6 binding, with no PySide6 equivalent. Like PyQt6, it's also GPLv3 or commercially licensed.

Scintilla itself is licensed under the Historical Permission Notice and Disclaimer — a permissive license with no copyleft. This project aims to expose that permissive core directly to PySide6 users.

Goals

pyside6-scintilla aims to be:

  • MIT licensed — usable in open-source or closed-source projects freely
  • PySide6 native — built with shiboken6, integrating naturally with PySide6 widgets
  • A faithful, low-level binding of Scintilla's ScintillaEditBase widget — not a reimplementation of QScintilla's higher-level API
  • Available as pre-built wheels for Linux (x86_64, aarch64), Windows (x86_64), and macOS (arm64, x86_64)
  • Not affiliated with Riverbank Computing or the QScintilla project

Installation

Install from PyPI:

pip install pyside6-scintilla

PySide6 6.10+ is installed automatically as a dependency; the wheels bundle everything else ScintillaEditBase needs at runtime.

To build from source instead (e.g. for development), see docs/build.md for prerequisites (Qt 6.10+ with Qt6Core5Compat, a C++17 compiler) and platform-specific setup.

examples/highlighting/lexilla_highlighting/ uses lexilla as a dev dependency, installed from PyPI like any other package.

Usage

from PySide6.QtWidgets import QApplication
from pyside6_scintilla import ScintillaEdit

app = QApplication([])
editor = ScintillaEdit()
editor.setText("hello, world")
editor.show()
app.exec()

ScintillaEdit exposes a typed method per Scintilla message (e.g. setText(), textLength(), gotoLine()) on top of ScintillaEditBase's raw .send()/.sends() message API — the same SCI_* messages as the C interface, not a QScintilla-style high-level API. See examples/simple_scintilla_edit/ for a complete example (line-number margin, "Go to Line", block selection/editing), or examples/simple_scintilla_base_edit/ for the lower-level send/sends API.

Versioning

Version numbers follow <Scintilla version>.<binding revision> — e.g. 5.6.3.0 is binding revision 0 for Scintilla 5.6.3. The binding revision increments for releases of this package that don't correspond to a new Scintilla version (bug fixes, new API surface, CI changes, etc.), and resets to 0 when Scintilla itself releases a new version.

Documentation

Doc Contents
docs/alternatives.md How this compares to Monaco-based Qt bindings and other line-numbers + block-edit widgets
docs/auditing.md How to verify the vendored Scintilla source matches upstream
docs/bindings.md How the shiboken6 bindings are built, generated files, and the Scintilla-update procedure
docs/build.md Build prerequisites, local build/rebuild, wheels, and publishing
docs/documenting.md How the docs site is built, and how to add or update a page
docs/specs/ Design specifications and action plans for in-progress and planned work
docs/specs/mission.md Project background, goals, and design decisions
docs/testpypi.md Setting up TestPyPI trusted publishing
examples/ Standalone example apps, including ones showing lexilla-py in use
GitHub Issues Planned and in-progress work
Project board Joint roadmap for pyside6-scintilla and lexilla-py; issues/PRs from both repos are auto-added

Development tools

tools/ holds development scripts, run with uv run python tools/<script>.py:

Script Purpose
generate_pyi.py Regenerates the .pyi type stub for _pyside6_scintilla
check_docs_sync.py Verifies shared content blocks stay in sync between README.md and docs/index.md
clean_window_corners.py One-off cleanup for Windows window screenshots used in docs

License

Download files

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

Source Distribution

pyside6_scintilla-5.6.3.5.tar.gz (2.3 MB view details)

Uploaded Source

Built Distributions

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

pyside6_scintilla-5.6.3.5-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

pyside6_scintilla-5.6.3.5-cp314-cp314-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.38+ ARM64manylinux: glibc 2.39+ ARM64

pyside6_scintilla-5.6.3.5-cp314-cp314-manylinux_2_34_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

pyside6_scintilla-5.6.3.5-cp314-cp314-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

pyside6_scintilla-5.6.3.5-cp314-cp314-macosx_13_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

pyside6_scintilla-5.6.3.5-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pyside6_scintilla-5.6.3.5-cp313-cp313-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.38+ ARM64manylinux: glibc 2.39+ ARM64

pyside6_scintilla-5.6.3.5-cp313-cp313-manylinux_2_34_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

pyside6_scintilla-5.6.3.5-cp313-cp313-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

pyside6_scintilla-5.6.3.5-cp313-cp313-macosx_13_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

pyside6_scintilla-5.6.3.5-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pyside6_scintilla-5.6.3.5-cp312-cp312-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.38+ ARM64manylinux: glibc 2.39+ ARM64

pyside6_scintilla-5.6.3.5-cp312-cp312-manylinux_2_34_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

pyside6_scintilla-5.6.3.5-cp312-cp312-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

pyside6_scintilla-5.6.3.5-cp312-cp312-macosx_13_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

pyside6_scintilla-5.6.3.5-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pyside6_scintilla-5.6.3.5-cp311-cp311-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.38+ ARM64manylinux: glibc 2.39+ ARM64

pyside6_scintilla-5.6.3.5-cp311-cp311-manylinux_2_34_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

pyside6_scintilla-5.6.3.5-cp311-cp311-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

pyside6_scintilla-5.6.3.5-cp311-cp311-macosx_13_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file pyside6_scintilla-5.6.3.5.tar.gz.

File metadata

  • Download URL: pyside6_scintilla-5.6.3.5.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyside6_scintilla-5.6.3.5.tar.gz
Algorithm Hash digest
SHA256 7dded79fb98a1f1ed869bd5389d37025cdcec7624a61f04a7dd939839bc04458
MD5 320cdbd6f5437f248fa1efaadec75941
BLAKE2b-256 593e684bd09dde673346e3d5d82cb7a7af961f9a424ce6d787039a34771fd515

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5.tar.gz:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cec856d66fd4ea8c642fefde08013f554281ec964f61bc7e5ee943dc33afd85f
MD5 b28bd2ea056c98b895c45d637762a141
BLAKE2b-256 466151e168d4cdf783422b4cf7a584fbb0f52014ba6adfa6584f0f03826fc300

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp314-cp314-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp314-cp314-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c5a6e2369728304b2552e80cf5ca9e61b55ec589df356de236c94d0b6287a058
MD5 631f24fa965b3684e5171efbaca80413
BLAKE2b-256 4d98f0cd40be57f177594a63262c69ab2b32200fa1dbe6212146567e4851b919

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp314-cp314-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f4dad798614054075240e57458f37884cde76c9f5ef11b29c39894f298b03049
MD5 0eca229a629f71d20db3c1f733e8e24f
BLAKE2b-256 dba2b8b45e899dc094831b15926e3f84ff8f52193c84164de54fde9efe22f877

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp314-cp314-manylinux_2_34_x86_64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 10d20d6b33c4790eeed206d91907053e65c86c1671f0990f4cb1f041f4642edd
MD5 c15892a4adaeedb483d07ea5565281b7
BLAKE2b-256 f88ba246edc12dbb6a9ab0c5ba8f557ba2cb77b7152647c4f8fb5f4981b94e74

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp314-cp314-macosx_13_0_x86_64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3838759dc0a77915632003a902c106312aa8d1c2fbe95696c2fd5dc50d74558c
MD5 5bc3b0b1759c3178cf226cdcaee2149e
BLAKE2b-256 dd33e33f0d212e69d1a3847ab159a6ef79d357fdbee04cfbac778520c3b8388d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp314-cp314-macosx_13_0_arm64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cc03d23c5dc5210f6bdec3d6d00e837555c4d955cf2ce418adf2d4babbd4d2e7
MD5 31a4b8f6b1fc00f1e599a3726023bf7d
BLAKE2b-256 3febb76dddceed0dac524e59558e43dc352d77a6792296795c34812943b03957

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp313-cp313-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp313-cp313-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b4a896a79ca9e7b5cd56e32ffbaa2e564c82b9f246a8f01385b4123b58b069c4
MD5 2df0fc8e3cbf07900a66531df6990936
BLAKE2b-256 ab8e858a242bca46711d1c296cbc5f847fec4f6686422a4c9be87dd2235bd979

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp313-cp313-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f3dec454654ea91099554d79806d9c4c3c3b540788a64b94a6d7e2eb7defebab
MD5 ababd73fbb8def8245c97cb7c27beb21
BLAKE2b-256 aa0c8925aa3689c2afa3e6a568d7ab1993b16c6edd3c89c51b9584350f5cb246

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b20e4a1eb8ba2af7ddd577a97ace0ad39a978d83b896ae1e2784ee757fc1abf7
MD5 ed1e29818fb398956de97180fa3349c4
BLAKE2b-256 75091ca23c8e83e99fef682063043e2b1d298a4f91e7c82c24c443c5590baee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3313d00e152bf6bf82ecd540141578cffdea5ccaf8867f1e7c3c710eb13f04a0
MD5 06df1d5ff1ec1171c2cd395d21c55e86
BLAKE2b-256 580075f0c6317eca6409d9c20d8c70f3fc811ddeb96ee013f761a7dd2d391cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a0ab400d2953954df310e09511ae24fa078ad1de26ef37ff79ce064e012ae2f
MD5 f2f6cba4ab245f7f232399f388a01221
BLAKE2b-256 53e8c9dcea0fddcf64064620a9376406c7ee6377288642b6d9f36de1866f6eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp312-cp312-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp312-cp312-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1c438e3a19665afa4bb7c790ad9fa476fe5236ec9a9f240aa48ec1fe2d08eeb7
MD5 8cdc7e383de1961ec17bb1b8107e5356
BLAKE2b-256 6e5f689d0d57478a32f1b7c9ef52e5df69818be663a0cbf4331b658b51ee25fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp312-cp312-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5ee1a986a1501789cd56dcd7fbee6546e2bed75ca0376cfc3481b11c566ebbce
MD5 17802829031e792eae9425ee7d11c845
BLAKE2b-256 f42e1a0ef6aaeff1981b9a41289b6eb2ee96ffbdd250e811d445a2ead29dbec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 83d900262c16acb218eeeddceaf1758a41c8936d9afdbc4f2e6eadd57d7054a2
MD5 814fae2c1e1095c073f033b10ffcc546
BLAKE2b-256 74d504286c7781141148ccaa72e3644231ec061fa1573ae3ac832d8202783a25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 18ac646e29cb6f738c42437fa88cef732ea5b193cab79fd82c57d073b5cfe59a
MD5 c89bed4d4624938a5d7db7f60b92623c
BLAKE2b-256 b783bf62b976c1743e227ae024c001e143adc109822340fadaa7abad987878bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5adc3b68433e82d721a00bf5af8284f07d9b173d84205facbce871b66a07142a
MD5 49a6ddc09dce057589945a33ac004e0e
BLAKE2b-256 24c3062673283a4fd96b275ddce6883e5cb6c57aeb7883b468f0809454fe05c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp311-cp311-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp311-cp311-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e6cb7cf93f11e0fea46c1659ca1b6646cfcf8179229574f7cc74595c53b85887
MD5 5f0054f96e7409881751af3b3dd4554b
BLAKE2b-256 bc8671a563ea1bd0050728f2d30758a0f5ca01d530b5ff692e0d024899285dfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp311-cp311-manylinux_2_38_aarch64.manylinux_2_39_aarch64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9eb2afce2b1eebb43af7f6484c44d1942875e97cb353ec50dd3f0988d07035e1
MD5 ca35af49285b3642d0b571a7fa570f27
BLAKE2b-256 5e0c4f06842b0f463919715dfb31f5f569d4a707af1d9e188f35506a9425d041

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp311-cp311-manylinux_2_34_x86_64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b16515ccab2ab3626072f92bba53ce4e4ef9ecc7ef3c3e21f0e79c48855021bd
MD5 507da40f1b14e128c51bfe140880a4b4
BLAKE2b-256 44029412c1d4709400e1e5d7bdde5b9b5a3a4f501de80b532f7faf4b6d111e3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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

File details

Details for the file pyside6_scintilla-5.6.3.5-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyside6_scintilla-5.6.3.5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 81825632cf04aff6c1a6cdc9bfec7f132f8fd37d68ba43353c416688c86487c1
MD5 574aa96475b6ce21e804701581644b86
BLAKE2b-256 a4ea16ca3b9731551905f72c9e0571bc99d63e648598037c5405a74df7c54490

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyside6_scintilla-5.6.3.5-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: publish.yml on borco/pyside6-scintilla

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