PyQt6-sip

13.11.1 · active · verified Thu Apr 09

PyQt6-sip provides the runtime 'sip' extension module necessary for the PyQt6 framework. SIP is a crucial tool developed by Riverbank Computing Limited for automatically generating Python bindings for C and C++ libraries, originally created for PyQt. The pyqt6-sip package specifically contains the compiled 'sip' module that PyQt6 uses internally. It is actively maintained with frequent releases, often synchronized with PyQt6 and new Python version support. The current version is 13.11.1.

Warnings

Install

Imports

Quickstart

While pyqt6-sip is primarily a backend component for PyQt6, you can verify its presence and retrieve its version information by importing 'sip' from the PyQt6 package.

from PyQt6 import sip

# Accessing a sip attribute to demonstrate the module is loaded
print(f"PyQt6.sip version string: {sip.SIP_VERSION_STR}")
print(f"PyQt6.sip API version: {sip.api_version}")

view raw JSON →