Skip to main content

Python bindings for the Qt cross-platform application and UI framework

Project description

Wheel Status Downloads Latest Version License https://readthedocs.org/projects/pip/badge/

Introduction

PySide is the Python Qt bindings project, providing access the complete Qt 4.8 framework as well as to generator tools for rapidly generating bindings for any C++ libraries.

The PySide project is developed in the open, with all facilities you’d expect from any modern OSS project such as all code in a git repository, an open Bugzilla for reporting bugs, and an open design process. We welcome any contribution without requiring a transfer of copyright.

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

Compatibility

PySide requires Python 2.6 or later and Qt 4.6 or better.

Installation

Installing prerequisites

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

Installing PySide on a Windows System

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

  1. Use pip to install the wheel binary packages:

    pip install -U PySide
  2. Use setuptools to install the egg binary packages (deprecated):

    easy_install -U PySide

Installing PySide on a Mac OS X System

You need to install or build Qt 4.8 first, see the Qt Project Documentation.

Alternatively you can use Homebrew and install Qt with

$ brew install qt

To install PySide on Mac OS X you can choose from the following options:

  1. Use pip to install the wheel binary packages:

    $ pip install -U PySide

After the installation, the following call must be made manually:

$ pyside_postinstall.py -install

Installing PySide on a Linux System

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

Building PySide

Feedback and getting involved

Changes

1.2.2 (2014-04-24)

Complete list of changes and bug fixes

PySide

  • Fix PYSIDE-190: QCoreApplication would deadlock on exit if the global QThreadPool.globalInstance() is running a QRunnable with python code

  • Change GlobalReceiver to explicitly ‘use’ [dis]connectNotify of the base class in order to avoid hiding these with its own overloads.

  • Add explicit casts when initializing an int[] using {}’s, as required by C++11 to be “well formed”

  • Fix PYSIDE-172: multiple rules for file

  • Use file system encoding instead of assumed ‘ascii’ when registering qt.conf in Qt resource system

Shiboken

  • 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

PySide

  • In memory qt.conf generation and registration

Shiboken

  • Better support for more than 9 arguments to methods

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

PySide-setup

  • Switched to the new setuptools (v0.9.8) which has been merged with Distribute again and works for Python 2 and 3 with one codebase

  • Support for building windows binaries with only Windows SDK installed (Visual Studio is no more required)

  • Removed –msvc-version option. Required msvc compiler version is now resolved from python interpreter version

1.2.0 (2013-07-02)

Major changes

PySide
  • Fix multiple segfaults and better track the life time of Qt objects

  • Fix multiple memory leaks

Shiboken
  • Install the shiboken module to site-packages

  • Fix multiple segfaults

PySide-setup
  • On Windows system, when installing PySide binary distribution via easy_install, there is no more need to call the post-install script

  • Support for building windows binaries outside of Visual Studio command prompt

  • Build and package the shiboken docs when sphinx is installed

Complete list of changes and bug fixes

PySide
  • Set up PYTHONPATH for tests correctly

  • Fix potential segfault at shutdown

  • Fix PYSIDE-61

  • Tell Qt to look for qml imports in the PySide package

  • fix build in C++11 mode

  • Fix QByteArray memory leak

  • Ignore QtCore import errors when initializing plugins folder

  • Preload OpenSSL DLLs on Windows.

  • Look first in the PySide package for Qt’s plugins folder, instead of just in Qt’s install or build folder

  • Add explicit type conversion to fix mingw compile error

  • Use QObject property to invalidate wrapper before deletion

  • Invalidate metaObject wrapper before deletion

  • Fix reference leak on convertion from a C++ map type to Python dict

  • Change the order of pysitetest and signals directories because signals/disconnect_test.py depends on pysidetest module

Shiboken
  • 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

PySide-setup
  • Support for building windows binaries outside of Visual Studio command prompt

  • Build and package the shiboken docs when sphinx is installed

  • Support Ubuntu 13.04 and Fedora 18

  • Fixed “develop” setuptools command

  • Documentation updates

  • Add –build-tests option to enable building the tests

  • Add –jom and –jobs options

  • Add –no-examples option to exclude the examples

  • Add –relwithdebinfo option to enable a release-with-debug-info build mode

  • Add –ignore-git option

  • Add –make-spec option to specify make generator

1.1.2 (2012-08-28)

Bug fixes

  • During signal emission don’t get return type after callback

  • Invalidate QStandardModel::invisibleRootItem in clear() method

  • QAbstractItemModel has wrong ownership policy for selectionModel()

  • Improved QVector to python conversion

  • Disable docstring generation if tools aren’t found.

  • Fixed some issues compiling PySide using VC++

  • Install the shiboken module to site-packages

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

  • Set a default hash function for all ObjectTypes.

  • Fix segfault calling shiboken.dump

1.1.1 (2012-04-19)

Major changes

  • Unified toolchain! No more GeneratorRunner and ApiExtractor, now you just need Shiboken to compile PySide.

