sikuli_cpython icon indicating copy to clipboard operation
sikuli_cpython copied to clipboard

UNMAINTAINED: A CPython wrapper around the sikuli standalone jar

Results 12 sikuli_cpython issues
Sort by recently updated
recently updated
newest added

I have fulfilled all the requirement. But when I ran the sikuli script it is showing that ImportError:DLL file load failed. I have also tried the same solution that the...

I try to click image using Sikuli, but it raises an error: ['NoneType' object has no attribute 'getCenter']. Code as below: from sikuli import Sikuli, Pattern skl = Sikuli() pattern...

As has been reported, Sikuli-standalone-api will crash after repeatedly doing image searches. This can be avoided by calling the new (beta) release of the standalone api as instructed here: https://code.google.com/p/sikuli-api/issues/detail?id=20

``` File "/tmp/easy_install-oRT9L9/jnius-1.1-dev/setup.py", line 32, in 'Programming Language :: Python', ImportError: No module named Cython.Distutils ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in /private/tmp/pip-build-hxfScG/sikuli/ ``` any suggestion

I am using this code to verify that the package is working. I am using Mac OS `import os` `import sikuli` `dm = sikuli.DesktopMouse()` `dir(dm)` `#['__class__', '__cls_storage', '__delattr__', '__dict__', '__doc__',...

Hi, Not sure if this project is still being maintained, but I recently installed it and am getting an error that some functions work (i.e. find()), but when I try...

Could not find a version that satisfies the requirement jnius>=1.1-dev (from sikuli) (from versions: 1.0.1, 1.0.2, 1.0) Cleaning up... No distributions matching the version for jnius>=1.1-dev (from sikuli)

The wait function does not define the duration variable: ``` def wait(target_string, *args, **kwargs): if not duration and duration != 0: duration = 5000 target = Pattern(target_string).getTarget() screen = DesktopScreenRegion()...

If I try use 'hover' I get: `AttributeError: 'org.sikuli.api.robot.desktop.Desktop Mouse' object has no attribute 'hover'` other function works properly.

I was looking over some tutorials in Sikuli and they mentioned spatial operators like below, above, right etc. How can I perform something like find('some image.jpg').below().find('some other image.jpg') ?