Python qtpy.PYSIDE Examples
The following are 4
code examples of qtpy.PYSIDE().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
qtpy
, or try the search function
.
Example #1
Source File: terminalplugin.py From spyder-terminal with MIT License | 6 votes |
def check_compatibility(self): """Check if current Qt backend version is greater or equal to 5.""" message = '' valid = True if PYQT4 or PYSIDE: message = _('<b>spyder-terminal</b> doesn\'t work with Qt 4. ' 'Therefore, this plugin will be deactivated.') valid = False if WINDOWS: try: import winpty del winpty except: message = _('Unfortunately, the library that <b>spyder-termina' 'l</b> uses to create terminals is failing to ' 'work in your system. Therefore, this plugin will ' 'be deactivated.<br><br> This usually happens on ' 'Windows 7 systems. If that\'s the case, please ' 'consider updating to a newer Windows version.') valid = False return valid, message # ------ SpyderPluginWidget API ------------------------------
Example #2
Source File: test_qtxmlpatterns.py From qtpy with MIT License | 6 votes |
def test_qtxmlpatterns(): """Test the qtpy.QtXmlPatterns namespace""" from qtpy import QtXmlPatterns assert QtXmlPatterns.QAbstractMessageHandler is not None assert QtXmlPatterns.QAbstractUriResolver is not None assert QtXmlPatterns.QAbstractXmlNodeModel is not None assert QtXmlPatterns.QAbstractXmlReceiver is not None if not PYSIDE2 and not PYSIDE: assert QtXmlPatterns.QSimpleXmlNodeModel is not None assert QtXmlPatterns.QSourceLocation is not None assert QtXmlPatterns.QXmlFormatter is not None assert QtXmlPatterns.QXmlItem is not None assert QtXmlPatterns.QXmlName is not None assert QtXmlPatterns.QXmlNamePool is not None assert QtXmlPatterns.QXmlNodeModelIndex is not None assert QtXmlPatterns.QXmlQuery is not None assert QtXmlPatterns.QXmlResultItems is not None assert QtXmlPatterns.QXmlSchema is not None assert QtXmlPatterns.QXmlSchemaValidator is not None assert QtXmlPatterns.QXmlSerializer is not None
Example #3
Source File: reportsplugin.py From spyder-reports with MIT License | 5 votes |
def check_compatibility(self): """ Check plugin requirements. - PyQt version is greater or equal to 5. """ messages = [] valid = True if PYQT4 or PYSIDE: messages.append('Spyder-reports does not work with Qt4') valid = False return valid, ", ".join(messages) # -------------------------------------------------------------------------
Example #4
Source File: test_qtnetwork.py From qtpy with MIT License | 5 votes |
def test_qtnetwork(): """Test the qtpy.QtNetwork namespace""" assert QtNetwork.QAbstractNetworkCache is not None assert QtNetwork.QNetworkCacheMetaData is not None if not PYSIDE and not PYSIDE2: assert QtNetwork.QHttpMultiPart is not None assert QtNetwork.QHttpPart is not None assert QtNetwork.QNetworkAccessManager is not None assert QtNetwork.QNetworkCookie is not None assert QtNetwork.QNetworkCookieJar is not None assert QtNetwork.QNetworkDiskCache is not None assert QtNetwork.QNetworkReply is not None assert QtNetwork.QNetworkRequest is not None assert QtNetwork.QNetworkConfigurationManager is not None assert QtNetwork.QNetworkConfiguration is not None assert QtNetwork.QNetworkSession is not None assert QtNetwork.QAuthenticator is not None assert QtNetwork.QHostAddress is not None assert QtNetwork.QHostInfo is not None assert QtNetwork.QNetworkAddressEntry is not None assert QtNetwork.QNetworkInterface is not None assert QtNetwork.QNetworkProxy is not None assert QtNetwork.QNetworkProxyFactory is not None assert QtNetwork.QNetworkProxyQuery is not None assert QtNetwork.QAbstractSocket is not None assert QtNetwork.QLocalServer is not None assert QtNetwork.QLocalSocket is not None assert QtNetwork.QTcpServer is not None assert QtNetwork.QTcpSocket is not None assert QtNetwork.QUdpSocket is not None if not PYSIDE: assert QtNetwork.QSslCertificate is not None assert QtNetwork.QSslCipher is not None assert QtNetwork.QSslConfiguration is not None assert QtNetwork.QSslError is not None assert QtNetwork.QSslKey is not None assert QtNetwork.QSslSocket is not None