Bug fixes

  • 1105 Spyder fails with HEAD

  • 1126 Segfault when exception is raised in signalInstanceDisconnect

  • 1135 SIGSEGV when loading custom widget using QUiLoader when overriding createWidget()

  • 1041 QAbstractItemModel has wrong ownership policy for selectionModel()

  • 1086 generatorrunner segfault processing #include

  • 1110 Concurrency error causes GC heap corruption

  • 1113 Instantiating QObject in user-defined QML element’s constructor crashes if instantiated from QML

  • 1129 Segmentation fault on close by QStandardItem/QStandardItemModel

  • 1104 QSettings has problems with long integers

  • 1108 tests/QtGui/pyside_reload_test.py fails when bytecode writing is disabled

  • 1138 Subclassing of QUiLoader leads to “Internal C++ object already deleted” exception (again)

  • 1124 QPainter.drawPixmapFragments should take a list as first argument

  • 1065 Invalid example in QFileDialog documentation

  • 1092 shiboken names itself a ‘generator’

  • 1094 shiboken doesn’t complain about invalid options

  • 1044 Incorrect call to parent constructor in example

  • 1139 Crash at exit due to thread state (tstate) being NULL

  • PYSIDE-41 QModelIndex unhashable

1.1.0 (2012-01-02)

Major changes

  • New type converter scheme

Bug fixes

  • 1010 Shiboken Cygwin patch

  • 1034 Error compiling PySide with Python 3.2.2 32bit on Windows

  • 1040 pyside-uic overwriting attributes before they are being used

  • 1053 pyside-lupdate used with .pro files can’t handle Windows paths that contain spaces

  • 1060 Subclassing of QUiLoader leads to “Internal C++ object already deleted” exception

  • 1063 Bug writing to files using “QTextStream + QFile + QTextEdit” on Linux

  • 1069 QtCore.QDataStream silently fails on writing Python string

  • 1077 Application exit crash when call QSyntaxHighlighter.document()

  • 1082 OSX binary links are broken

  • 1083 winId returns a PyCObject making it impossible to compare two winIds

  • 1084 Crash (segfault) when writing unicode string on socket

  • 1091 PixmapFragment and drawPixmapFragments are not bound

  • 1095 No examples for shiboken tutorial

  • 1097 QtGui.QShortcut.setKey requires QKeySequence

  • 1101 Report invalid function signatures in typesystem

  • 902 Expose Shiboken functionality through a Python module

  • 969 viewOptions of QAbstractItemView error

1.0.9 (2011-11-29)

Bug fixes

  • 1058 Strange code in PySide/QtUiTools/glue/plugins.h

  • 1057 valgrind detected “Conditional jump or move depends on uninitialised value”

  • 1052 PySideConfig.cmake contains an infinite loop due to missing default for SHIBOKEN_PYTHON_SUFFIX

  • 1048 QGridLayout.itemAtPosition() crashes when it should return None

  • 1037 shiboken fails to build against python 3.2 (both normal and -dbg) on i386 (and others)

  • 1036 Qt.KeyboardModifiers always evaluates to zero

  • 1033 QDialog.DialogCode instances and return value from QDialog.exec_ hash to different values

  • 1031 QState.parentState() or QState.machine() causes python crash at exit

  • 1029 qmlRegisterType Fails to Increase the Ref Count

  • 1028 QWidget winId missing

  • 1016 Calling of Q_INVOKABLE method returning not QVariant is impossible…

  • 1013 connect to QSqlTableModel.primeInsert() causes crash

  • 1012 FTBFS with hardening flags enabled

  • 1011 PySide Cygwin patch

  • 1010 Shiboken Cygwin patch

  • 1009 GeneratorRunner Cygwin patch

  • 1008 ApiExtractor Cygwin patch

  • 891 ApiExtractor doesn’t support doxygen as backend to doc generation.

1.0.8 (2011-10-21)

Major changes

  • Experimental Python3.2 support

  • Qt4.8 beta support

Bug fixes

  • 1022 RuntimeError: maximum recursion depth exceeded while getting the str of an object

  • 1019 Overriding QWidget.show or QWidget.hide do not work

  • 944 Segfault on QIcon(None).pixmap()

1.0.7 (2011-09-21)

Bug fixes

  • 996 Missing dependencies for QtWebKit in buildscripts for Fedora

  • 986 Documentation links

  • 985 Provide versioned pyside-docs zip file to help packagers

  • 981 QSettings docs should empathize the behavior changes of value() on different platforms

  • 902 Expose Shiboken functionality through a Python module

  • 997 QDeclarativePropertyMap doesn’t work.

  • 994 QIODevice.readData must use qmemcpy instead of qstrncpy

  • 989 Pickling QColor fails

  • 987 Disconnecting a signal that has not been connected

  • 973 shouldInterruptJavaScript slot override is never called

  • 966 QX11Info.display() missing

  • 959 can’t pass QVariant to the QtWebkit bridge

  • 1006 Segfault in QLabel init

  • 1002 Segmentation fault on PySide/Spyder exit

  • 998 Segfault with Spyder after switching to another app

  • 995 QDeclarativeView.itemAt returns faulty reference. (leading to SEGFAULT)

  • 990 Segfault when trying to disconnect a signal that is not connected

  • 975 Possible memory leak

  • 991 The __repr__ of various types is broken

  • 988 The type supplied with currentChanged signal in QTabWidget has changed in 1.0.6

