Skip to main content

Shiboken generates bindings for C++ libraries using CPython source code

Project description

Introduction

Shiboken generates bindings for C++ libraries using CPython source code.

The Shiboken documentation is hosted at http://pyside.github.io/docs/shiboken/.

The Api Extractor documentation is hosted at http://pyside.github.io/docs/api-extractor/.

Installation

Installing prerequisities

Install latest pip distribution: download get-pip.py and run it using the python interpreter.

Installing Shiboken on a Windows System

To install Shiboken on Windows you can choose from the following options:

  1. Use pip to install the wheel binary packages:

    pip install --use-wheel -U Shiboken
  2. Use setuptools to install the egg binary packages:

    easy_install -U Shiboken

Installing Shiboken on a UNIX System

We do not provide binaries for UNIX System. Please read the build instructions in section Building Shiboken on a UNIX System.

Building Shiboken on a Windows System

Installing prerequisities

  1. Install Python.

  2. Install Qt 4.8 libraries for Windows VS 2008 edition when building against Python 2.6, 2.7 or 3.2. Install Qt 4.8 libraries for Windows VS 2010 edition when building against Python 3.3 or 3.4.

  3. Install Cmake.

  4. Install Windows SDK v7.0 when building against Python 2.6, 2.7 or 3.2. Install Windows SDK v7.1 when building against Python 3.3 or 3.4.

  5. Install Git.

  6. Install latest pip distribution into the Python you installed in the first step: download get-pip.py and run it using the python interpreter of your Python 2.7 installation using a command prompt:

    c:\> c:\Python27\python get-pip.py
  7. Install latest wheel distribution:

    c:\> c:\Python27\Scripts\pip install wheel

Building Shiboken distribution

  1. Download and extract Shiboken source distribution

  2. Switch to the distribution directory:

    c:\> cd Shiboken-1.2.2
  3. Build the wheel binary distribution:

    c:\> c:\Python27\python.exe setup.py bdist_wheel --qmake=c:\Qt\4.8.5\bin\qmake.exe

Building Shiboken distribution from git repository

  1. Clone Shiboken setup scripts from git repository:

    c:\> git clone https://github.com/PySide/shiboken-setup.git shiboken-setup
  2. Switch to the shiboken-setup directory:

    c:\> cd shiboken-setup
  3. Build the wheel binary distribution:

    c:\> c:\Python27\python.exe setup.py bdist_wheel --version=1.2.2 --qmake=c:\Qt\4.8.5\bin\qmake.exe
  4. To build the development version of Shiboken distribution, ignore the –version parameter:

    c:\> c:\Python27\python.exe setup.py bdist_wheel --qmake=c:\Qt\4.8.5\bin\qmake.exe

Installing Shiboken distribution

  1. After the successful build, install the distribution with pip:

    c:\> c:\Python27\Scripts\pip install --use-wheel dist\Shiboken-1.2.2-cp27-none-win32.whl

Installing Shiboken distribution into virtual Python environment

  1. Install latest virtualenv distribution:

    c:\> c:\Python27\Scripts\pip install virtualenv
  2. Use virtualenv to make a workspace:

    c:\> c:\Python27\Scripts\virtualenv --no-site-packages env
  3. Switch to the env directory:

    c:\> cd env
  4. Install the distribution with pip:

    c:\> Scripts\pip install ..\dist\Shiboken-1.2.2-cp27-none-win32.whl

Building Shiboken on a UNIX System (Ubuntu 12.04 - 14.04)

Installing prerequisities

  1. Install build dependencies:

    $ sudo apt-get install build-essential git cmake libqt4-dev python2.7-dev libxml2-dev libxslt1-dev
  2. Install latest pip distribution into the Python you installed in the first step: download get-pip.py and run it using the python interpreter of your Python 2.7 installation using a command prompt:

    $ wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py
    $ sudo python2.7 get-pip.py
  3. Install latest wheel distribution:

    $ sudo pip2.7 install wheel

Building Shiboken distribution

  1. Download Shiboken source distribution:

    $ wget https://pypi.python.org/packages/source/S/Shiboken/Shiboken-1.2.2.tar.gz
  2. Extract the source distribution:

    $ tar -xvzf Shiboken-1.2.2.tar.gz
  3. Switch to the distribution directory:

    $ cd Shiboken-1.2.2
  4. Build the wheel binary distribution:

    $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4
  5. Optionally you can build standalone version of distribution with embedded Qt libs:

    $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4 --standalone

