Metadata-Version: 2.1
Name: PyTektronixScope
Version: 0.3.1
Summary: Interface to Tektronix Scope
Home-page: https://github.com/clade/PyTektronixScope
Author: Pierre Cladé
Author-email: pierre.clade@spectro.jussieu.fr
Maintainer: Pierre Cladé
Maintainer-email: pierre.clade@spectro.jussieu.fr
License: This software can be used under one of the following two licenses: (1) The BSD license. (2) Any other license, as long as it is obtained from the original author.
Keywords: Tektronix,scope,Data Acquisition
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: pyvisa

Overview
========

This package can be used to record data from a Tektronix scope. 


Installation
============

You need first to install the `PyVISA`_ package. 
To install PyTektronixScope, download the package and run the command:: 

  pip install .

You can also directly move the PyTektronixScope directory to a location
that Python can import from (directory in which scripts 
using PyDAQmx are run, etc.)

Sources can also be download on the `PyTektronixScope github repository`_. 

Usage
=====

Typical usage::

  from PyTektronixScope import PyTektronixScope

  scope = TektronixScope(instrument_resource_name)
  X,Y = scope.read_data_one_channel('CH2', t0 = 0, DeltaT = 1E-6, x_axis_out=True)

Contact
=======

Please send bug reports or feedback using `PyTektronixScope github repository`_

Version history
===============
Main changes:

* 0.1 Initial relase
* 0.2 Update to new version of visa
* 0.2.1 Misc. bugs
* 0.3 Introduce automatic device detection

.. _Pierre Clade: mailto:pierre.clade@spectro.jussieu.fr
.. _PyTektronixScope github repository: https://github.com/clade/PyTektronixScope
.. _PyVISA: http://pyvisa.sourceforge.net/
