02-14-2024 12:36 PM - edited 02-14-2024 01:10 PM
Hey LabVIEW Community,
I've created a data parser in LabVIEW with inputs and outputs and I built it into a packed library. A colleague of mine wants to use this data parser but call it using Python. We've implemented LabVIEW calling Python scripts without issue. But I've never thought about doing it the other way around. Does anyone have any experience with this? Is it even possible to call a packed library method and feed it appropriate inputs and get the outputs in Python?
02-14-2024 06:44 PM
Connect to a LabVIEW VI And Executable From Python
02-15-2024 08:57 AM
@ZYOng wrote:
Connect to a LabVIEW VI And Executable From Python
I did search this on Google. You'd have thought this white paper would have shown up on the search...
Anyways, thank you.
However, reading through that, it looks like the support is only available for Windows. Is there a Linux way to call LabVIEW from Python? Can I make a .so file? I don't have a linux machine on me at the moment, but wondering if that's a possible solution before I start down that path.
02-16-2024 04:47 PM
I think it is possible to call the .SO library using ctype library.
Why Calling a LabVIEW DLL in Python Always Return 0 Value?