Building Shiboken distribution from git repository

  1. Clone Shiboken setup scripts from git repository:

    $ git clone https://github.com/PySide/shiboken-setup.git shiboken-setup
  2. Switch to the shiboken-setup directory:

    $ cd shiboken-setup
  3. Build Shiboken distribution:

    $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4 --version=1.2.2
  4. Optionally you can build standalone version of distribution with embedded Qt libs:

    $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4 --version=1.2.2 --standalone
  5. To build the development version of Shiboken distribution, ignore the –version parameter:

    $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4

Installing Shiboken distribution

  1. After the successful build, install the distribution with pip:

    $ sudo pip2.7 install dist/Shiboken-1.2.2-cp27-none-linux-x86_64.whl
  2. Run the post-install script to finish the package configuration:

    $ sudo python2.7 shiboken_postinstall.py -install

Installing Shiboken distribution into virtual Python environment

  1. Install latest virtualenv distribution:

    $ sudo pip2.7 virtualenv
  2. Use virtualenv to make a workspace:

    $ virtualenv-2.7 --no-site-packages env
  3. Switch to the env directory:

    $ cd env
  4. Install the distribution with pip:

    $ bin/pip2.7 install ../dist/Shiboken-1.2.2-cp27-none-linux-x86_64.whl
  5. Run the post-install script to finish the package configuration:

    $ bin/python bin/shiboken_postinstall.py -install

Shiboken Setup Script command line options

Usage on Windows System

c:\> c:\Python27\python.exe setup.py [distribution_type] [options]

Usage on UNIX System

python2.7 setup.py [distribution_type] [options]

Distribution types

bdist_wheel

Create wheel binary distribution. This distribution type can be installed with pip.

bdist_egg

Create egg binary distribution. This distribution type can be installed with easy_install.

bdist_wininst

Create standalone windows installer with embedded Qt libs and development tools. This distribution type can be installed with easy_install.

install

Install package to site packages folder.

develop

Install package in development mode, such that it’s available on sys.path, yet can still be edited directly from its source folder.

sdist

Create full source distribution with included sources of Shiboken Setup Scripts and Shiboken. Can be used to build binary distribution in offline mode.

Options

--qmake

Specify the path to qmake. Useful when the qmake is not in path or more than one Qt versions are installed.

--only-package

Skip rebuilding everything and create distribution from prebuilt binaries. Before using this option first time, the full distribution build is required.

--cmake

Specify the path to cmake. Useful when the cmake is not in path.

--standalone

When enabled, all required Qt libs will be included in Shiboken distribution. This option is allways enabled on Windows System. On Linux it’s disabled by default.

--version

Specify what version of Shiboken distribution to build. This option is available only when the setup scripts are cloned from git repository.

--list-versions

List available versions of Shiboken distributions.

--ignore-git

Don’t pull sources from git repository.

--make-spec

Specify the cmake makefile generator type. Available values are msvc on Windows System and make on UNIX System.

--jobs

Specify the number of parallel build jobs

--jom

Use jom instead of nmake with msvc

--build-tests

Enable building the tests

Feedback and getting involved

Changes

1.2.2 (2014-04-24)

Complete list of changes and bug fixes

  • Remove rejection lines that cause the sample_list test to fail

  • Remove protected from samblebinding test

  • Add parsing of ‘noexcept’ keyword

  • Fix function rejections (i.e. support overloads)

  • Fix building with python 3.3 and 3.4

  • Doc: Stop requiring sphinx.ext.refcounting with Sphinx 1.2+

  • Fix for containers with ‘const’ values

  • Fix compilation issue on OS X 10.9

  • Only use fields in PyTypeObject when defining types

  • Fix buffer overrun processing macro definitions

  • Fix ‘special’ include handling

  • Fix finding container base classes

  • Refactor and improve added function resolving

  • Work around MSVC’s deficient <cmath> in libsample/transform.cpp

  • Fix description of sample/transform unit test

  • Change wrapping and indent of some code in Handler::startElement to improve consistency

  • Fix ‘%#’ substitution for # > 9

  • Improve dependencies for tests

1.2.1 (2013-08-16)

