Hello,
I am not a python expert at all, but I was using this lisp package to convert some python code into a lisp project I am working on. How would one go about using py4cl to do this kind of python code:
from SigMFUtils import SigMFUtil
I have attempted to do this with PYTHON-EVAL like this:
(py4cl:python-eval "from SigMFUtils import SigMFUtil")
but this doesn't work and results in a python syntax error. Is there a way to from _ import _ with IMPORT-MODULE?
Thank you very much for your time and any help you can offer.
Hello,
I am not a python expert at all, but I was using this lisp package to convert some python code into a lisp project I am working on. How would one go about using py4cl to do this kind of python code:
from SigMFUtils import SigMFUtilI have attempted to do this with PYTHON-EVAL like this:
(py4cl:python-eval "from SigMFUtils import SigMFUtil")but this doesn't work and results in a python syntax error. Is there a way to from _ import _ with IMPORT-MODULE?
Thank you very much for your time and any help you can offer.