Easily add a Python API to your LabVIEW application.
-
Install LabVIEW Package with VIPM (You'll use this to create your APIs)
-
Install the jki-python-bridge-for-labview using
pip
python3 pip install jki-python-bridge-for-labview
Note: be sure to install the same version as the LabVIEW package you installed. For example, if you've installed version 5.0.0 of the LabVIEW package, then you'd install the same version of the python package as follows:
python3 pip install jki-python-bridge-for-labview==5.0.1
- Open the LabVIEW Example and Run it
- Open cmd.exe or powershell.exe terminal
- Create a virtual environment for testing
python -m venv .venv
- Activate it in PowerShell
.\.venv\scripts\activate.ps1
- Activate it in a Command Shell
.\.venv\scripts\activate.bat
Start Python
PS C:\projects\jki-labview-python-server> python
Python 3.10.4 (tags/v3.10.4:9d38120, Mar 23 2022, 23:13:41) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
- Interact with LabVIEW from Python
>> from jki_python_bridge_for_labview import labview as lv
>> lv.connect()
>>> lv.isConnected
1
>>> lv.example.add(1,2)
3.0
>>>