Major changes

  • Better support for more than 9 arguments to methods

  • Avoiding a segfault when getting the .name attribute on an enum value with no name

1.2.0 (2013-07-02)

Major changes

  • Install the shiboken module to site-packages

  • Fix multiple segfaults

Complete list of changes and bug fixes

  • Removed old logos from html docs

  • Add missing return on module init error

  • Don’t break -Werror=non-virtual-dtor

  • Fixing shiboken test for minimal binding test

  • Decref reference to type object

  • Fix segfault when using shiboken.delete

  • Use non-static method def for instance methods

  • Fix bug introduced when recursive_invalidate was added

  • fix build in C++11 mode

  • Prevent infinite recursion in invalidate

  • Fix possible conflict with garbage collector

  • Fix possible crash at exit

  • Fix handling of unsigned long long and provide unittests

  • Add test to illustrate issue on typedef enum

  • Use getWrapperForQObject to convert if generating for PySide

  • Allow compilation without a python shared library

  • Use parent class’s metaObject if wrapper is NULL

  • Optionally assert on free’d pointer with a valid wrapper

  • Find python3 libraries when built with pydebug enabled

  • Fix PYSIDE-108 bug and add example

  • PYSIDE-83 Fix segfault calling shiboken.dump

  • Fix and test case for bug PYSIDE-72

  • Override all functions with the same name, not just one

  • Update vector conversion

  • Add typedef examples to minimal

  • Add test files back to cmake

  • Don’t use it->second after erasing it

  • Find function modifications defined in the 2nd+ base class. Fixes bug PYSIDE-54.

  • Set a default hash function for all ObjectTypes. Fix bug PYSIDE-42.

  • Fix compilation when there is no libxslt installed on the system.

  • Fixed resolving of SOABI. SOABI is implemented on Linux, but not on Windows

  • Don’t use inline methods in dllexported classes to keep VC++ happy

  • Use SpooledTemporaryFile in 2.6+ os.tmpfile() fails on win32 if process doesn’t have admin permissions

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

Shiboken-1.2.2.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

Shiboken-1.2.2.win-amd64-py3.4.exe (2.7 MB view details)

Uploaded Source

Shiboken-1.2.2.win-amd64-py3.3.exe (2.8 MB view details)

Uploaded Source

Shiboken-1.2.2.win-amd64-py3.2.exe (2.9 MB view details)

Uploaded Source

Shiboken-1.2.2.win-amd64-py2.7.exe (2.8 MB view details)

Uploaded Source

Shiboken-1.2.2.win-amd64-py2.6.exe (2.9 MB view details)

Uploaded Source

Shiboken-1.2.2.win32-py3.4.exe (2.4 MB view details)

Uploaded Source

Shiboken-1.2.2.win32-py3.3.exe (2.5 MB view details)

Uploaded Source

Shiboken-1.2.2.win32-py3.2.exe (2.4 MB view details)

Uploaded Source

Shiboken-1.2.2.win32-py2.7.exe (2.3 MB view details)

Uploaded Source

Shiboken-1.2.2.win32-py2.6.exe (2.4 MB view details)

Uploaded Source

Shiboken-1.2.2-py3.4-win-amd64.egg (2.5 MB view details)

Uploaded Source

Shiboken-1.2.2-py3.4-win32.egg (2.2 MB view details)

Uploaded Source

Shiboken-1.2.2-py3.3-win-amd64.egg (2.6 MB view details)

Uploaded Source

Shiboken-1.2.2-py3.3-win32.egg (2.2 MB view details)

Uploaded Source

Shiboken-1.2.2-py3.2-win-amd64.egg (2.6 MB view details)

Uploaded Source

Shiboken-1.2.2-py3.2-win32.egg (2.2 MB view details)

Uploaded Source

Shiboken-1.2.2-py2.7-win-amd64.egg (2.6 MB view details)

Uploaded Source

Shiboken-1.2.2-py2.7-win32.egg (2.1 MB view details)

Uploaded Source

Shiboken-1.2.2-py2.6-win-amd64.egg (2.6 MB view details)

Uploaded Source

Shiboken-1.2.2-py2.6-win32.egg (2.2 MB view details)

Uploaded Source

Shiboken-1.2.2-cp34-none-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.4 Windows x86-64

Shiboken-1.2.2-cp34-none-win32.whl (2.2 MB view details)

