First, PySide itself is licensed under LGPLv2.1, most of the examples are licensed under GPLv2. After importing PySide then you can see all PySide python submodule:
| >>> import PySide >>> from PySide import * >>> dir(PySide) ['QtCore', 'QtGui', 'QtNetwork', 'QtOpenGL', 'QtScript', 'QtSql', 'QtSvg', 'QtTe st', 'QtWebKit', '__all__', '__builtins__', '__doc__', '__file__', '__name__', ' __package__', '__path__', '__version__', '__version_info__', '_setupQtDirectorie s', '_utils'] |
Also this can help you to see all about Qt components and versions using by PySide: Let’s how can do it:
| # prints PySide version >>> print PySide.__version__ 1.2.2 # gets a tuple with each version component >>> print PySide.__version_info__ (1, 2, 2, 'final', 0) # prints the Qt version used to compile PySide >>> print PySide.QtCore.__version__ 4.8.5 # gets a tuple with each version components of Qt used to compile PySide >>> print PySide.QtCore.__version_info__ (4, 8, 5) |
Something about PySide submodules: QtCore –… Read More »