{ "info": { "author": "PySide Team", "author_email": "contact@pyside.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: MacOS X", "Environment :: Win32 (MS Windows)", "Environment :: X11 Applications :: Qt", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: C++", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Database", "Topic :: Software Development", "Topic :: Software Development :: Code Generators" ], "description": "========\r\nShiboken\r\n========\r\n\r\n.. contents:: **Table of Contents**\r\n :depth: 1\r\n\r\nIntroduction\r\n============\r\n\r\nShiboken generates bindings for C++ libraries using CPython source code.\r\n\r\nThe Shiboken documentation is hosted at `http://pyside.github.io/docs/shiboken/\r\n`_.\r\n\r\nThe Api Extractor documentation is hosted at `http://pyside.github.io/docs/api-extractor/\r\n`_.\r\n\r\nInstallation\r\n============\r\n\r\nInstalling prerequisities\r\n-------------------------\r\n\r\nInstall latest `pip` distribution: download `get-pip.py\r\n`_ and run it using\r\nthe ``python`` interpreter.\r\n\r\nInstalling Shiboken on a Windows System\r\n---------------------------------------\r\n\r\nTo install Shiboken on Windows you can choose from the following options:\r\n\r\n#. Use pip to install the `wheel` binary packages:\r\n \r\n ::\r\n\r\n pip install --use-wheel -U Shiboken\r\n\r\n#. Use setuptools to install the `egg` binary packages:\r\n \r\n ::\r\n\r\n easy_install -U Shiboken\r\n\r\nInstalling Shiboken on a UNIX System\r\n------------------------------------\r\n\r\nWe do not provide binaries for UNIX System. Please read the build instructions in section\r\n``Building Shiboken on a UNIX System``.\r\n\r\nBuilding Shiboken on a Windows System\r\n=====================================\r\n\r\nInstalling prerequisities\r\n-------------------------\r\n\r\n#. Install `Python\r\n `_.\r\n\r\n#. Install `Qt 4.8 libraries for Windows VS 2008 edition\r\n `_\r\n when building against Python 2.6, 2.7 or 3.2.\r\n Install `Qt 4.8 libraries for Windows VS 2010 edition\r\n `_\r\n when building against Python 3.3 or 3.4.\r\n\r\n#. Install `Cmake\r\n `_.\r\n\r\n#. Install `Windows SDK v7.0\r\n `_\r\n when building against Python 2.6, 2.7 or 3.2.\r\n Install `Windows SDK v7.1\r\n `_\r\n when building against Python 3.3 or 3.4.\r\n\r\n#. Install `Git\r\n `_.\r\n\r\n#. Install latest `pip` distribution into the Python you\r\n installed in the first step: download `get-pip.py \r\n `_ and run it using\r\n the ``python`` interpreter of your Python 2.7 installation using a\r\n command prompt:\r\n\r\n ::\r\n\r\n c:\\> c:\\Python27\\python get-pip.py\r\n\r\n#. Install latest `wheel` distribution:\r\n\r\n ::\r\n\r\n c:\\> c:\\Python27\\Scripts\\pip install wheel\r\n\r\nBuilding Shiboken distribution\r\n------------------------------\r\n\r\n#. Download and extract `Shiboken source distribution\r\n `_\r\n\r\n#. Switch to the distribution directory:\r\n\r\n ::\r\n\r\n c:\\> cd Shiboken-1.2.2\r\n\r\n#. Build the `wheel` binary distribution:\r\n\r\n ::\r\n\r\n c:\\> c:\\Python27\\python.exe setup.py bdist_wheel --qmake=c:\\Qt\\4.8.5\\bin\\qmake.exe\r\n\r\nBuilding Shiboken distribution from git repository\r\n--------------------------------------------------\r\n\r\n#. Clone ``Shiboken`` setup scripts from git repository:\r\n\r\n ::\r\n\r\n c:\\> git clone https://github.com/PySide/shiboken-setup.git shiboken-setup\r\n\r\n#. Switch to the ``shiboken-setup`` directory:\r\n\r\n ::\r\n\r\n c:\\> cd shiboken-setup\r\n\r\n#. Build the `wheel` binary distribution:\r\n\r\n ::\r\n\r\n c:\\> c:\\Python27\\python.exe setup.py bdist_wheel --version=1.2.2 --qmake=c:\\Qt\\4.8.5\\bin\\qmake.exe\r\n\r\n#. To build the development version of ``Shiboken`` distribution, ignore the --version parameter:\r\n\r\n ::\r\n\r\n c:\\> c:\\Python27\\python.exe setup.py bdist_wheel --qmake=c:\\Qt\\4.8.5\\bin\\qmake.exe\r\n\r\nInstalling Shiboken distribution\r\n--------------------------------\r\n\r\n#. After the successful build, install the distribution with ``pip``:\r\n \r\n ::\r\n\r\n c:\\> c:\\Python27\\Scripts\\pip install --use-wheel dist\\Shiboken-1.2.2-cp27-none-win32.whl\r\n\r\nInstalling Shiboken distribution into ``virtual`` Python environment\r\n--------------------------------------------------------------------\r\n\r\n#. Install latest `virtualenv` distribution:\r\n\r\n ::\r\n\r\n c:\\> c:\\Python27\\Scripts\\pip install virtualenv\r\n\r\n#. Use `virtualenv` to make a workspace:\r\n\r\n ::\r\n\r\n c:\\> c:\\Python27\\Scripts\\virtualenv --no-site-packages env\r\n\r\n#. Switch to the ``env`` directory:\r\n\r\n ::\r\n\r\n c:\\> cd env\r\n\r\n#. Install the distribution with ``pip``:\r\n \r\n ::\r\n\r\n c:\\> Scripts\\pip install ..\\dist\\Shiboken-1.2.2-cp27-none-win32.whl\r\n\r\nBuilding Shiboken on a UNIX System (Ubuntu 12.04 - 14.04)\r\n=========================================================\r\n\r\nInstalling prerequisities\r\n-------------------------\r\n\r\n#. Install build dependencies:\r\n\r\n ::\r\n\r\n $ sudo apt-get install build-essential git cmake libqt4-dev python2.7-dev libxml2-dev libxslt1-dev\r\n\r\n#. Install latest `pip` distribution into the Python you\r\n installed in the first step: download `get-pip.py \r\n `_ and run it using\r\n the ``python`` interpreter of your Python 2.7 installation using a\r\n command prompt:\r\n\r\n ::\r\n\r\n $ wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py\r\n $ sudo python2.7 get-pip.py\r\n\r\n#. Install latest `wheel` distribution:\r\n\r\n ::\r\n\r\n $ sudo pip2.7 install wheel\r\n\r\nBuilding Shiboken distribution\r\n------------------------------\r\n\r\n#. Download ``Shiboken`` source distribution:\r\n\r\n ::\r\n\r\n $ wget https://pypi.python.org/packages/source/S/Shiboken/Shiboken-1.2.2.tar.gz\r\n\r\n#. Extract the source distribution:\r\n\r\n ::\r\n\r\n $ tar -xvzf Shiboken-1.2.2.tar.gz\r\n\r\n#. Switch to the distribution directory:\r\n\r\n ::\r\n\r\n $ cd Shiboken-1.2.2\r\n\r\n#. Build the `wheel` binary distribution:\r\n\r\n ::\r\n\r\n $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4\r\n\r\n#. Optionally you can build standalone version of distribution with embedded Qt libs:\r\n\r\n ::\r\n\r\n $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4 --standalone\r\n\r\nBuilding Shiboken distribution from git repository\r\n--------------------------------------------------\r\n\r\n#. Clone ``Shiboken`` setup scripts from git repository:\r\n\r\n ::\r\n\r\n $ git clone https://github.com/PySide/shiboken-setup.git shiboken-setup\r\n\r\n#. Switch to the ``shiboken-setup`` directory:\r\n\r\n ::\r\n\r\n $ cd shiboken-setup\r\n\r\n#. Build ``Shiboken`` distribution:\r\n\r\n ::\r\n\r\n $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4 --version=1.2.2\r\n\r\n#. Optionally you can build standalone version of distribution with embedded Qt libs:\r\n\r\n ::\r\n\r\n $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4 --version=1.2.2 --standalone\r\n\r\n#. To build the development version of ``Shiboken`` distribution, ignore the --version parameter:\r\n\r\n ::\r\n\r\n $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4\r\n\r\nInstalling Shiboken distribution\r\n--------------------------------\r\n\r\n#. After the successful build, install the distribution with ``pip``:\r\n \r\n ::\r\n\r\n $ sudo pip2.7 install dist/Shiboken-1.2.2-cp27-none-linux-x86_64.whl\r\n\r\n#. Run the post-install script to finish the package configuration:\r\n \r\n ::\r\n\r\n $ sudo python2.7 shiboken_postinstall.py -install\r\n\r\nInstalling Shiboken distribution into ``virtual`` Python environment\r\n--------------------------------------------------------------------\r\n\r\n#. Install latest `virtualenv` distribution:\r\n\r\n ::\r\n\r\n $ sudo pip2.7 virtualenv\r\n\r\n#. Use `virtualenv` to make a workspace:\r\n\r\n ::\r\n\r\n $ virtualenv-2.7 --no-site-packages env\r\n\r\n#. Switch to the ``env`` directory:\r\n\r\n ::\r\n\r\n $ cd env\r\n\r\n#. Install the distribution with ``pip``:\r\n \r\n ::\r\n\r\n $ bin/pip2.7 install ../dist/Shiboken-1.2.2-cp27-none-linux-x86_64.whl\r\n\r\n#. Run the post-install script to finish the package configuration:\r\n \r\n ::\r\n\r\n $ bin/python bin/shiboken_postinstall.py -install\r\n\r\nShiboken Setup Script command line options\r\n==========================================\r\n\r\nUsage on Windows System\r\n-----------------------\r\n \r\n ::\r\n\r\n c:\\> c:\\Python27\\python.exe setup.py [distribution_type] [options]\r\n\r\nUsage on UNIX System\r\n--------------------\r\n \r\n ::\r\n\r\n python2.7 setup.py [distribution_type] [options]\r\n\r\nDistribution types\r\n------------------\r\n\r\n``bdist_wheel``\r\n Create wheel binary distribution.\r\n This distribution type can be installed with ``pip``.\r\n\r\n``bdist_egg``\r\n Create egg binary distribution.\r\n This distribution type can be installed with ``easy_install``.\r\n\r\n``bdist_wininst``\r\n Create standalone windows installer with embedded Qt libs and development tools.\r\n This distribution type can be installed with ``easy_install``.\r\n\r\n``install``\r\n Install package to site packages folder.\r\n\r\n``develop``\r\n Install package in ``development mode``, such that it's available on\r\n ``sys.path``, yet can still be edited directly from its source folder.\r\n\r\n``sdist``\r\n Create full source distribution with included sources of Shiboken Setup Scripts\r\n and Shiboken. Can be used to build binary distribution in offline mode.\r\n\r\nOptions\r\n-------\r\n\r\n``--qmake``\r\n Specify the path to qmake.\r\n Useful when the qmake is not in path or more than one Qt versions are installed.\r\n\r\n``--only-package``\r\n Skip rebuilding everything and create distribution from prebuilt binaries.\r\n Before using this option first time, the full distribution build is required.\r\n\r\n``--cmake``\r\n Specify the path to cmake.\r\n Useful when the cmake is not in path.\r\n\r\n``--standalone``\r\n When enabled, all required Qt libs will be included in Shiboken distribution.\r\n This option is allways enabled on Windows System.\r\n On Linux it's disabled by default.\r\n\r\n``--version``\r\n Specify what version of Shiboken distribution to build.\r\n This option is available only when the setup scripts are cloned from git repository.\r\n\r\n``--list-versions``\r\n List available versions of Shiboken distributions.\r\n\r\n``--ignore-git``\r\n Don't pull sources from git repository.\r\n\r\n``--make-spec``\r\n Specify the cmake makefile generator type.\r\n Available values are ``msvc`` on Windows System and ``make`` on UNIX System.\r\n\r\n``--jobs``\r\n Specify the number of parallel build jobs\r\n\r\n``--jom``\r\n Use `jom `_ instead of nmake with msvc\r\n\r\n``--build-tests``\r\n Enable building the tests\r\n\r\nFeedback and getting involved\r\n=============================\r\n\r\n- Mailing list: http://lists.qt-project.org/mailman/listinfo/pyside\r\n- Issue tracker: https://bugreports.qt-project.org/browse/PYSIDE\r\n- Code Repository: http://qt.gitorious.org/pyside\r\n\r\nChanges\r\n=======\r\n\r\n1.2.2 (2014-04-24)\r\n------------------\r\n\r\nComplete list of changes and bug fixes\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\n- Remove rejection lines that cause the sample_list test to fail\r\n- Remove protected from samblebinding test\r\n- Add parsing of 'noexcept' keyword\r\n- Fix function rejections (i.e. support overloads)\r\n- Fix building with python 3.3 and 3.4\r\n- Doc: Stop requiring sphinx.ext.refcounting with Sphinx 1.2+\r\n- Fix for containers with 'const' values\r\n- Fix compilation issue on OS X 10.9\r\n- Only use fields in PyTypeObject when defining types\r\n- Fix buffer overrun processing macro definitions\r\n- Fix 'special' include handling\r\n- Fix finding container base classes\r\n- Refactor and improve added function resolving\r\n- Work around MSVC's deficient in libsample/transform.cpp\r\n- Fix description of sample/transform unit test\r\n- Change wrapping and indent of some code in Handler::startElement to\r\n improve consistency\r\n- Fix '%#' substitution for # > 9\r\n- Improve dependencies for tests\r\n\r\n1.2.1 (2013-08-16)\r\n------------------\r\n\r\nMajor changes\r\n~~~~~~~~~~~~~\r\n\r\n- Better support for more than 9 arguments to methods\r\n- Avoiding a segfault when getting the .name attribute on an enum value with no name\r\n\r\n1.2.0 (2013-07-02)\r\n------------------\r\n\r\nMajor changes\r\n~~~~~~~~~~~~~\r\n\r\n- Install the shiboken module to site-packages\r\n- Fix multiple segfaults\r\n\r\nComplete list of changes and bug fixes\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\n- Removed old logos from html docs\r\n- Add missing return on module init error\r\n- Don't break -Werror=non-virtual-dtor\r\n- Fixing shiboken test for minimal binding test\r\n- Decref reference to type object\r\n- Fix segfault when using shiboken.delete\r\n- Use non-static method def for instance methods\r\n- Fix bug introduced when recursive_invalidate was added\r\n- fix build in C++11 mode\r\n- Prevent infinite recursion in invalidate\r\n- Fix possible conflict with garbage collector\r\n- Fix possible crash at exit\r\n- Fix handling of unsigned long long and provide unittests\r\n- Add test to illustrate issue on typedef enum\r\n- Use getWrapperForQObject to convert if generating for PySide\r\n- Allow compilation without a python shared library\r\n- Use parent class's metaObject if wrapper is NULL\r\n- Optionally assert on free'd pointer with a valid wrapper\r\n- Find python3 libraries when built with pydebug enabled\r\n- Fix PYSIDE-108 bug and add example\r\n- PYSIDE-83 Fix segfault calling shiboken.dump\r\n- Fix and test case for bug PYSIDE-72\r\n- Override all functions with the same name, not just one\r\n- Update vector conversion\r\n- Add typedef examples to minimal\r\n- Add test files back to cmake\r\n- Don't use it->second after erasing it\r\n- Find function modifications defined in the 2nd+ base class. Fixes bug PYSIDE-54.\r\n- Set a default hash function for all ObjectTypes. Fix bug PYSIDE-42.\r\n- Fix compilation when there is no libxslt installed on the system.\r\n- Fixed resolving of SOABI. SOABI is implemented on Linux, but not on Windows\r\n- Don't use inline methods in dllexported classes to keep VC++ happy\r\n- Use SpooledTemporaryFile in 2.6+ os.tmpfile() fails on win32 if process doesn't have admin permissions", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.pyside.org", "keywords": "Qt", "license": "LGPL", "maintainer": "", "maintainer_email": "", "name": "Shiboken", "package_url": "https://pypi.org/project/Shiboken/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/Shiboken/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://www.pyside.org" }, "release_url": "https://pypi.org/project/Shiboken/1.2.2/", "requires_dist": null, "requires_python": null, "summary": "Shiboken generates bindings for C++ libraries using CPython source code", "version": "1.2.2" }, "last_serial": 1085253, "releases": { "1.2.2": [ { "comment_text": "", "digests": { "md5": "a5e2ae05e9b2083f8774c9cbcad6076c", "sha256": "9f0fa586d04ca32bee1921df107cb322984df299104cecbb5cd205844ae56466" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp26-none-win32.whl", "has_sig": false, "md5_digest": "a5e2ae05e9b2083f8774c9cbcad6076c", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 2161933, "upload_time": "2014-04-24T15:53:39", "url": "https://files.pythonhosted.org/packages/bb/a2/284a5d56fd30cb78979da2bc7067446e012566669dc0e57b3c7fbee5c4f0/Shiboken-1.2.2-cp26-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "9c195a5d4a18eddc230531944bef1554", "sha256": "8c23d4444bb5c32f3b31ea89de4dd513e374393676e96a0fc38c3e3d030cb5a9" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp26-none-win_amd64.whl", "has_sig": false, "md5_digest": "9c195a5d4a18eddc230531944bef1554", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 2621610, "upload_time": "2014-04-24T15:58:16", "url": "https://files.pythonhosted.org/packages/4f/f5/cf1eeee158a69237893e397b84c3feababe74b4a0c2d58eb313a07e27f34/Shiboken-1.2.2-cp26-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b783a2449ed8ce4b1a1e5ee0d4aba194", "sha256": "8cb69d3cdd92b3536ee686517432f4a717b5486c81924a5f8a1fbec05587053a" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp27-none-win32.whl", "has_sig": false, "md5_digest": "b783a2449ed8ce4b1a1e5ee0d4aba194", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2135963, "upload_time": "2014-04-24T15:59:17", "url": "https://files.pythonhosted.org/packages/fe/5e/4d45b2ca31686ad798de0cf6e96b06b173255b998aaa4c2257994d9263f3/Shiboken-1.2.2-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "ad962050b20f0b1ed6de16c2231863df", "sha256": "d5a398a3f4e90403bdb11b08202a95ad11f92e2a20ea1551b6b9051bdbf79017" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "ad962050b20f0b1ed6de16c2231863df", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2595606, "upload_time": "2014-04-24T16:03:20", "url": "https://files.pythonhosted.org/packages/67/64/65a49674457a60f7f7f9611cd96223a694bc39af8003983f8565942ac544/Shiboken-1.2.2-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1655546832728586cfad7b9ce7e6beb4", "sha256": "1718debdc9b6ae1d0a3d40fec1bc61d14e9e9c8aaf482cfa8230c316f22f4bf4" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp32-none-win32.whl", "has_sig": false, "md5_digest": "1655546832728586cfad7b9ce7e6beb4", "packagetype": "bdist_wheel", "python_version": "3.2", "requires_python": null, "size": 2162552, "upload_time": "2014-04-24T19:07:42", "url": "https://files.pythonhosted.org/packages/c8/45/2da0d354a7af2ec0e2302e3083d8109624561344146b9bcc69ea83a9af15/Shiboken-1.2.2-cp32-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "74d7f5e7e4243f3c18fce38a2711e9f5", "sha256": "c07e8b05721f2d12d3b860089eed10ad397a0449a1d8a06b5c60bee41880bb62" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp32-none-win_amd64.whl", "has_sig": false, "md5_digest": "74d7f5e7e4243f3c18fce38a2711e9f5", "packagetype": "bdist_wheel", "python_version": "3.2", "requires_python": null, "size": 2621747, "upload_time": "2014-04-24T19:16:52", "url": "https://files.pythonhosted.org/packages/3f/e5/9aa37e2d0b2456d18f1f08738641ea7a6dcc69a5304d30370ed43ffd19c8/Shiboken-1.2.2-cp32-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0777ddc8d8770cb3358380db65d786f3", "sha256": "93d6d8e9b63ee22e262857f77c9f101c5bfc85da2cadb1aafc887ae1280d7baf" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp33-none-win32.whl", "has_sig": false, "md5_digest": "0777ddc8d8770cb3358380db65d786f3", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 2252423, "upload_time": "2014-04-24T16:09:14", "url": "https://files.pythonhosted.org/packages/71/70/884209bb3db070dc6b9b993b05e0f2d1cb67d2fd6c8aeb0b2ffff0110613/Shiboken-1.2.2-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "0f00ee944f9214736ab8de6de4db55be", "sha256": "f025e0325a23273830476baabedfcfa4c4c592e771859f1f757b999b9b97945c" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "0f00ee944f9214736ab8de6de4db55be", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 2559878, "upload_time": "2014-04-24T16:13:11", "url": "https://files.pythonhosted.org/packages/a4/47/be37358137baaf753559b08bb870a6cd81e628ba07e125d841f4ca27f98c/Shiboken-1.2.2-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b3519b4d38a0574a734421386612cc45", "sha256": "285b26b4ff0443de13b5c1bcadb66f19909ce808edd5d6cfe0c5f5f022b7654f" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp34-none-win32.whl", "has_sig": false, "md5_digest": "b3519b4d38a0574a734421386612cc45", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 2188779, "upload_time": "2014-04-24T16:16:20", "url": "https://files.pythonhosted.org/packages/a0/94/1ac3cd30220894a5c1573c7d1f67bbb830e1468c7b59c2536a0b92de3502/Shiboken-1.2.2-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "8db3ca5d917726a9079c55372d7259cf", "sha256": "061765beb35544d2250c21bcacab44937bbe1edb2291fdedf31c576cab4b5d83" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "8db3ca5d917726a9079c55372d7259cf", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 2495331, "upload_time": "2014-04-24T16:22:48", "url": "https://files.pythonhosted.org/packages/c0/a2/3eb835dcba5fb5f0b1521e4e6732f3481a2d8f4010fafa852229c2192009/Shiboken-1.2.2-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8d6df7359469b0c8261bf4ff841be8af", "sha256": "3d63c082f1ecdf119c318848aaac605c657e949c60cd1c33b8d2dad9ff593c40" }, "downloads": -1, "filename": "Shiboken-1.2.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "8d6df7359469b0c8261bf4ff841be8af", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2157322, "upload_time": "2014-04-24T15:52:35", "url": "https://files.pythonhosted.org/packages/40/17/35a071193adc868b51f79bcdcc0a74d4e8f1f7e31361d8709c304afd890e/Shiboken-1.2.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "5b458ae09a2c76b75ffe3f50f9d94f43", "sha256": "9ff82801b2691845cc0af8e924f411ba14088d1799e66c46089928174ce922f7" }, "downloads": -1, "filename": "Shiboken-1.2.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "5b458ae09a2c76b75ffe3f50f9d94f43", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2616994, "upload_time": "2014-04-24T15:57:52", "url": "https://files.pythonhosted.org/packages/e9/01/109a277fda11f50526e29ffd29ae3e1f4dbc8c21c272c3053fae28326f44/Shiboken-1.2.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "35e5011a59babb10b9c76f9ad0b47dce", "sha256": "82df4710eb24f57054c0e2089ea6ae8fb82f3ddad4853b896106ba06e00b3858" }, "downloads": -1, "filename": "Shiboken-1.2.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "35e5011a59babb10b9c76f9ad0b47dce", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2131373, "upload_time": "2014-04-24T15:58:54", "url": "https://files.pythonhosted.org/packages/ff/a7/61b710653912f280357e88c6b1c18ac9275f6561551a157c8a4d60fe6c31/Shiboken-1.2.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "cf7606e9f9a9b549c398ea5ab32e2b9d", "sha256": "e0552e27a46f0662d934435fbeef5f4e4808d38e3e69a874e5e686c9a669eddc" }, "downloads": -1, "filename": "Shiboken-1.2.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "cf7606e9f9a9b549c398ea5ab32e2b9d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2591013, "upload_time": "2014-04-24T16:02:15", "url": "https://files.pythonhosted.org/packages/a0/33/128ae6d13261a0ad2c70d1f99fb145ed3dd05eccd819a5e78b85b0baad1b/Shiboken-1.2.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "498a518e80a969d80aa02d2afb3f86bd", "sha256": "fb04b215eec564ba601e578231756725ce8e12d246a894b5c2514f76efa7b1b6" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.2-win32.egg", "has_sig": false, "md5_digest": "498a518e80a969d80aa02d2afb3f86bd", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 2158054, "upload_time": "2014-04-24T19:18:42", "url": "https://files.pythonhosted.org/packages/47/d9/90c013cad600dbbfd2205372e62704744c5cc8cb877ffcc82074d885da6a/Shiboken-1.2.2-py3.2-win32.egg" }, { "comment_text": "", "digests": { "md5": "eb71a0a31a8901c7deccfe68ba6c2ce0", "sha256": "ec0cba9e3aa6ecbb94cace605853979ff6b493d985188aece8e635d40c114fcf" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.2-win-amd64.egg", "has_sig": false, "md5_digest": "eb71a0a31a8901c7deccfe68ba6c2ce0", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 2617241, "upload_time": "2014-04-24T19:19:30", "url": "https://files.pythonhosted.org/packages/cf/0d/936b5081414b45c9e9bb84592d5d4d8ed5b2c843714db86d3885027ecc85/Shiboken-1.2.2-py3.2-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "60a7e4b5c8f0aec9b38bd81b0a15f299", "sha256": "eb20013e8b410d0fb00588dd5bd6c21e9a6a182b6707792839ed541df1807a56" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.3-win32.egg", "has_sig": false, "md5_digest": "60a7e4b5c8f0aec9b38bd81b0a15f299", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 2247919, "upload_time": "2014-04-24T16:06:59", "url": "https://files.pythonhosted.org/packages/8c/21/243d9e99bfad9fc59ba49d273536e76858a97fa7598d3f707dc505732c2b/Shiboken-1.2.2-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "f6ac65bdd4f402b70141d739e47d5a66", "sha256": "586704852458ecb0ed272a13005a4e16cba076fb132f50770ade6582993ca841" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "f6ac65bdd4f402b70141d739e47d5a66", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 2555364, "upload_time": "2014-04-24T16:11:31", "url": "https://files.pythonhosted.org/packages/49/b5/c6f5b33fe591e57666f6976ccc01b3b4b8410c028ce271cb5e0427aca7b1/Shiboken-1.2.2-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "4a3f8c592163d8ca5c675405011486fa", "sha256": "f69bda30fea6c5aeb5fa779029813c63a655831cae11db92aaf2f90f4d362b58" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.4-win32.egg", "has_sig": false, "md5_digest": "4a3f8c592163d8ca5c675405011486fa", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 2184279, "upload_time": "2014-04-24T18:26:55", "url": "https://files.pythonhosted.org/packages/b4/97/a98b44e683e20a2b3678dfd6cbd9b1c45c886fc1d369f3c9df25c7cc5371/Shiboken-1.2.2-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "b8cfe0e55e1644395849e0dd000f5a84", "sha256": "412580192ecc5122c43337ba4026691de5c384dd1e74193d8155e920bd5973c2" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "b8cfe0e55e1644395849e0dd000f5a84", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 2490816, "upload_time": "2014-04-24T16:19:38", "url": "https://files.pythonhosted.org/packages/b0/f1/5af8d39ebfb8db406dfc67fc66ccf0a1ca9a03fd8534c84fde83ed764a2d/Shiboken-1.2.2-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "345cfebda221f525842e079a6141e555", "sha256": "0baee03c6244ab56e42e4200d0cb5e234682b11cc296ed0a192fe457d054972f" }, "downloads": -1, "filename": "Shiboken-1.2.2.tar.gz", "has_sig": false, "md5_digest": "345cfebda221f525842e079a6141e555", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1121033, "upload_time": "2014-04-24T09:22:40", "url": "https://files.pythonhosted.org/packages/3a/b5/e89449be343044fc1ddfc52f321c0b06988466272209c8de9b44cd10cf7b/Shiboken-1.2.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "ff95de43933835e75087c9a7c12537d4", "sha256": "c74c0731efdf016e252dd83c49d1590aa2c18d0d439df2d8a5703e772008c6d2" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py2.6.exe", "has_sig": false, "md5_digest": "ff95de43933835e75087c9a7c12537d4", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 2369517, "upload_time": "2014-04-24T15:50:38", "url": "https://files.pythonhosted.org/packages/fa/2e/2949c80ab4abe7c4cac826b105800e1a47b70321bf2ae37ef5b69318ab28/Shiboken-1.2.2.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "028586149cfba460b407cab86a99c511", "sha256": "056a52f35d2c3481326bf4a275626880ac9e3932c79b095816a8e972993cb7b4" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "028586149cfba460b407cab86a99c511", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 2343568, "upload_time": "2014-04-24T15:58:35", "url": "https://files.pythonhosted.org/packages/df/7b/774679aa39e544a60ef2de2ecef5b04a8b2598e91deaf07f829910b1b53c/Shiboken-1.2.2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "0817a6574095f9948395b296fa8abe0b", "sha256": "cd5cc9b6c5362f5af05e428ce91b444b3f66f8dbff29985257254a90cec199e6" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py3.2.exe", "has_sig": false, "md5_digest": "0817a6574095f9948395b296fa8abe0b", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 2370203, "upload_time": "2014-04-24T19:18:10", "url": "https://files.pythonhosted.org/packages/6b/ab/e3110c28bc2cd51d723e51326e483065bc6450a5f223a712c3486f3989cb/Shiboken-1.2.2.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "0529ff6eaec016f23a4769527a140271", "sha256": "5fd7faf34436c197af78f3f2bd251a7e83947665f0d656d582b72e70aa1ab448" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py3.3.exe", "has_sig": false, "md5_digest": "0529ff6eaec016f23a4769527a140271", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 2454944, "upload_time": "2014-04-24T18:22:25", "url": "https://files.pythonhosted.org/packages/ca/8c/a70541c538e467b78ca61aff2a7d0f0d3f8e07c9b3b7fa3984e5196127b4/Shiboken-1.2.2.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "35c4960c912bba72a4b74ba7489062e3", "sha256": "8d7266c72c2979db9baf5170852c3348cf832a1914c1aa8d096437360fbadc5b" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py3.4.exe", "has_sig": false, "md5_digest": "35c4960c912bba72a4b74ba7489062e3", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 2391309, "upload_time": "2014-04-24T16:14:36", "url": "https://files.pythonhosted.org/packages/ff/05/bf39198c5d3c6cb58993ad2004377ba5f778d25c1bc9a8ad2c8facaef750/Shiboken-1.2.2.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "ccc65330892ce0776ebd03c2b8e13c79", "sha256": "95a72f6d6e92b5e2eae83bcf87481b5c0ffb096aa22832ab603b783b1023dd25" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "ccc65330892ce0776ebd03c2b8e13c79", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 2856833, "upload_time": "2014-04-24T15:57:26", "url": "https://files.pythonhosted.org/packages/e6/05/116f128c32f06a41c43615ffca2e01eaea6adcb9c39f0be20c9fe183ba46/Shiboken-1.2.2.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "e33a6f625b61457f018c4a991fa2e7f5", "sha256": "73fb9aee8424a3339c5abc85934bd7e467fb64e7568459dda0b9a0170b5ab26a" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "e33a6f625b61457f018c4a991fa2e7f5", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 2830852, "upload_time": "2014-04-24T16:00:31", "url": "https://files.pythonhosted.org/packages/68/43/6480733f2d240bcd2f4f44e8ac8a6ad5d5d4fd222b6d3ba70da6b936a25f/Shiboken-1.2.2.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "a31166de3403c3685d5856d1251bb190", "sha256": "e820f0f359be6b42dfe7a38dec7668fe6d2fb50595205397896b660004fdd248" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "a31166de3403c3685d5856d1251bb190", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 2857546, "upload_time": "2014-04-24T19:10:28", "url": "https://files.pythonhosted.org/packages/d7/08/28fcf7d4f2d22647bfa5bbb277e016fc1b30d67f9144a30be4e4508d3f84/Shiboken-1.2.2.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "73e95833e13ae99b323c7b09286a9c6d", "sha256": "6420e25a57e5948ba2c3c244151b6b969fb8618f3e04e1149ef54e031d42d71a" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "73e95833e13ae99b323c7b09286a9c6d", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 2793617, "upload_time": "2014-04-24T16:10:08", "url": "https://files.pythonhosted.org/packages/10/e5/5bde7f9c5180e1887f183f552f295008b9637e765bdd59294bf7526427fd/Shiboken-1.2.2.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "ba29baf958d717ace8f4de97b1f834b6", "sha256": "fbea4ec36dbdfca99738470315f4780344e9bd399935833486aabdfb7563b5c1" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "ba29baf958d717ace8f4de97b1f834b6", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 2729073, "upload_time": "2014-04-24T16:18:13", "url": "https://files.pythonhosted.org/packages/5f/43/6251d4763558608c711cb24786c8b375bbf21b8a588e4b403f393d76b2dc/Shiboken-1.2.2.win-amd64-py3.4.exe" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a5e2ae05e9b2083f8774c9cbcad6076c", "sha256": "9f0fa586d04ca32bee1921df107cb322984df299104cecbb5cd205844ae56466" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp26-none-win32.whl", "has_sig": false, "md5_digest": "a5e2ae05e9b2083f8774c9cbcad6076c", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 2161933, "upload_time": "2014-04-24T15:53:39", "url": "https://files.pythonhosted.org/packages/bb/a2/284a5d56fd30cb78979da2bc7067446e012566669dc0e57b3c7fbee5c4f0/Shiboken-1.2.2-cp26-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "9c195a5d4a18eddc230531944bef1554", "sha256": "8c23d4444bb5c32f3b31ea89de4dd513e374393676e96a0fc38c3e3d030cb5a9" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp26-none-win_amd64.whl", "has_sig": false, "md5_digest": "9c195a5d4a18eddc230531944bef1554", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 2621610, "upload_time": "2014-04-24T15:58:16", "url": "https://files.pythonhosted.org/packages/4f/f5/cf1eeee158a69237893e397b84c3feababe74b4a0c2d58eb313a07e27f34/Shiboken-1.2.2-cp26-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b783a2449ed8ce4b1a1e5ee0d4aba194", "sha256": "8cb69d3cdd92b3536ee686517432f4a717b5486c81924a5f8a1fbec05587053a" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp27-none-win32.whl", "has_sig": false, "md5_digest": "b783a2449ed8ce4b1a1e5ee0d4aba194", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2135963, "upload_time": "2014-04-24T15:59:17", "url": "https://files.pythonhosted.org/packages/fe/5e/4d45b2ca31686ad798de0cf6e96b06b173255b998aaa4c2257994d9263f3/Shiboken-1.2.2-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "ad962050b20f0b1ed6de16c2231863df", "sha256": "d5a398a3f4e90403bdb11b08202a95ad11f92e2a20ea1551b6b9051bdbf79017" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "ad962050b20f0b1ed6de16c2231863df", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2595606, "upload_time": "2014-04-24T16:03:20", "url": "https://files.pythonhosted.org/packages/67/64/65a49674457a60f7f7f9611cd96223a694bc39af8003983f8565942ac544/Shiboken-1.2.2-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1655546832728586cfad7b9ce7e6beb4", "sha256": "1718debdc9b6ae1d0a3d40fec1bc61d14e9e9c8aaf482cfa8230c316f22f4bf4" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp32-none-win32.whl", "has_sig": false, "md5_digest": "1655546832728586cfad7b9ce7e6beb4", "packagetype": "bdist_wheel", "python_version": "3.2", "requires_python": null, "size": 2162552, "upload_time": "2014-04-24T19:07:42", "url": "https://files.pythonhosted.org/packages/c8/45/2da0d354a7af2ec0e2302e3083d8109624561344146b9bcc69ea83a9af15/Shiboken-1.2.2-cp32-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "74d7f5e7e4243f3c18fce38a2711e9f5", "sha256": "c07e8b05721f2d12d3b860089eed10ad397a0449a1d8a06b5c60bee41880bb62" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp32-none-win_amd64.whl", "has_sig": false, "md5_digest": "74d7f5e7e4243f3c18fce38a2711e9f5", "packagetype": "bdist_wheel", "python_version": "3.2", "requires_python": null, "size": 2621747, "upload_time": "2014-04-24T19:16:52", "url": "https://files.pythonhosted.org/packages/3f/e5/9aa37e2d0b2456d18f1f08738641ea7a6dcc69a5304d30370ed43ffd19c8/Shiboken-1.2.2-cp32-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0777ddc8d8770cb3358380db65d786f3", "sha256": "93d6d8e9b63ee22e262857f77c9f101c5bfc85da2cadb1aafc887ae1280d7baf" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp33-none-win32.whl", "has_sig": false, "md5_digest": "0777ddc8d8770cb3358380db65d786f3", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 2252423, "upload_time": "2014-04-24T16:09:14", "url": "https://files.pythonhosted.org/packages/71/70/884209bb3db070dc6b9b993b05e0f2d1cb67d2fd6c8aeb0b2ffff0110613/Shiboken-1.2.2-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "0f00ee944f9214736ab8de6de4db55be", "sha256": "f025e0325a23273830476baabedfcfa4c4c592e771859f1f757b999b9b97945c" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "0f00ee944f9214736ab8de6de4db55be", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 2559878, "upload_time": "2014-04-24T16:13:11", "url": "https://files.pythonhosted.org/packages/a4/47/be37358137baaf753559b08bb870a6cd81e628ba07e125d841f4ca27f98c/Shiboken-1.2.2-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b3519b4d38a0574a734421386612cc45", "sha256": "285b26b4ff0443de13b5c1bcadb66f19909ce808edd5d6cfe0c5f5f022b7654f" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp34-none-win32.whl", "has_sig": false, "md5_digest": "b3519b4d38a0574a734421386612cc45", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 2188779, "upload_time": "2014-04-24T16:16:20", "url": "https://files.pythonhosted.org/packages/a0/94/1ac3cd30220894a5c1573c7d1f67bbb830e1468c7b59c2536a0b92de3502/Shiboken-1.2.2-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "8db3ca5d917726a9079c55372d7259cf", "sha256": "061765beb35544d2250c21bcacab44937bbe1edb2291fdedf31c576cab4b5d83" }, "downloads": -1, "filename": "Shiboken-1.2.2-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "8db3ca5d917726a9079c55372d7259cf", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 2495331, "upload_time": "2014-04-24T16:22:48", "url": "https://files.pythonhosted.org/packages/c0/a2/3eb835dcba5fb5f0b1521e4e6732f3481a2d8f4010fafa852229c2192009/Shiboken-1.2.2-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8d6df7359469b0c8261bf4ff841be8af", "sha256": "3d63c082f1ecdf119c318848aaac605c657e949c60cd1c33b8d2dad9ff593c40" }, "downloads": -1, "filename": "Shiboken-1.2.2-py2.6-win32.egg", "has_sig": false, "md5_digest": "8d6df7359469b0c8261bf4ff841be8af", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2157322, "upload_time": "2014-04-24T15:52:35", "url": "https://files.pythonhosted.org/packages/40/17/35a071193adc868b51f79bcdcc0a74d4e8f1f7e31361d8709c304afd890e/Shiboken-1.2.2-py2.6-win32.egg" }, { "comment_text": "", "digests": { "md5": "5b458ae09a2c76b75ffe3f50f9d94f43", "sha256": "9ff82801b2691845cc0af8e924f411ba14088d1799e66c46089928174ce922f7" }, "downloads": -1, "filename": "Shiboken-1.2.2-py2.6-win-amd64.egg", "has_sig": false, "md5_digest": "5b458ae09a2c76b75ffe3f50f9d94f43", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2616994, "upload_time": "2014-04-24T15:57:52", "url": "https://files.pythonhosted.org/packages/e9/01/109a277fda11f50526e29ffd29ae3e1f4dbc8c21c272c3053fae28326f44/Shiboken-1.2.2-py2.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "35e5011a59babb10b9c76f9ad0b47dce", "sha256": "82df4710eb24f57054c0e2089ea6ae8fb82f3ddad4853b896106ba06e00b3858" }, "downloads": -1, "filename": "Shiboken-1.2.2-py2.7-win32.egg", "has_sig": false, "md5_digest": "35e5011a59babb10b9c76f9ad0b47dce", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2131373, "upload_time": "2014-04-24T15:58:54", "url": "https://files.pythonhosted.org/packages/ff/a7/61b710653912f280357e88c6b1c18ac9275f6561551a157c8a4d60fe6c31/Shiboken-1.2.2-py2.7-win32.egg" }, { "comment_text": "", "digests": { "md5": "cf7606e9f9a9b549c398ea5ab32e2b9d", "sha256": "e0552e27a46f0662d934435fbeef5f4e4808d38e3e69a874e5e686c9a669eddc" }, "downloads": -1, "filename": "Shiboken-1.2.2-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "cf7606e9f9a9b549c398ea5ab32e2b9d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2591013, "upload_time": "2014-04-24T16:02:15", "url": "https://files.pythonhosted.org/packages/a0/33/128ae6d13261a0ad2c70d1f99fb145ed3dd05eccd819a5e78b85b0baad1b/Shiboken-1.2.2-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "498a518e80a969d80aa02d2afb3f86bd", "sha256": "fb04b215eec564ba601e578231756725ce8e12d246a894b5c2514f76efa7b1b6" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.2-win32.egg", "has_sig": false, "md5_digest": "498a518e80a969d80aa02d2afb3f86bd", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 2158054, "upload_time": "2014-04-24T19:18:42", "url": "https://files.pythonhosted.org/packages/47/d9/90c013cad600dbbfd2205372e62704744c5cc8cb877ffcc82074d885da6a/Shiboken-1.2.2-py3.2-win32.egg" }, { "comment_text": "", "digests": { "md5": "eb71a0a31a8901c7deccfe68ba6c2ce0", "sha256": "ec0cba9e3aa6ecbb94cace605853979ff6b493d985188aece8e635d40c114fcf" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.2-win-amd64.egg", "has_sig": false, "md5_digest": "eb71a0a31a8901c7deccfe68ba6c2ce0", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 2617241, "upload_time": "2014-04-24T19:19:30", "url": "https://files.pythonhosted.org/packages/cf/0d/936b5081414b45c9e9bb84592d5d4d8ed5b2c843714db86d3885027ecc85/Shiboken-1.2.2-py3.2-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "60a7e4b5c8f0aec9b38bd81b0a15f299", "sha256": "eb20013e8b410d0fb00588dd5bd6c21e9a6a182b6707792839ed541df1807a56" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.3-win32.egg", "has_sig": false, "md5_digest": "60a7e4b5c8f0aec9b38bd81b0a15f299", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 2247919, "upload_time": "2014-04-24T16:06:59", "url": "https://files.pythonhosted.org/packages/8c/21/243d9e99bfad9fc59ba49d273536e76858a97fa7598d3f707dc505732c2b/Shiboken-1.2.2-py3.3-win32.egg" }, { "comment_text": "", "digests": { "md5": "f6ac65bdd4f402b70141d739e47d5a66", "sha256": "586704852458ecb0ed272a13005a4e16cba076fb132f50770ade6582993ca841" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.3-win-amd64.egg", "has_sig": false, "md5_digest": "f6ac65bdd4f402b70141d739e47d5a66", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 2555364, "upload_time": "2014-04-24T16:11:31", "url": "https://files.pythonhosted.org/packages/49/b5/c6f5b33fe591e57666f6976ccc01b3b4b8410c028ce271cb5e0427aca7b1/Shiboken-1.2.2-py3.3-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "4a3f8c592163d8ca5c675405011486fa", "sha256": "f69bda30fea6c5aeb5fa779029813c63a655831cae11db92aaf2f90f4d362b58" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.4-win32.egg", "has_sig": false, "md5_digest": "4a3f8c592163d8ca5c675405011486fa", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 2184279, "upload_time": "2014-04-24T18:26:55", "url": "https://files.pythonhosted.org/packages/b4/97/a98b44e683e20a2b3678dfd6cbd9b1c45c886fc1d369f3c9df25c7cc5371/Shiboken-1.2.2-py3.4-win32.egg" }, { "comment_text": "", "digests": { "md5": "b8cfe0e55e1644395849e0dd000f5a84", "sha256": "412580192ecc5122c43337ba4026691de5c384dd1e74193d8155e920bd5973c2" }, "downloads": -1, "filename": "Shiboken-1.2.2-py3.4-win-amd64.egg", "has_sig": false, "md5_digest": "b8cfe0e55e1644395849e0dd000f5a84", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 2490816, "upload_time": "2014-04-24T16:19:38", "url": "https://files.pythonhosted.org/packages/b0/f1/5af8d39ebfb8db406dfc67fc66ccf0a1ca9a03fd8534c84fde83ed764a2d/Shiboken-1.2.2-py3.4-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "345cfebda221f525842e079a6141e555", "sha256": "0baee03c6244ab56e42e4200d0cb5e234682b11cc296ed0a192fe457d054972f" }, "downloads": -1, "filename": "Shiboken-1.2.2.tar.gz", "has_sig": false, "md5_digest": "345cfebda221f525842e079a6141e555", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1121033, "upload_time": "2014-04-24T09:22:40", "url": "https://files.pythonhosted.org/packages/3a/b5/e89449be343044fc1ddfc52f321c0b06988466272209c8de9b44cd10cf7b/Shiboken-1.2.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "ff95de43933835e75087c9a7c12537d4", "sha256": "c74c0731efdf016e252dd83c49d1590aa2c18d0d439df2d8a5703e772008c6d2" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py2.6.exe", "has_sig": false, "md5_digest": "ff95de43933835e75087c9a7c12537d4", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 2369517, "upload_time": "2014-04-24T15:50:38", "url": "https://files.pythonhosted.org/packages/fa/2e/2949c80ab4abe7c4cac826b105800e1a47b70321bf2ae37ef5b69318ab28/Shiboken-1.2.2.win32-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "028586149cfba460b407cab86a99c511", "sha256": "056a52f35d2c3481326bf4a275626880ac9e3932c79b095816a8e972993cb7b4" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py2.7.exe", "has_sig": false, "md5_digest": "028586149cfba460b407cab86a99c511", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 2343568, "upload_time": "2014-04-24T15:58:35", "url": "https://files.pythonhosted.org/packages/df/7b/774679aa39e544a60ef2de2ecef5b04a8b2598e91deaf07f829910b1b53c/Shiboken-1.2.2.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "0817a6574095f9948395b296fa8abe0b", "sha256": "cd5cc9b6c5362f5af05e428ce91b444b3f66f8dbff29985257254a90cec199e6" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py3.2.exe", "has_sig": false, "md5_digest": "0817a6574095f9948395b296fa8abe0b", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 2370203, "upload_time": "2014-04-24T19:18:10", "url": "https://files.pythonhosted.org/packages/6b/ab/e3110c28bc2cd51d723e51326e483065bc6450a5f223a712c3486f3989cb/Shiboken-1.2.2.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "0529ff6eaec016f23a4769527a140271", "sha256": "5fd7faf34436c197af78f3f2bd251a7e83947665f0d656d582b72e70aa1ab448" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py3.3.exe", "has_sig": false, "md5_digest": "0529ff6eaec016f23a4769527a140271", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 2454944, "upload_time": "2014-04-24T18:22:25", "url": "https://files.pythonhosted.org/packages/ca/8c/a70541c538e467b78ca61aff2a7d0f0d3f8e07c9b3b7fa3984e5196127b4/Shiboken-1.2.2.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "35c4960c912bba72a4b74ba7489062e3", "sha256": "8d7266c72c2979db9baf5170852c3348cf832a1914c1aa8d096437360fbadc5b" }, "downloads": -1, "filename": "Shiboken-1.2.2.win32-py3.4.exe", "has_sig": false, "md5_digest": "35c4960c912bba72a4b74ba7489062e3", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 2391309, "upload_time": "2014-04-24T16:14:36", "url": "https://files.pythonhosted.org/packages/ff/05/bf39198c5d3c6cb58993ad2004377ba5f778d25c1bc9a8ad2c8facaef750/Shiboken-1.2.2.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "ccc65330892ce0776ebd03c2b8e13c79", "sha256": "95a72f6d6e92b5e2eae83bcf87481b5c0ffb096aa22832ab603b783b1023dd25" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py2.6.exe", "has_sig": false, "md5_digest": "ccc65330892ce0776ebd03c2b8e13c79", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 2856833, "upload_time": "2014-04-24T15:57:26", "url": "https://files.pythonhosted.org/packages/e6/05/116f128c32f06a41c43615ffca2e01eaea6adcb9c39f0be20c9fe183ba46/Shiboken-1.2.2.win-amd64-py2.6.exe" }, { "comment_text": "", "digests": { "md5": "e33a6f625b61457f018c4a991fa2e7f5", "sha256": "73fb9aee8424a3339c5abc85934bd7e467fb64e7568459dda0b9a0170b5ab26a" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "e33a6f625b61457f018c4a991fa2e7f5", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 2830852, "upload_time": "2014-04-24T16:00:31", "url": "https://files.pythonhosted.org/packages/68/43/6480733f2d240bcd2f4f44e8ac8a6ad5d5d4fd222b6d3ba70da6b936a25f/Shiboken-1.2.2.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "a31166de3403c3685d5856d1251bb190", "sha256": "e820f0f359be6b42dfe7a38dec7668fe6d2fb50595205397896b660004fdd248" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "a31166de3403c3685d5856d1251bb190", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 2857546, "upload_time": "2014-04-24T19:10:28", "url": "https://files.pythonhosted.org/packages/d7/08/28fcf7d4f2d22647bfa5bbb277e016fc1b30d67f9144a30be4e4508d3f84/Shiboken-1.2.2.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "73e95833e13ae99b323c7b09286a9c6d", "sha256": "6420e25a57e5948ba2c3c244151b6b969fb8618f3e04e1149ef54e031d42d71a" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "73e95833e13ae99b323c7b09286a9c6d", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 2793617, "upload_time": "2014-04-24T16:10:08", "url": "https://files.pythonhosted.org/packages/10/e5/5bde7f9c5180e1887f183f552f295008b9637e765bdd59294bf7526427fd/Shiboken-1.2.2.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "ba29baf958d717ace8f4de97b1f834b6", "sha256": "fbea4ec36dbdfca99738470315f4780344e9bd399935833486aabdfb7563b5c1" }, "downloads": -1, "filename": "Shiboken-1.2.2.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "ba29baf958d717ace8f4de97b1f834b6", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 2729073, "upload_time": "2014-04-24T16:18:13", "url": "https://files.pythonhosted.org/packages/5f/43/6251d4763558608c711cb24786c8b375bbf21b8a588e4b403f393d76b2dc/Shiboken-1.2.2.win-amd64-py3.4.exe" } ] }