Metadata-Version: 2.1
Name: lakeshore
Version: 1.2.0
Summary: A package to connect to and interact with Lake Shore instruments.
Home-page: https://github.com/lakeshorecryotronics/python-driver
Maintainer: Lake Shore Cryotronics, Inc.
Maintainer-email: service@lakeshore.com
License: MIT
Description: # Lake Shore Python Driver
        
        [![Build Status](https://lakeshorecryotronics.visualstudio.com/Lake%20Shore%20Dev/_apis/build/status/Python%20Driver?branchName=master)](https://lakeshorecryotronics.visualstudio.com/Lake%20Shore%20Dev/_build/latest?definitionId=138?branchName=master)
        [![Documentation Status](https://readthedocs.org/projects/lake-shore-python-driver/badge/?version=latest)](https://lake-shore-python-driver.readthedocs.io/en/latest/?badge=latest)
        [![PyPI Version](https://img.shields.io/pypi/v/lakeshore.svg)](https://pypi.org/project/lakeshore/)
        ![Python Support](https://img.shields.io/pypi/pyversions/lakeshore.svg)
        
        The [Lake Shore](https://www.lakeshore.com) 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. 
        
        ## Supported Products
        * [F41 and F71 Teslameters](https://www.lakeshore.com/products/Gaussmeters/F71-F41-teslameters/Pages/Overview.aspx)
        * [155 Precision I/V Source](https://www.lakeshore.com/products/measureready/model-155/Pages/Overview.aspx) 
        * [M91 FastHall Controller](https://www.lakeshore.com/products/categories/overview/material-characterization-products/measureready-instruments/measureready-m91-fasthall-measurement-controller) 
        
        
        ## Getting Started
        Install the driver using [pip](https://pip.pypa.io/en/stable/quickstart/):
        
            pip install lakeshore
        
        ## A Simple Example
        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?'))
        
        ## Documentation
        Detailed documentation of the driver and more example code is available [here](https://lake-shore-python-driver.readthedocs.io/en/latest/).
        
        ## Contribute
        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! 
        
        ## Resources
        * [Lake Shore website](https://www.lakeshore.com)
        * [GitHub repo](https://github.com/lakeshorecryotronics/python-driver)
        * [Change log](https://github.com/lakeshorecryotronics/python-driver/blob/master/CHANGELOG.md)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
