> Does anyone know how to access maya without open interface from the python 
> console.
> which module do I need to import ? OpenMaya?

like kurian said:

import maya.standalone
maya.standalone.initialize()

however, that won't do any of the stuff that normally happens when you start 
maya in batch or interactive mode, like run the various mel initialization 
scripts, load preferences and plugins, etc.  if you want your python console to 
be exactly like a batch or interactive session, just do:

import pymel.core

-chad

-- 
http://groups.google.com/group/python_inside_maya

Reply via email to