loongson/pypi/: shiboken2-generator-5.15.2.1 metadata and description
Python / C++ bindings generator
author | Qt for Python Team |
author_email | pyside@qt-project.org |
classifiers |
|
description_content_type | text/markdown |
download_url | https://download.qt.io/official_releases/QtForPython |
keywords | Qt |
license | LGPL |
requires_dist |
|
requires_python | >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11 |
Because this project isn't in the mirror_whitelist
,
no releases from root/pypi are included.
File | Tox results | History |
---|---|---|
shiboken2_generator-5.15.2.1-5.15.2-cp310-cp310-linux_loongarch64.whl
|
|
Shiboken2-generator
Shiboken is the generator used by the Qt for Python project. It outputs C++ code for CPython extensions, which can be compiled and transformed into a Python module.
C++ projects based on Qt can be wrapped, but also projects which are not related to Qt.
How does it work?
Shiboken uses an API Extractor that does most of the job, but it requires a typesystem (XML file) to customize how the C++ classes/methods will be exposed to Python.
The typesystem allows you to remove arguments from signatures, modify return types, inject code and add conversion rules from the C++ data types to Python data types, manipulate the ownership of the objects, etc.
Examples
An example related to wrap a C++ library not depending on Qt can be found in our repository.
Additionally, you can find a couple of tests inside the git repository.
For a more advanced case regarding extending a Qt/C++ application with Python bindings based on the idea of the PySide module, you can check the scriptableapplication example in our repository.
Documentation
You can find more information about Shiboken in our official documentation page.