PythonTerminal: Difference between revisions

From PyMOLWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:


===USAGE===
===USAGE===
py <python commands>
<source lang="python">
py (python commands)
</source>





Revision as of 09:37, 31 May 2006

DESCRIPTION

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.

USAGE

py (python commands)


from pymol import cmd

def parse(command):
	exec command

cmd.extend('py', parse)