Uploaded CPython 3.4 Windows x86

Shiboken-1.2.2-cp33-none-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.3 Windows x86-64

Shiboken-1.2.2-cp33-none-win32.whl (2.3 MB view details)

Uploaded CPython 3.3 Windows x86

Shiboken-1.2.2-cp32-none-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.2 Windows x86-64

Shiboken-1.2.2-cp32-none-win32.whl (2.2 MB view details)

Uploaded CPython 3.2 Windows x86

Shiboken-1.2.2-cp27-none-win_amd64.whl (2.6 MB view details)

Uploaded CPython 2.7 Windows x86-64

Shiboken-1.2.2-cp27-none-win32.whl (2.1 MB view details)

Uploaded CPython 2.7 Windows x86

Shiboken-1.2.2-cp26-none-win_amd64.whl (2.6 MB view details)

Uploaded CPython 2.6 Windows x86-64

Shiboken-1.2.2-cp26-none-win32.whl (2.2 MB view details)

Uploaded CPython 2.6 Windows x86

File details

Details for the file Shiboken-1.2.2.tar.gz.

File metadata

  • Download URL: Shiboken-1.2.2.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Shiboken-1.2.2.tar.gz
Algorithm Hash digest
SHA256 0baee03c6244ab56e42e4200d0cb5e234682b11cc296ed0a192fe457d054972f
MD5 345cfebda221f525842e079a6141e555
BLAKE2b-256 3ab5e89449be343044fc1ddfc52f321c0b06988466272209c8de9b44cd10cf7b

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win-amd64-py3.4.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 fbea4ec36dbdfca99738470315f4780344e9bd399935833486aabdfb7563b5c1
MD5 ba29baf958d717ace8f4de97b1f834b6
BLAKE2b-256 5f436251d4763558608c711cb24786c8b375bbf21b8a588e4b403f393d76b2dc

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win-amd64-py3.3.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 6420e25a57e5948ba2c3c244151b6b969fb8618f3e04e1149ef54e031d42d71a
MD5 73e95833e13ae99b323c7b09286a9c6d
BLAKE2b-256 10e55bde7f9c5180e1887f183f552f295008b9637e765bdd59294bf7526427fd

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win-amd64-py3.2.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 e820f0f359be6b42dfe7a38dec7668fe6d2fb50595205397896b660004fdd248
MD5 a31166de3403c3685d5856d1251bb190
BLAKE2b-256 d70828fcf7d4f2d22647bfa5bbb277e016fc1b30d67f9144a30be4e4508d3f84

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win-amd64-py2.7.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 73fb9aee8424a3339c5abc85934bd7e467fb64e7568459dda0b9a0170b5ab26a
MD5 e33a6f625b61457f018c4a991fa2e7f5
BLAKE2b-256 68436480733f2d240bcd2f4f44e8ac8a6ad5d5d4fd222b6d3ba70da6b936a25f

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win-amd64-py2.6.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 95a72f6d6e92b5e2eae83bcf87481b5c0ffb096aa22832ab603b783b1023dd25
MD5 ccc65330892ce0776ebd03c2b8e13c79
BLAKE2b-256 e605116f128c32f06a41c43615ffca2e01eaea6adcb9c39f0be20c9fe183ba46

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win32-py3.4.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win32-py3.4.exe
Algorithm Hash digest
SHA256 8d7266c72c2979db9baf5170852c3348cf832a1914c1aa8d096437360fbadc5b
MD5 35c4960c912bba72a4b74ba7489062e3
BLAKE2b-256 ff05bf39198c5d3c6cb58993ad2004377ba5f778d25c1bc9a8ad2c8facaef750

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win32-py3.3.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win32-py3.3.exe
Algorithm Hash digest
SHA256 5fd7faf34436c197af78f3f2bd251a7e83947665f0d656d582b72e70aa1ab448
MD5 0529ff6eaec016f23a4769527a140271
BLAKE2b-256 ca8ca70541c538e467b78ca61aff2a7d0f0d3f8e07c9b3b7fa3984e5196127b4

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win32-py3.2.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win32-py3.2.exe
Algorithm Hash digest
SHA256 cd5cc9b6c5362f5af05e428ce91b444b3f66f8dbff29985257254a90cec199e6
MD5 0817a6574095f9948395b296fa8abe0b
BLAKE2b-256 6babe3110c28bc2cd51d723e51326e483065bc6450a5f223a712c3486f3989cb

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win32-py2.7.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win32-py2.7.exe
Algorithm Hash digest
SHA256 056a52f35d2c3481326bf4a275626880ac9e3932c79b095816a8e972993cb7b4
MD5 028586149cfba460b407cab86a99c511
BLAKE2b-256 df7b774679aa39e544a60ef2de2ecef5b04a8b2598e91deaf07f829910b1b53c

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2.win32-py2.6.exe.

