This module supports LabJack Data Acquisition DevicesIt has been tested with the U3-HV (https://labjack.com/products/u3)Installation:(see https://labjack.com/support/software/examples/ud/labjackpython)The release provided on this page does not support Python3.1.) Clone the LabJack repositorygit clone https://github.com/labjack/LabJackPython.git2.) Install the package$> cd LabJackPython$> sudo python3 setup.py install3.) Clone the Exodriver packagegit clone https://github.com/labjack/exodriver.git4.) Install dependencies and the package$> cd exodriver$> sudo apt-get install libusb-1.0.0-dev build-essential$> sudo ./install.sh5.) Confirm packages are installed correctly$> python3>>> import u3--should not be any errors --<Ctrl-D to exit>LabJack Documentation:See: https://labjack.com/support/datasheets/u3/low-level-function-referenceAlso from python CLI:$> python3>>> import u3>>> help(u3) # overview of all modules>>> help(u3.U3) #specific help for U3 commands