1.0.6 (2011-08-22)

Major changes

  • New documentation layout;

  • Fixed some regressions from the last release (1.0.5);

  • Optimizations during anonymous connection;

Bug fixes

  • 972 anchorlayout.py of graphicsview example raised a unwriteable memory exception when exits

  • 953 Segfault when QObject is garbage collected after QTimer.singeShot

  • 951 ComponentComplete not called on QDeclarativeItem subclass

  • 965 Segfault in QtUiTools.QUiLoader.load

  • 958 Segmentation fault with resource files

  • 944 Segfault on QIcon(None).pixmap()

  • 941 Signals with QtCore.Qt types as arguments has invalid signatures

  • 964 QAbstractItemView.moveCursor() method is missing

  • 963 What’s This not displaying QTableWidget column header information as in Qt Designer

  • 961 QColor.__repr__/__str__ should be more pythonic

  • 960 QColor.__reduce__ is incorrect for HSL colors

  • 950 implement Q_INVOKABLE

  • 940 setAttributeArray/setUniformValueArray do not take arrays

  • 931 isinstance() fails with Signal instances

  • 928 100’s of QGraphicItems with signal connections causes slowdown

  • 930 Documentation mixes signals and functions.

  • 923 Make QScriptValue (or QScriptValueIterator) implement the Python iterator protocol

  • 922 QScriptValue’s repr() should give some information about its data

  • 900 QtCore.Property as decorator

  • 895 jQuery version is outdated, distribution code de-duplication breaks documentation search

  • 731 Can’t specify more than a single ‘since’ argument

  • 983 copy.deepcopy raises SystemError with QColor

  • 947 NETWORK_ERR during interaction QtWebKit window with server

  • 873 Deprecated methods could emit DeprecationWarning

  • 831 PySide docs would have a “Inherited by” list for each class

1.0.5 (2011-07-22)

Major changes

  • Widgets present on “ui” files are exported in the root widget, check PySide ML thread for more information[1];

  • pyside-uic generate menubars without parent on MacOS plataform;

  • Signal connection optimizations;

Bug fixes

  • 892 Segfault when destructing QWidget and QApplication has event filter installed

  • 407 Crash while multiple inheriting with QObject and native python class

  • 939 Shiboken::importModule must verify if PyImport_ImportModule succeeds

  • 937 missing pid method in QProcess

  • 927 Segfault on QThread code.

  • 925 Segfault when passing a QScriptValue as QObject or when using .toVariant() on a QScriptValue

  • 905 QtGui.QHBoxLayout.setMargin function call is created by pyside-uic, but this is not available in the pyside bindings

  • 904 Repeatedly opening a QDialog with Qt.WA_DeleteOnClose set crashes PySide

  • 899 Segfault with ‘QVariantList’ Property.

  • 893 Shiboken leak reference in the parent control

  • 878 Shiboken may generate incompatible modules if a new class is added.

  • 938 QTemporaryFile JPEG problem

  • 934 A __getitem__ of QByteArray behaves strange

  • 929 pkg-config files do not know about Python version tags

  • 926 qmlRegisterType does not work with QObject

  • 924 Allow QScriptValue to be accessed via []

  • 921 Signals not automatically disconnected on object destruction

  • 920 Cannot use same slot for two signals

  • 919 Default arguments on QStyle methods not working

  • 915 QDeclarativeView.scene().addItem(x) make the x object invalid

  • 913 Widgets inside QTabWidget are not exported as members of the containing widget

  • 910 installEventFilter() increments reference count on target object

  • 907 pyside-uic adds MainWindow.setMenuBar(self.menubar) to the generated code under OS X

  • 903 eventFilter in ItemDelegate

  • 897 QObject.property() and QObject.setProperty() methods fails for user-defined properties

  • 896 QObject.staticMetaObject() is missing

  • 916 Missing info about when is possible to use keyword arguments in docs [was: QListWidgetItem’s constructor ignores text parameter]

  • 890 Add signal connection example for valueChanged(int) on QSpinBox to the docs

  • 821 Mapping interface for QPixmapCache

  • 909 Deletion of QMainWindow/QApplication leads to segmentation fault

Download files

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

Source Distribution

PySide-1.2.2.tar.gz (9.3 MB view details)

Uploaded Source

Built Distributions

PySide-1.2.2-cp34-none-win_amd64.whl (43.3 MB view details)

Uploaded CPython 3.4 Windows x86-64

PySide-1.2.2-cp34-none-win32.whl (40.5 MB view details)

Uploaded CPython 3.4 Windows x86

PySide-1.2.2-cp34-cp34m-macosx_10_9_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.4m macOS 10.9+ x86-64

