i try to use Sikuli. I will have 2 Files. One of them will be the "main" file and one of then is for functions.

The main-file i have called "test" and the file for die Function i have called "importi".

If i run the Mainfile i will get the error: [error] Fehlermeldung: Traceback (most recent call last): File "C:...\Temp\sikuli-tmp8331266965127754273.py",line 3, in importi.help() AttributeError: 'module'object has no attribute 'hallo'

This is my Code of the main-file:

import importi
importi.hallo()

and this is the code of the File with the function:

anzeige = "Hallo"
def help():
  popup(anzeige)
link|improve this question
feedback

1 Answer

I think in the calling function you should write -

import importi
importi.help()

in above code "help" is the function name defined in called (or imported) function. At the same time, below code should be saved as importi.sikuli file.

anzeige ="Hallo"
def help():
  popup(anzeige)

So, to summarize. File importi.sikuli has -

anzeige ="Hallo"
def help():
  popup(anzeige)

And calling function (whatever name it has) is -

import importi
importi.help()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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