This is a read-only mirror of pymolwiki.org

Difference between revisions of "RPC"

From PyMOL Wiki
Jump to navigation Jump to search
m (category)
m (2 revisions)
(No difference)

Revision as of 03:08, 28 March 2014

Remote control of PyMOL is possible with XML-RPC.

Launch PyMOL with the "-R" option to start the RPC server.

pymol -R

Connect from any client, using python:

import xmlrpclib
srv = xmlrpclib.Server('http://localhost:9123')

srv.do('fetch 2xwu')
srv.do('as cartoon')
srv.do('spectrum')

See Also