03-21-2024 06:04 PM
Hello, I would like to use Pythonnode to transfer data from Labview to Python so that I can continue working with it in Python. So I would like to use Pythonnode only for one-way transfer, is this possible? Or is Pythonnode only meant to integrate a Python function into Labview? My problem is because it is a function I don't get any data displayed on Python that I can retrieve. Maybe I have to look for another possibility for the data transfer?
Thanks for the help
Solved! Go to Solution.
03-21-2024 06:12 PM
Python node allows you to call Python script from LabVIEW. It is like calling a DLL.
What you are trying to do is the reverse, calling VI from Python. Connect to a LabVIEW VI And Executable From Python
03-22-2024 11:10 AM
Hi,
I agree with ZYOng comments. You can use TCP or UDP to transfer data from LabVIEW to Python.
03-25-2024 11:15 AM
The easiest solution is to have LV write a file that you read in Python.