Skip to content

Commit

Permalink
built 5.0.1 and published to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkring committed Mar 16, 2023
1 parent d3d6e54 commit 3e566d9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@ Easily add a Python API to your LabVIEW application.

## Getting Started

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

- Open the Example and Run it
- 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

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

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

``` python
>> import jki_lib_python_bridge_for_labview as lv
>> from jki_python_bridge_for_labview import labview as lv
>> lv.connect()
>>> lv.isConnected
1
Expand Down
2 changes: 1 addition & 1 deletion Source/JKI_Python_Bridge_for_LV.aliases
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[My Computer]
My Computer = "10.0.0.222"
My Computer = "192.168.1.245"
10 changes: 5 additions & 5 deletions Source/JKI_Python_Bridge_for_LV.vipb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<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">
<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">
<Library_General_Settings>
<Package_File_Name>jki_lib_python_bridge_for_labview</Package_File_Name>
<Library_Version>5.0.0.19</Library_Version>
<Library_Version>5.0.1.20</Library_Version>
<Auto_Increment_Version>false</Auto_Increment_Version>
<Library_Source_Folder>.</Library_Source_Folder>
<Library_Output_Folder>..\builds</Library_Output_Folder>
Expand Down Expand Up @@ -44,12 +44,12 @@
<VI_Package_Configuration_File>JKI_Python_Bridge_for_LV.vipc</VI_Package_Configuration_File>
<Description>
<One_Line_Description_Summary>A toolkit allowing Python to call into LabVIEW and seamlessly transfer argument and return data.</One_Line_Description_Summary>
<Description>A toolkit allowing Python to call into LabVIEW and seamlessly transfer argument and return data.</Description>
<Description>A toolkit allowing Python to call into LabVIEW and seamlessly transfer argument and return data.
visit https://github.com/JKISoftware/jki-labview-python-server for docs and getting started info.</Description>
<Copyright>Copyright (c) 2004-2023, JKI</Copyright>
<Packager>JKI</Packager>
<URL>https://github.com/JKISoftware/jki-labview-python-server</URL>
<Release_Notes>Updated to LabVIEW 2020.
Public open source release.</Release_Notes>
<Release_Notes>- released python package on pypi.org</Release_Notes>
</Description>
<Destinations>
<Toolkit_VIs>
Expand Down
2 changes: 1 addition & 1 deletion py_src/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "jki-python-bridge-for-labview"
description = "JKI Python Bridge for LabVIEW. Easily control your LabVIEW applications from python via define custom APIs."
version = "5.0.0"
version = "5.0.1"
authors = [
{ name = "JKI", email = "info@jki.net" },
]
Expand Down

0 comments on commit 3e566d9

Please sign in to comment.