Post
Topic
Board Electrum
Re: Is it possible to send commands to the Electrum Console through a Python script?
by
rini17
on 29/03/2014, 20:24:46 UTC
I have successfully used RPyC ( http://rpyc.readthedocs.org ) for this - in electrum console, import rpyc and start the server. Then when you connect with rpyc client from other python script, you can call any function in running electrum process.

Alternatively, you can write your own python module that calls electrum functions, import it in the console and call it.