01-12-2021 09:07 AM
Hi,
I just read about the FL API written in Python. That's a great feature for sure !
But would you consider creating one in LabVIEW ?
I mean it's good to open FL to other langages, but most of the people using NI SW are proficient in LabVIEW. Don't forget about them 😉
01-14-2021 03:48 PM
Hey Cyril!
Thanks for the feedback about the LV API 😄. The new automation API was implemented using a language-agnostic approach, so we can create a LabVIEW API (with the same functionality) in the future.
As this is the first release of the Python API, we are gathering feedback to guide additional FlexLogger automation decisions. Please let me know if you have any other thoughts or ideas!
Best,
01-14-2021 04:55 PM
Great !
Starting with traditionnaly supported technologies used in other NI SW would be nice, so LV would come first, then .NET and ActiveX.
That would allow people using TS but not into Python to use this API for example...
01-15-2021
02:51 PM
- last edited on
10-20-2024
11:45 AM
by
Content Cleaner
Thanks Cyril. TestStand is definitely on our radar. In the short-term, TestStand has a Python adapter that could be used with the Python API:
01-15-2021 02:58 PM
Hi Cameron,
TS has an official Python adapter since 2019.
Previous version have access to a sort of step type allowing to call Python. But nothing that comes with the TS installer itself.
This setting is very 'new' to the industry and I (at least) didn't see much peapole using it.
In our TS dev, adapter used are :
I don't know if it is the same for others. But if it is, and your are targetting TS, langages listed upper are needed I guess.
02-17-2021 03:54 AM
I did some prototyping with the new python API and Teststand. Prototype attached, looks very useful.
03-28-2021 12:43 PM
Is there any documentation on the FlexLogger Automation API? (External or even potentially internal, that could be exposed to an Alliance Partner?)
I would 100% be interested in creating a LabVIEW port for this...
I have a use-case in our pipeline that would make this extremely useful...
03-29-2021 08:14 AM
The github repo is here:
https://github.com/ni/niflexlogger-automation-python
The documentation is here:
03-30-2021 09:47 PM
To clarify... I was requesting documentation on the underlying FlexLogger API mentioned above. Not the Python API. While making a LabVIEW wrapper for the Python API is totally possible, I'd rather go the lower level if possible...
03-31-2021 09:42 AM
The next level down the API call stack is the gRPC layer. The proto files are distributed here:
https://github.com/ni/niflexlogger-automation-python/tree/main/protobuf
Some type of code has to be generated from the proto files, but generating to C or C# are potential options instead of generating python. Then you could call the generated C/C# code from LabVIEW.
There is a project underway to facilitate using gRPC from LabVIEW:
https://github.com/ni/grpc-labview
The project currently only addresses using LabVIEW to create a gRPC server, but creating LabVIEW clients is an eventual goal of the project.