Skip to content

Commit 3e566d9

Browse files
committed
built 5.0.1 and published to pypi
1 parent d3d6e54 commit 3e566d9

4 files changed

Lines changed: 18 additions & 10 deletions

File tree

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,17 @@ Easily add a Python API to your LabVIEW application.
88

99
## Getting Started
1010

11-
- [Install Package with VIPM](https://www.vipm.io/package/jki_lib_python_bridge_for_labview/)
11+
- [Install LabVIEW Package with VIPM](https://www.vipm.io/package/jki_lib_python_bridge_for_labview/) (You'll use this to create your APIs)
1212

13-
- Open the Example and Run it
13+
- Install the jki-python-bridge-for-labview using `pip`
14+
15+
`python3 pip install jki-python-bridge-for-labview`
16+
17+
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:
18+
19+
`python3 pip install jki-python-bridge-for-labview==5.0.1`
20+
21+
- Open the LabVIEW Example and Run it
1422

1523
![image](https://user-images.githubusercontent.com/381432/197280513-60e018e6-c4ba-4255-8c43-70af6407f4ee.png)
1624

@@ -38,7 +46,7 @@ Type "help", "copyright", "credits" or "license" for more information.
3846
- Interact with LabVIEW from Python
3947

4048
``` python
41-
>> import jki_lib_python_bridge_for_labview as lv
49+
>> from jki_python_bridge_for_labview import labview as lv
4250
>> lv.connect()
4351
>>> lv.isConnected
4452
1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[My Computer]
2-
My Computer = "10.0.0.222"
2+
My Computer = "192.168.1.245"

Source/JKI_Python_Bridge_for_LV.vipb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<VI_Package_Builder_Settings Version="2018" Created_Date="2013-11-18 15:20:26" Modified_Date="2023-03-16 10:29:32" Creator="Jim Kring" Comments="" ID="3c3f9e1909396832ab8aa27d75603c65">
1+
<VI_Package_Builder_Settings Version="2018" Created_Date="2013-11-18 15:20:26" Modified_Date="2023-03-16 14:18:22" Creator="Jim Kring" Comments="" ID="a99f90c36d34558bf1b690c2922e3e58">
22
<Library_General_Settings>
33
<Package_File_Name>jki_lib_python_bridge_for_labview</Package_File_Name>
4-
<Library_Version>5.0.0.19</Library_Version>
4+
<Library_Version>5.0.1.20</Library_Version>
55
<Auto_Increment_Version>false</Auto_Increment_Version>
66
<Library_Source_Folder>.</Library_Source_Folder>
77
<Library_Output_Folder>..\builds</Library_Output_Folder>
@@ -44,12 +44,12 @@
4444
<VI_Package_Configuration_File>JKI_Python_Bridge_for_LV.vipc</VI_Package_Configuration_File>
4545
<Description>
4646
<One_Line_Description_Summary>A toolkit allowing Python to call into LabVIEW and seamlessly transfer argument and return data.</One_Line_Description_Summary>
47-
<Description>A toolkit allowing Python to call into LabVIEW and seamlessly transfer argument and return data.</Description>
47+
<Description>A toolkit allowing Python to call into LabVIEW and seamlessly transfer argument and return data.
48+
visit https://github.com/JKISoftware/jki-labview-python-server for docs and getting started info.</Description>
4849
<Copyright>Copyright (c) 2004-2023, JKI</Copyright>
4950
<Packager>JKI</Packager>
5051
<URL>https://github.com/JKISoftware/jki-labview-python-server</URL>
51-
<Release_Notes>Updated to LabVIEW 2020.
52-
Public open source release.</Release_Notes>
52+
<Release_Notes>- released python package on pypi.org</Release_Notes>
5353
</Description>
5454
<Destinations>
5555
<Toolkit_VIs>

py_src/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "jki-python-bridge-for-labview"
33
description = "JKI Python Bridge for LabVIEW. Easily control your LabVIEW applications from python via define custom APIs."
4-
version = "5.0.0"
4+
version = "5.0.1"
55
authors = [
66
{ name = "JKI", email = "info@jki.net" },
77
]

0 commit comments

Comments
 (0)