Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Read LabView program without LabView

Tags:

labview

I have a file containing a LabView program and need to understand what it does. Of course it can not be executed without LabView. But is it possible to read a LabView program without Labview?

like image 446
paugier Avatar asked May 09 '16 06:05

paugier


1 Answers

The parser I made can read VIs, and convert most of the content to XML (including Block Diagram, Front Panel and type definitions used for connectors): https://github.com/mefistotelis/pylabview

It is open-source, and in no way related to NI.

The XML form you get isn't really easy to read, but with the data exported to XML, it should be possible to write a tool which parses it and displays as a diagram, or at least creates an SVG.

like image 120
mefistotelis Avatar answered Oct 25 '22 03:10

mefistotelis