Hello!
I want to create a stream to execute a python code.
I understand that the best way to do this is to run an application, by putting the path to the .py file.
The problem is that it doesn't run... I have created a simple code where it tests where it reads an excel, and stores the value in a new document, but it doesn't create anything...
I have tried to use the option to run a python script, but as I import some library (pandas), it gives me error:
Traceback (most recent call last):
File "<string>", line 1, in <module>.
ImportError: No module named pandas
What is the best way to implement this?
The idea is to create a flow to execute a code to read excels and create new ones.
Thanks!