# Error: No module named PySide.QtCore
# Traceback (most recent call last):
# File "<maya console>", line 1, in <module>
# File "E:\ProfessionalDevelopment\python\Introduction to Python Scripting in Maya\cgcircuitPython\wk6\geomGenerator_pysideDynamic.py", line 6, in <module>
# import pyside_dynamic2
# File "C:/Users/justin/Documents/maya/2017/scripts\pyside_dynamic2.py", line 42, in <module>
# from PySide.QtCore import Slot, QMetaObject
# ImportError: No module named PySide.QtCore # import os
from PySide2 import QtWidgets, QtCore, QtUiTools, QtGui
from shiboken2 import wrapInstance
import pyside_dynamic2
import maya.cmds as mc
import maya.OpenMayaUI as omui
def getMayaWindow():
''' pointer to the maya main window '''
ptr = omui.MQtUtil.mainWindow()
if ptr:
return wrapInstance(long(ptr), QtWidgets.QMainWindow)
def run():
''' builds our UI '''
global win
win = GeometryGenerator(parent=getMayaWindow())
win.show()
uiFilePath = os.path.join( os.path.dirname(__file__) , 'geomGenerator_v001.ui')
class GeometryGenerator(QtWidgets.QDialog):
def __init__(self,parent=None):
super(GeometryGenerator,self).__init__(parent)
self.ui = pyside_dynamic2.loadUi(uiFilePath,self)--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/85eaa7d7-23a5-46df-9fd6-c4007e34eeec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
try:
from PySide2.QtGui import *
from PySide2.QtWidgets import *
from PySide2 import __version__
from shiboken2 import wrapInstance
except ImportError:
from PySide.QtCore import *
from PySide.QtGui import *
from PySide import __version__
from shiboken import wrapInstance
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/12dc2aa8-cdc7-44bb-b3ce-3d4d21bd5747%40googlegroups.com.
This page shows me all the modules for pySide https://deptinfo-ensip.univ-poitiers.fr/ENS/pyside-docs/index.htmlI have found this page for pySide2 https://wiki.qt.io/PySide2 But I am unable to see a list of pySide2's available modules?
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/bba30c91-bb56-48a5-8bd6-e6367f4ca16f%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA3A93bPsC11Vy1Rtxprd1TNXAathgWqWnis2-pX9GRc7w%40mail.gmail.com.
Pyside is now maintained by the qt company, so the builds are now all on their qt-project.org code site.
On Wed, Oct 18, 2017 at 13:14 Justin Israel <justin...@gmail.com> wrote:
On Thu, Oct 19, 2017 at 8:09 AM jettam <justin...@gmail.com> wrote:This page shows me all the modules for pySide https://deptinfo-ensip.univ-poitiers.fr/ENS/pyside-docs/index.htmlI have found this page for pySide2 https://wiki.qt.io/PySide2 But I am unable to see a list of pySide2's available modules?The first one is generated and hosted by some domain. I didn't find anyone hosting the built pyside2 docs . I'm not sure why the pyside project doesn't host their own active build of the 2.0 branch.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/bba30c91-bb56-48a5-8bd6-e6367f4ca16f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA3A93bPsC11Vy1Rtxprd1TNXAathgWqWnis2-pX9GRc7w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAOOm49S-ar29yO9RLmd1rywZpe1f8s0dbgx%2BLZUHAbe%3Da_fBVg%40mail.gmail.com.To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
Are you saying the docs for PySide2 is on qt-project.org? Where, exactly? :SOn 19 October 2017 at 15:15, Deke Kincaid <dekek...@gmail.com> wrote:
Pyside is now maintained by the qt company, so the builds are now all on their qt-project.org code site.
On Wed, Oct 18, 2017 at 13:14 Justin Israel <justin...@gmail.com> wrote:
On Thu, Oct 19, 2017 at 8:09 AM jettam <justin...@gmail.com> wrote:This page shows me all the modules for pySide https://deptinfo-ensip.univ-poitiers.fr/ENS/pyside-docs/index.htmlI have found this page for pySide2 https://wiki.qt.io/PySide2 But I am unable to see a list of pySide2's available modules?The first one is generated and hosted by some domain. I didn't find anyone hosting the built pyside2 docs . I'm not sure why the pyside project doesn't host their own active build of the 2.0 branch.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/bba30c91-bb56-48a5-8bd6-e6367f4ca16f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA3A93bPsC11Vy1Rtxprd1TNXAathgWqWnis2-pX9GRc7w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAOOm49S-ar29yO9RLmd1rywZpe1f8s0dbgx%2BLZUHAbe%3Da_fBVg%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOBs0RY%3DUStW8Y15Hjwqd1VHnQEHBv4v5A7Eh8eoWuQr7Q%40mail.gmail.com.
I was replying to Justin’s comment:>>I'm not sure why the pyside project doesn't host their own active build of the 2.0 branch
On Thu, Oct 19, 2017 at 08:37 Marcus Ottosson <konstr...@gmail.com> wrote:
Are you saying the docs for PySide2 is on qt-project.org? Where, exactly? :SOn 19 October 2017 at 15:15, Deke Kincaid <dekek...@gmail.com> wrote:
Pyside is now maintained by the qt company, so the builds are now all on their qt-project.org code site.
On Wed, Oct 18, 2017 at 13:14 Justin Israel <justin...@gmail.com> wrote:
On Thu, Oct 19, 2017 at 8:09 AM jettam <justin...@gmail.com> wrote:This page shows me all the modules for pySide https://deptinfo-ensip.univ-poitiers.fr/ENS/pyside-docs/index.htmlI have found this page for pySide2 https://wiki.qt.io/PySide2 But I am unable to see a list of pySide2's available modules?The first one is generated and hosted by some domain. I didn't find anyone hosting the built pyside2 docs . I'm not sure why the pyside project doesn't host their own active build of the 2.0 branch.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/bba30c91-bb56-48a5-8bd6-e6367f4ca16f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA3A93bPsC11Vy1Rtxprd1TNXAathgWqWnis2-pX9GRc7w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAOOm49S-ar29yO9RLmd1rywZpe1f8s0dbgx%2BLZUHAbe%3Da_fBVg%40mail.gmail.com.--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOBs0RY%3DUStW8Y15Hjwqd1VHnQEHBv4v5A7Eh8eoWuQr7Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAOOm49TpvUfr-ipykuo_07JGSa66E57hJaJkbfN8ZJ-pbdXGgg%40mail.gmail.com.
I was replying to Justin’s comment:>>I'm not sure why the pyside project doesn't host their own active build of the 2.0 branch
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAOOm49TpvUfr-ipykuo_07JGSa66E57hJaJkbfN8ZJ-pbdXGgg%40mail.gmail.com.
On Fri, Oct 20, 2017, 6:47 AM Deke Kincaid <dekek...@gmail.com> wrote:I was replying to Justin’s comment:>>I'm not sure why the pyside project doesn't host their own active build of the 2.0 branchThis comment was exactly referring to the build of the docs. Where do they host the build of the docs on their site?
On Thu, Oct 19, 2017 at 08:37 Marcus Ottosson <konstr...@gmail.com> wrote:
Are you saying the docs for PySide2 is on qt-project.org? Where, exactly? :SOn 19 October 2017 at 15:15, Deke Kincaid <dekek...@gmail.com> wrote:
Pyside is now maintained by the qt company, so the builds are now all on their qt-project.org code site.
On Wed, Oct 18, 2017 at 13:14 Justin Israel <justin...@gmail.com> wrote:
On Thu, Oct 19, 2017 at 8:09 AM jettam <justin...@gmail.com> wrote:This page shows me all the modules for pySide https://deptinfo-ensip.univ-poitiers.fr/ENS/pyside-docs/index.htmlI have found this page for pySide2 https://wiki.qt.io/PySide2 But I am unable to see a list of pySide2's available modules?The first one is generated and hosted by some domain. I didn't find anyone hosting the built pyside2 docs . I'm not sure why the pyside project doesn't host their own active build of the 2.0 branch.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/bba30c91-bb56-48a5-8bd6-e6367f4ca16f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA3A93bPsC11Vy1Rtxprd1TNXAathgWqWnis2-pX9GRc7w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAOOm49S-ar29yO9RLmd1rywZpe1f8s0dbgx%2BLZUHAbe%3Da_fBVg%40mail.gmail.com.--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOBs0RY%3DUStW8Y15Hjwqd1VHnQEHBv4v5A7Eh8eoWuQr7Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAOOm49TpvUfr-ipykuo_07JGSa66E57hJaJkbfN8ZJ-pbdXGgg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA2EseY19gfF%3DiFzBPaMV50BhoErxRPpQGaxEK%2BF1E8JOg%40mail.gmail.com.