PySide-1.2.2-cp34-cp34m-macosx_10_9_intel.whl (16.3 MB view details)

Uploaded CPython 3.4m macOS 10.9+ intel

PySide-1.2.2-cp34-cp34m-macosx_10_8_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.4m macOS 10.8+ x86-64

PySide-1.2.2-cp34-cp34m-macosx_10_8_intel.whl (16.8 MB view details)

Uploaded CPython 3.4m macOS 10.8+ intel

PySide-1.2.2-cp34-cp34m-macosx_10_7_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.4m macOS 10.7+ x86-64

PySide-1.2.2-cp34-cp34m-macosx_10_7_intel.whl (16.8 MB view details)

Uploaded CPython 3.4m macOS 10.7+ intel

PySide-1.2.2-cp34-cp34m-macosx_10_6_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.4m macOS 10.6+ x86-64

PySide-1.2.2-cp34-cp34m-macosx_10_6_intel.whl (16.8 MB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

PySide-1.2.2-cp33-none-win_amd64.whl (43.3 MB view details)

Uploaded CPython 3.3 Windows x86-64

PySide-1.2.2-cp33-none-win32.whl (40.6 MB view details)

Uploaded CPython 3.3 Windows x86

PySide-1.2.2-cp33-cp33m-macosx_10_9_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.3m macOS 10.9+ x86-64

PySide-1.2.2-cp33-cp33m-macosx_10_9_intel.whl (16.4 MB view details)

Uploaded CPython 3.3m macOS 10.9+ intel

PySide-1.2.2-cp33-cp33m-macosx_10_8_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.3m macOS 10.8+ x86-64

PySide-1.2.2-cp33-cp33m-macosx_10_8_intel.whl (16.8 MB view details)

Uploaded CPython 3.3m macOS 10.8+ intel

PySide-1.2.2-cp33-cp33m-macosx_10_7_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.3m macOS 10.7+ x86-64

PySide-1.2.2-cp33-cp33m-macosx_10_7_intel.whl (16.8 MB view details)

Uploaded CPython 3.3m macOS 10.7+ intel

PySide-1.2.2-cp33-cp33m-macosx_10_6_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.3m macOS 10.6+ x86-64

PySide-1.2.2-cp33-cp33m-macosx_10_6_intel.whl (16.8 MB view details)

Uploaded CPython 3.3m macOS 10.6+ intel

PySide-1.2.2-cp32-none-win_amd64.whl (44.4 MB view details)

Uploaded CPython 3.2 Windows x86-64

PySide-1.2.2-cp32-none-win32.whl (40.1 MB view details)

Uploaded CPython 3.2 Windows x86

PySide-1.2.2-cp32-cp32m-macosx_10_9_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.2m macOS 10.9+ x86-64

PySide-1.2.2-cp32-cp32m-macosx_10_9_intel.whl (16.4 MB view details)

Uploaded CPython 3.2m macOS 10.9+ intel

PySide-1.2.2-cp32-cp32m-macosx_10_8_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.2m macOS 10.8+ x86-64

PySide-1.2.2-cp32-cp32m-macosx_10_8_intel.whl (16.8 MB view details)

Uploaded CPython 3.2m macOS 10.8+ intel

PySide-1.2.2-cp32-cp32m-macosx_10_7_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.2m macOS 10.7+ x86-64

PySide-1.2.2-cp32-cp32m-macosx_10_7_intel.whl (16.8 MB view details)

Uploaded CPython 3.2m macOS 10.7+ intel

PySide-1.2.2-cp32-cp32m-macosx_10_6_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.2m macOS 10.6+ x86-64

PySide-1.2.2-cp32-cp32m-macosx_10_6_intel.whl (16.8 MB view details)

Uploaded CPython 3.2m macOS 10.6+ intel

PySide-1.2.2-cp27-none-win_amd64.whl (44.7 MB view details)

Uploaded CPython 2.7 Windows x86-64

PySide-1.2.2-cp27-none-win32.whl (40.5 MB view details)

Uploaded CPython 2.7 Windows x86

PySide-1.2.2-cp27-none-macosx_10_9_x86_64.whl (16.7 MB view details)

Uploaded CPython 2.7 macOS 10.9+ x86-64

PySide-1.2.2-cp27-none-macosx_10_9_intel.whl (16.7 MB view details)

Uploaded CPython 2.7 macOS 10.9+ intel

PySide-1.2.2-cp27-none-macosx_10_8_x86_64.whl (17.2 MB view details)

Uploaded CPython 2.7 macOS 10.8+ x86-64

PySide-1.2.2-cp27-none-macosx_10_8_intel.whl (17.2 MB view details)

Uploaded CPython 2.7 macOS 10.8+ intel

PySide-1.2.2-cp27-none-macosx_10_7_x86_64.whl (17.2 MB view details)

Uploaded CPython 2.7 macOS 10.7+ x86-64

PySide-1.2.2-cp27-none-macosx_10_7_intel.whl (17.2 MB view details)

Uploaded CPython 2.7 macOS 10.7+ intel

PySide-1.2.2-cp27-none-macosx_10_6_x86_64.whl (17.2 MB view details)

Uploaded CPython 2.7 macOS 10.6+ x86-64

PySide-1.2.2-cp27-none-macosx_10_6_intel.whl (17.2 MB view details)

Uploaded CPython 2.7 macOS 10.6+ intel

PySide-1.2.2-cp26-none-win_amd64.whl (44.8 MB view details)

Uploaded CPython 2.6 Windows x86-64

PySide-1.2.2-cp26-none-win32.whl (40.5 MB view details)

Uploaded CPython 2.6 Windows x86

PySide-1.2.2-cp26-none-macosx_10_9_x86_64.whl (16.7 MB view details)

Uploaded CPython 2.6 macOS 10.9+ x86-64

PySide-1.2.2-cp26-none-macosx_10_9_intel.whl (16.7 MB view details)

Uploaded CPython 2.6 macOS 10.9+ intel

PySide-1.2.2-cp26-none-macosx_10_8_x86_64.whl (17.2 MB view details)

Uploaded CPython 2.6 macOS 10.8+ x86-64

PySide-1.2.2-cp26-none-macosx_10_8_intel.whl (17.2 MB view details)

Uploaded CPython 2.6 macOS 10.8+ intel

PySide-1.2.2-cp26-none-macosx_10_7_x86_64.whl (17.2 MB view details)

Uploaded CPython 2.6 macOS 10.7+ x86-64

PySide-1.2.2-cp26-none-macosx_10_7_intel.whl (17.2 MB view details)

Uploaded CPython 2.6 macOS 10.7+ intel

PySide-1.2.2-cp26-none-macosx_10_6_x86_64.whl (17.2 MB view details)

Uploaded CPython 2.6 macOS 10.6+ x86-64

PySide-1.2.2-cp26-none-macosx_10_6_intel.whl (17.2 MB view details)

Uploaded CPython 2.6 macOS 10.6+ intel

File details

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

File metadata

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

File hashes

Hashes for PySide-1.2.2.tar.gz
Algorithm Hash digest
SHA256 53129fd85e133ef630144c0598d25c451eab72019cdcb1012f2aec773a3f25be
MD5 c45bc400c8a86d6b35f34c29e379e44d
BLAKE2b-256 b47b2fc9d9e5c651c1550362d87bc4ab4cfe5368b312c1eaf477b5a4be708abd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 2ba64ad9b9f793069725b305c85728655eca912fc1e39e8c8ab38f6b8f6e41c2
MD5 f02e4b44109cc1d0db980a44484f6f90
BLAKE2b-256 14f6a0632fc7ea98c23874caf6c5f52fc0d5ff86fe46054214b26b66863721f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-none-win32.whl
Algorithm Hash digest
SHA256 7a7d4a02802697f5bbceac29659ed3c2cd32eda720aa2bde456355f61f96fdae
MD5 ee48ae91402442b4089b86ef379472e5
BLAKE2b-256 f1aee793e56b3d6bbaf6f5ec4bad6a6ac73977c2d159288d8a40aa00ebc258cf

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp34-cp34m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-cp34m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0a3b8ad8e10ca39450f0c348c8548db26bccde8c3b8657aef5faa1d83d8571c
MD5 640949b27620505336bfb6212317bf01
BLAKE2b-256 07131c319b4f20dfab383fd66236948c94beb7b8219384fdafa73d852c52f90c

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp34-cp34m-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-cp34m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 97915dd2cb16e08427b1a4b5fef49da516253e401ad6d80fdb6bdfed00a6d723
MD5 2629b426419572350519bd11dbcc0827
BLAKE2b-256 ef68ccb234aea2c680affa1e766e8dcb93f4ddafeda19e3bc6ba03fb982caa20

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp34-cp34m-macosx_10_8_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-cp34m-macosx_10_8_x86_64.whl
Algorithm Hash digest
SHA256 ad696712bfa53e675a6bf919ffcce4ecba8f85c4c9fabc9ccf36fab37aa1a0da
MD5 e636da5e9dfc4fb508be0caac75cdd7a
BLAKE2b-256 580f2b6c544d5f30368d4aa3551b04e534562195a860e65c8359e5c17b2f0487

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp34-cp34m-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-cp34m-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 ecd11f79d70e365b61799d2ff7d5a90cc6186d13b91efeb888e7196c4a306f62
MD5 c9dbcb1b5b57994d9a904cd8c9e228f0
BLAKE2b-256 5768af9e8d282ae170f861652f92ebada11024346a3d18ce017c042288edb9bf

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp34-cp34m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-cp34m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2721d580d730db02fa63ee8085013953412a05c2d9e16920e5ec2bcf3d92c733
MD5 f6817f6a411db819a03af46b0f7713c9
BLAKE2b-256 aac55689921bff63d06a80a93a4028b092b5478a3bc44bb1a49209ca7a243d8c

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp34-cp34m-macosx_10_7_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 921e10aaa8c0030aebf6da637be87ae0eb203fc26380ae93c06dacc67ebd0804
MD5 12e3ed46fed9aa860eb51c76ec912b49
BLAKE2b-256 fe148b8b846b6d35389577d8f14466dc039f7295016c63aab25178a5f6c45fd2

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp34-cp34m-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-cp34m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 80aab44ff375f6f835f3d011f9a23c77434a57b82202c30de58db0892972b42f
MD5 c185af4936cfcc7a46eb23735ca4e56a
BLAKE2b-256 ecf6e1bcce08cd1aece2a54b426172f884cde0165e2a662896a24c67a93f413b

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp34-cp34m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 460f104497afb3f4934b2961b3d9ea0aa5983129167061915c18d0d54ac76e8b
MD5 edbe69a457ef3ff7e6a0c9be2c113dfd
BLAKE2b-256 b6d035e3fad24b803872719fcbc3ab95910702b6a00cbaafbadd911a5317ef7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 fb85e67f61edead939240026243dc3f4110df89a8700607d98e7ce1cbde70785
MD5 8535b07d0435f7ce5481aafd6e379b5a
BLAKE2b-256 394be7a7339dc88d2fb6fba1d7a9ee123790fe82ffcc90caf234223f8fd3fdc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-none-win32.whl
Algorithm Hash digest
SHA256 9fc8fe32d0ac039d355b025153059cd3883e1c52c4955f616b23a995ee145b10
MD5 eb144cd65436850ef093630fd32fde54
BLAKE2b-256 5fc4997f275aa55c14e056f9841b718cd0d2e3e3a59757ec5164c6f39e41a956

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp33-cp33m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-cp33m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4bec71677cd683e3e062ca5d10e122f2924b2a5b03ccbee2107e680140acd75d
MD5 6ad0d652bcde9173c4f64f6c3caee41e
BLAKE2b-256 264d110fe4e8d42638730151a885c0183e29da4e37070892cc3d34a233f3a83f

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp33-cp33m-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-cp33m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 7c696b52bf6abeb88c89cf865edbd6c269fb9821d7f9263fbfa85026500ff0be
MD5 a602565fc30fe8e882d720cca8812d47
BLAKE2b-256 5fb8fe19afff556b5c9db73060d5f9580e22a41a37856ef3b7d33113b2b55120

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp33-cp33m-macosx_10_8_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-cp33m-macosx_10_8_x86_64.whl
Algorithm Hash digest
SHA256 49c5fe1861f125801238c2cc6964d73a48b0656b2c263123004746d48edcb05d
MD5 75b855464ca516467d8a2a7285011c19
BLAKE2b-256 bf017ae362620d2eb88416cfb51af530f6f575b8823730ff9864d51252c06070

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp33-cp33m-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-cp33m-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 73d4dadfeea3ab46522609152314e196e31d10e597e86a6b399c1f6f85a6f2a8
MD5 0cf911764951fa5143206325264a34e5
BLAKE2b-256 8809b98df8b5dae2a9e5d8c5c3c52f757acc3e22194238d8daff527bc310b025

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp33-cp33m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-cp33m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 18ba75e1c3ba964ec726405700cda9e15d00829017a19df4da07a40e838f7557
MD5 0f8c531d308d6bc8358df4e15c89d29e
BLAKE2b-256 851d4734f8fb5aa4a2c01c44a7290164a1bc76ac358ce0a8fce6a9fd9e005eaf

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp33-cp33m-macosx_10_7_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-cp33m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 ec190110f9a8b426dd39082ab0c6eb8279e6fd09c96dc462e373d1ca738e868b
MD5 fb713a825fe447739467367487e3b29a
BLAKE2b-256 63328b574866531f7790c3dcaf08af29fe28ca4bee42192956ad43d944d6fc75

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp33-cp33m-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-cp33m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 aee87bdb5e069d8a07ccd012b431ac37590dd6fb1b425f797e84f6e0b3131877
MD5 4a5b3878ad1d93baa1472dc1a3427316
BLAKE2b-256 b1c53bed6cb0d094ffa87291500c7eda4ea2fdebb199ebc26c7c911efc257645

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp33-cp33m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp33-cp33m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 97bbc02171e5b5ae2b83170b105cc40ab457d94a9fa85a3eac950a5d9c823a38
MD5 c22f321177b914f17a55a7325988044d
BLAKE2b-256 86ebbfc8b8a8e669a9993215417e2c844c23bf16606149f9c5ab3acd38779667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 470ff5f44a994d7c5ddcf9dd860d56699aadd654ab7388aaa41f69c6d96d211d
MD5 594a51013e412b97fb5ba4c2eefbaeef
BLAKE2b-256 a63fddae97de91dd2df9490af761edf07063ee4ab8ed6cefa67561b1af1fc087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-none-win32.whl
Algorithm Hash digest
SHA256 1c856fb91cbfc452f04ebb71f8503f864677007a2fbab8463e486dc499d7ab7c
MD5 287c92b6a838d0399c9bc72e1c692102
BLAKE2b-256 57de8e71bea68f4ceba75f5718421453150b6e8a36e2d84d74922e7365576db9

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp32-cp32m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-cp32m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03878c592f0a390d8af2b68fc42d51cb96ff1d356dfa9d062d11efe02b1797fa
MD5 f90081784eeafcd198e7369be1da823d
BLAKE2b-256 19d006b0a04f60c7a63ccfd8432bd632aa1da73a828cee2da2f0f4e5e669ac32

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp32-cp32m-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-cp32m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 abf67f6921f015f116f1507c518e6a4a1da8c0864283722408483704ce852cea
MD5 8cb24d97dfdfad47b841c234087ac24d
BLAKE2b-256 8745b3e2c741ec805c93b9677b3c1c8d086c0650c6bd754ffe83bf38ff657541

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp32-cp32m-macosx_10_8_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-cp32m-macosx_10_8_x86_64.whl
Algorithm Hash digest
SHA256 fb766883b3e3fa2839d37be1668c987294efade084234b3a017b58047d48d1f7
MD5 d5eebf28a985010149a4e2185ea9f1c6
BLAKE2b-256 19cc53e952a847e44ee9b9d17f0bba59fd9aa145d1f457d4e59d78a238b7190c

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp32-cp32m-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-cp32m-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 ee8204b4caf357a48ab53030cc28a600619ad17c4fb9f3fafdd695c95d428fbb
MD5 ebefff9dbc5a56c4ce75432c4996eb58
BLAKE2b-256 f63ceac96371a9abc6f30ce81121f2cf5d659fcdfc5f11fe204481487fba52a8

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp32-cp32m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-cp32m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 295b16465348d98f5a207b9ad6d64501d5629cf5e115d2b6095037f868eda733
MD5 bb53120baf9b43061611f09935cc41bb
BLAKE2b-256 a0a797ed66df0c548f82d311bb50c5fafea7ee1bab7c2e4b0672c0d41cbc20f9

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp32-cp32m-macosx_10_7_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-cp32m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 71cb3c00e3de55bf66f777b63c5ce4053ab96048713ce39adee58d020e19a709
MD5 61d620aa7676dd2fe940884b50ec2243
BLAKE2b-256 229bec124a988114911c1f816bb54f6177ad2697bc08e94c2e7059c920a543d9

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp32-cp32m-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-cp32m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 6bf5caca7ddc843ae5ccae2da44b6d56fa680fd6c75a25bf2ba1e001d449bf10
MD5 76de5ea84c32f531cecab686dceae5cf
BLAKE2b-256 bfc94d365775b85b7707b7ec7078520db7e8755d8a8eb79689c702f0f3f88644

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp32-cp32m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp32-cp32m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 826c4dd915521b075a4266a97ec9407e30dd24e732efc1ead7379d41a437037f
MD5 19d75dc519fa0b6dd2e4272759eeeb65
BLAKE2b-256 4dc26d494616a338f61455426b01617d893557513cb6e807daceb5857cad0978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 d44c1243a903a632709265226eb3a085bc71e0182614214f80db045ec7755096
MD5 0bbacc1aacc97b78f73999b825b2ee59
BLAKE2b-256 d85ec5409eb49b128ce1eed9521056a4e6a2e88fd46c9b86a2a0e6f274577552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-win32.whl
Algorithm Hash digest
SHA256 4fd0bfe8c2a9c6a5337113eccb7fb2e3bd12b166f29d95e61973c28b7d4c1b95
MD5 0d201a0034a7150289b254905b320217
BLAKE2b-256 ad8b4753dc61c3b6548fe1e86464bf78750d04bb7574906f9dfc2c84ad964f8c

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp27-none-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6a8ba521fcf3f2569bb9a54b5966264a44ebefb8899be4b898f5a915b6f5d71
MD5 089568ff0697d90240712f33c0c0c5ea
BLAKE2b-256 54a09b5192027a594e70e36238f835e0cfbfca606e95e4d37ef8d1c0e8dbde80

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp27-none-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 5f1fd97b71d51c8652ccb6158b0b16bfb123b76ce243cae3e70a6ea7359b0962
MD5 a9b2c00690acecc864c97d368b343ab5
BLAKE2b-256 321fa22c8d4465da7d0a77485988174ac37a877e636de838acacf69ec5b9c355

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp27-none-macosx_10_8_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-macosx_10_8_x86_64.whl
Algorithm Hash digest
SHA256 1f1093386341749bb237a06ec1a1eb0452fdc7ddae67ac850911b3b35836fa4a
MD5 65afb2ec3638b46a07792d66b0ee8f43
BLAKE2b-256 9928693992c7134a1f2d3fec61a37bd234358c9cf2dfc49c8559435c12427583

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp27-none-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 3a3e78777b704519c87bab0ff790f925e2815af08092b7c16ac7dfb9bc5f6efd
MD5 7cbdc5d10cbea272ac1ee8c51ea44d03
BLAKE2b-256 b00d60a32b62c11402535613822d8bbc5dd8ed3a589e10a8473206efb940b38d

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp27-none-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fc4c3f5bc0a8c89d8467a504b508a699aef49c80991a84535011c7eb77b31a1f
MD5 1739d95db902697dfbb6bf64939d8a64
BLAKE2b-256 3952a605435b4442cbbaaf7a4fe11287c53448edbc3dcbaa0e321b9fcc882706

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp27-none-macosx_10_7_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 97cc6570f75b953be944eb80acc63442d9513908701f8fc6d5046975acdf69ab
MD5 b954ce7678c4d1498bf7bf1746ce87f0
BLAKE2b-256 7e05f775f099572f2fe8f13466105dd1204568fd954b84e5dcee109499f4a4e0

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp27-none-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 f6d7c3d10fbfb2d0be069b81d632c60690117184fc235a97ce46764fcbe06f99
MD5 3f834bc51358b5a68a929bbc908b1c9f
BLAKE2b-256 705180689fbe789173825f4933c5e226a01e637fa4499c65b1acbf459918e265

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp27-none-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp27-none-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 2f9165cc7e7c9afb2e1e5cc227888f42c456ceee99e62933915c3093e03312d1
MD5 697c37ec3a285943a19a26c5dbb1c81e
BLAKE2b-256 5c3840918780d0ede5fb950ffcb93a8acaba1e0f3a6734235497498bbe2996e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 2f854ccd5449ab3188da8c40624da82a1f21e99cfc69f0443cafca94fdc03b0a
MD5 02c5addd2207aa1d1bd8d752aeecd727
BLAKE2b-256 678dd5c3bdb136471754202bbb7295bf7113858051fdf79e6cd9eaa1606e602b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-win32.whl
Algorithm Hash digest
SHA256 469f370d1df2861e7ae669a12262a0ba9ca69453c77534630fe80f3020b7ad72
MD5 9a2a5817f3239a9502330c0d673eb765
BLAKE2b-256 83d2c15e7844042d6ffe0871f3f09cdd16e6d4e1f3b40934ef8554e6d95cf34f

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp26-none-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc1e0621fe3e07df74fb44175fa9d18c36f67eb2bae1a43ac5c5a5979ca7acb6
MD5 6bf29d5623506ebd8ff8944b159f384f
BLAKE2b-256 d8b2376e96d23818164ac383e879e12a6d3d473006d460a0fe3f661e1bcabf6d

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp26-none-macosx_10_9_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 a91eb2b64ad935d7cf22ad1db7cebed562ea082d281719c435247996e11f5089
MD5 144e682453d5c325723410618e02dcce
BLAKE2b-256 ec6f193833fe077e3b387750847615700cea577aeda4cb41fd4c4963c8db5cf7

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp26-none-macosx_10_8_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-macosx_10_8_x86_64.whl
Algorithm Hash digest
SHA256 149e315673bfdbf19eb16ad8156238438e0576dcf875dc65fa59c2075bc4ea5f
MD5 5ab76b1d76c02c9be753bd0993dc05b0
BLAKE2b-256 4c7a0a4833e08ebad014cb2fa9226a3b71198ebaa2c5f61e27808d76621c12b4

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp26-none-macosx_10_8_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-macosx_10_8_intel.whl
Algorithm Hash digest
SHA256 adf90af940fc3ad4998d60ec5404a950038aa5c5401f8a4c50e7659880ef854e
MD5 a6d9fb84c41cb0e0a9aec60885f2414b
BLAKE2b-256 3216509239cb446fc62d3aac515a21136ff1f1e73d809766899bfb3f8fd68f94

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp26-none-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5475cd27ea6f7131ca9dd7ef92b2e70ad1cbc99f9631f09746a7b8457f53319e
MD5 b3a19ecacf7bce1ae5dc83bba8968ac2
BLAKE2b-256 947021356163a9506591a9135411fa7c6397211fef6f01a75452cf9d879fc09a

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp26-none-macosx_10_7_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 cd30cd51b84b888e7c7793b40c30cc8afa8de1cb2092e907bc83a94a3bbbf9ff
MD5 90291772587df423d0730f4ff3dcd042
BLAKE2b-256 87627091adfd76934125c55f3dcfdf8ffbdca0bedcd8979e1d1bb6d1338e0f86

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp26-none-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 4cb8fc3fbeb0e71ccfc502cda1b5272ee132db24188e57b1b71f644ad0ebf12c
MD5 c993cfda13741b0b3709d64a6af78d85
BLAKE2b-256 80de063d97c879b54213fa05e699602a79dfe00dc659afabb8f60812d4323667

See more details on using hashes here.

File details

Details for the file PySide-1.2.2-cp26-none-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for PySide-1.2.2-cp26-none-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 5eaf1496623e335d2fc69ecd8ed0f1121a891b484202c3a9ad1abfbb2cfa0811
MD5 229a86f79bdd00e8a383570a8ddf5a2a
BLAKE2b-256 61b4dfcbc9155dca8568d648cc2241756b94cea4f6b7fc192d53f73fe1e1572f

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