The Lake Shore python driver allows users to quickly and easily communicate with Lake Shore instruments. It automatically establishes a connection and provides a variety of functions specific to the product that configure settings and acquire measurements.
Click here to read the documentation and some example scripts
Advanced support
Model 643 and 648 Electromagnet Power Supplies
Basic support
Install the driver using pip:
pip install lakeshore
It should be noted that the lakeshore driver requires a minimum python version of 3.7.
The following code will connect to a 155 Precision Source over USB and print what is returned by an identification query.
from lakeshore import PrecisionSource
my_instrument = PrecisionSource()
print(my_instrument.query('*IDN?'))
We want your feedback!
Please request changes, features, and additional instruments through the GitHub issues page.
Don't hesitate to create pull requests. They make the driver better for everyone!