File metadata

File hashes

Hashes for Shiboken-1.2.2.win32-py2.6.exe
Algorithm Hash digest
SHA256 c74c0731efdf016e252dd83c49d1590aa2c18d0d439df2d8a5703e772008c6d2
MD5 ff95de43933835e75087c9a7c12537d4
BLAKE2b-256 fa2e2949c80ab4abe7c4cac826b105800e1a47b70321bf2ae37ef5b69318ab28

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py3.4-win-amd64.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 412580192ecc5122c43337ba4026691de5c384dd1e74193d8155e920bd5973c2
MD5 b8cfe0e55e1644395849e0dd000f5a84
BLAKE2b-256 b0f15af8d39ebfb8db406dfc67fc66ccf0a1ca9a03fd8534c84fde83ed764a2d

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py3.4-win32.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py3.4-win32.egg
Algorithm Hash digest
SHA256 f69bda30fea6c5aeb5fa779029813c63a655831cae11db92aaf2f90f4d362b58
MD5 4a3f8c592163d8ca5c675405011486fa
BLAKE2b-256 b497a98b44e683e20a2b3678dfd6cbd9b1c45c886fc1d369f3c9df25c7cc5371

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py3.3-win-amd64.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 586704852458ecb0ed272a13005a4e16cba076fb132f50770ade6582993ca841
MD5 f6ac65bdd4f402b70141d739e47d5a66
BLAKE2b-256 49b5c6f5b33fe591e57666f6976ccc01b3b4b8410c028ce271cb5e0427aca7b1

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py3.3-win32.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py3.3-win32.egg
Algorithm Hash digest
SHA256 eb20013e8b410d0fb00588dd5bd6c21e9a6a182b6707792839ed541df1807a56
MD5 60a7e4b5c8f0aec9b38bd81b0a15f299
BLAKE2b-256 8c21243d9e99bfad9fc59ba49d273536e76858a97fa7598d3f707dc505732c2b

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py3.2-win-amd64.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 ec0cba9e3aa6ecbb94cace605853979ff6b493d985188aece8e635d40c114fcf
MD5 eb71a0a31a8901c7deccfe68ba6c2ce0
BLAKE2b-256 cf0d936b5081414b45c9e9bb84592d5d4d8ed5b2c843714db86d3885027ecc85

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py3.2-win32.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py3.2-win32.egg
Algorithm Hash digest
SHA256 fb04b215eec564ba601e578231756725ce8e12d246a894b5c2514f76efa7b1b6
MD5 498a518e80a969d80aa02d2afb3f86bd
BLAKE2b-256 47d990c013cad600dbbfd2205372e62704744c5cc8cb877ffcc82074d885da6a

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py2.7-win-amd64.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 e0552e27a46f0662d934435fbeef5f4e4808d38e3e69a874e5e686c9a669eddc
MD5 cf7606e9f9a9b549c398ea5ab32e2b9d
BLAKE2b-256 a033128ae6d13261a0ad2c70d1f99fb145ed3dd05eccd819a5e78b85b0baad1b

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py2.7-win32.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py2.7-win32.egg
Algorithm Hash digest
SHA256 82df4710eb24f57054c0e2089ea6ae8fb82f3ddad4853b896106ba06e00b3858
MD5 35e5011a59babb10b9c76f9ad0b47dce
BLAKE2b-256 ffa761b710653912f280357e88c6b1c18ac9275f6561551a157c8a4d60fe6c31

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py2.6-win-amd64.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 9ff82801b2691845cc0af8e924f411ba14088d1799e66c46089928174ce922f7
MD5 5b458ae09a2c76b75ffe3f50f9d94f43
BLAKE2b-256 e901109a277fda11f50526e29ffd29ae3e1f4dbc8c21c272c3053fae28326f44

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-py2.6-win32.egg.

