This is not really a python question, but rather seeking assistance on interpretation of the syntax in my python code. I have very little knowledge of python. I have a call to an external module (i.e. external to python) as follows:
from icclim import icclim.util.callback as callback
When I run my code, I get the error
from icclim import icclim.util.callback as callback
^
SyntaxError: invalid syntax
I have the icclim software installed and I see on the directory structure there is
$HOME/icclim-master/icclim/util
Inside the util dorectory I see among the files there is
callback.py
callback.pyc
My thinking is that it is one of these two files being called. The command
from icclim import icclim
works. My question is how should I make the call to callback, or do I have to set any path to callback? assistance will be appreciated.