Does anyone know the best/recommended way to call Sikuli scripts directly from Python (CPython).

This post: https://answers.launchpad.net/sikuli/+question/124759 recommends XMLRPC, which seems a bit byzantine.

and this: https://answers.launchpad.net/sikuli/+question/108782 talks about a direct inclusion, but seems deprecated or non functional.

Example code would be very useful please.

link|improve this question

64% accept rate
feedback

1 Answer

up vote 5 down vote accepted

According to the Sikuli documentation it is not possible to run the .py files generated by Sikuli with CPython since it is domain-specific Jython code. Just the syntax is Python.

If you just need to call the script, a (silly) solution is described in

https://answers.launchpad.net/sikuli/+question/131729 :

import subprocess
import sys

def RunSikuliScript(sikuliscriptname):
 subprocess.Popen('"C:\Program Files\Sikuli\Sikuli-ide.exe" -r ' + sikuliscriptname, shell=True)

if __name__ == '__main__':
  RunSikuliScript(sys.argv[1])

I would recommend using Jython according to http://sikuli.org/docx/faq/010-command-line.html in the section "Run a script from Command line using the Sikuli contained Jython"

link|improve this answer
Thanks - I'll give your suggestion a try, as it looks nice. I ended up using the XMLRPC route, which - somewhat to my surprise - worked great. The only annoyance is reloading the server means reopening the Sikuli IDE and reopening the file. – Dirk Apr 28 '11 at 18:45
Well, if you used pure Java to implement Sikuli over XML-RPC instead of Jython, then you wouldn't need to load/reload the IDE and open test script. It would only load the Sikuli Java libraries needed to run the automation. Granted the example documentation favors Jython over Java, so it's a bit harder to write pure Java version. – David Sep 20 '11 at 4:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.