File metadata

File hashes

Hashes for Shiboken-1.2.2-py2.6-win32.egg
Algorithm Hash digest
SHA256 3d63c082f1ecdf119c318848aaac605c657e949c60cd1c33b8d2dad9ff593c40
MD5 8d6df7359469b0c8261bf4ff841be8af
BLAKE2b-256 401735a071193adc868b51f79bcdcc0a74d4e8f1f7e31361d8709c304afd890e

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp34-none-win_amd64.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 061765beb35544d2250c21bcacab44937bbe1edb2291fdedf31c576cab4b5d83
MD5 8db3ca5d917726a9079c55372d7259cf
BLAKE2b-256 c0a23eb835dcba5fb5f0b1521e4e6732f3481a2d8f4010fafa852229c2192009

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp34-none-win32.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp34-none-win32.whl
Algorithm Hash digest
SHA256 285b26b4ff0443de13b5c1bcadb66f19909ce808edd5d6cfe0c5f5f022b7654f
MD5 b3519b4d38a0574a734421386612cc45
BLAKE2b-256 a0941ac3cd30220894a5c1573c7d1f67bbb830e1468c7b59c2536a0b92de3502

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp33-none-win_amd64.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 f025e0325a23273830476baabedfcfa4c4c592e771859f1f757b999b9b97945c
MD5 0f00ee944f9214736ab8de6de4db55be
BLAKE2b-256 a447be37358137baaf753559b08bb870a6cd81e628ba07e125d841f4ca27f98c

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp33-none-win32.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp33-none-win32.whl
Algorithm Hash digest
SHA256 93d6d8e9b63ee22e262857f77c9f101c5bfc85da2cadb1aafc887ae1280d7baf
MD5 0777ddc8d8770cb3358380db65d786f3
BLAKE2b-256 7170884209bb3db070dc6b9b993b05e0f2d1cb67d2fd6c8aeb0b2ffff0110613

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp32-none-win_amd64.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 c07e8b05721f2d12d3b860089eed10ad397a0449a1d8a06b5c60bee41880bb62
MD5 74d7f5e7e4243f3c18fce38a2711e9f5
BLAKE2b-256 3fe59aa37e2d0b2456d18f1f08738641ea7a6dcc69a5304d30370ed43ffd19c8

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp32-none-win32.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp32-none-win32.whl
Algorithm Hash digest
SHA256 1718debdc9b6ae1d0a3d40fec1bc61d14e9e9c8aaf482cfa8230c316f22f4bf4
MD5 1655546832728586cfad7b9ce7e6beb4
BLAKE2b-256 c8452da0d354a7af2ec0e2302e3083d8109624561344146b9bcc69ea83a9af15

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp27-none-win_amd64.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 d5a398a3f4e90403bdb11b08202a95ad11f92e2a20ea1551b6b9051bdbf79017
MD5 ad962050b20f0b1ed6de16c2231863df
BLAKE2b-256 676465a49674457a60f7f7f9611cd96223a694bc39af8003983f8565942ac544

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp27-none-win32.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp27-none-win32.whl
Algorithm Hash digest
SHA256 8cb69d3cdd92b3536ee686517432f4a717b5486c81924a5f8a1fbec05587053a
MD5 b783a2449ed8ce4b1a1e5ee0d4aba194
BLAKE2b-256 fe5e4d45b2ca31686ad798de0cf6e96b06b173255b998aaa4c2257994d9263f3

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp26-none-win_amd64.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 8c23d4444bb5c32f3b31ea89de4dd513e374393676e96a0fc38c3e3d030cb5a9
MD5 9c195a5d4a18eddc230531944bef1554
BLAKE2b-256 4ff5cf1eeee158a69237893e397b84c3feababe74b4a0c2d58eb313a07e27f34

See more details on using hashes here.

File details

Details for the file Shiboken-1.2.2-cp26-none-win32.whl.

File metadata

File hashes

Hashes for Shiboken-1.2.2-cp26-none-win32.whl
Algorithm Hash digest
SHA256 9f0fa586d04ca32bee1921df107cb322984df299104cecbb5cd205844ae56466
MD5 a5e2ae05e9b2083f8774c9cbcad6076c
BLAKE2b-256 bba2284a5d56fd30cb78979da2bc7067446e012566669dc0e57b3c7fbee5c4f0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page