PythonTerminal: Difference between revisions

From PyMOLWiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 9: Line 9:
cmd.extend('py', parse)
cmd.extend('py', parse)
</source>
</source>
[[Category:Script_Library]]

Revision as of 09:34, 31 May 2006

This is a small script to allow the execution of python commands from the PyMOL command line. It is very useful for both debugging, and for discovering new functions.

from pymol import cmd

def parse(command):
	exec command

cmd.extend('py', parse)