Maya-like Python IDE

Thanks everyone! :): Dreampie turned out to be EXACTLY what I was looking for :D:

EDIT: Looks like I get the same problem with external libraries though. I’ve never got the external libraries to work by just appending them to the sys.path :(:

sys.path.append(r"C:\Python27\Lib\site-packages")
sys.path.append(r"C:\Python27\Lib\site-packages
umpy")
sys.path.append(r"C:\Python27\Lib\site-packages
umpy\linalg")
import numpy

Gives me:

Traceback (most recent call last):
  File "<pyshell#5>", line 4, in <module>
    import numpy
  File "C:\Python27\lib\site-packages
umpy\__init__.py", line 200, in <module>
    from . import add_newdocs
  File "C:\Python27\lib\site-packages
umpy\add_newdocs.py", line 13, in <module>
    from numpy.lib import add_newdoc
  File "C:\Python27\lib\site-packages
umpy\lib\__init__.py", line 8, in <module>
    from .type_check import *
  File "C:\Python27\lib\site-packages
umpy\lib	ype_check.py", line 11, in <module>
    import numpy.core.numeric as _nx
  File "C:\Python27\lib\site-packages
umpy\core\__init__.py", line 14, in <module>
    from . import multiarray
ImportError: cannot import name multiarray