Metadata-Version: 1.1
Name: isfreader
Version: 1.0.0
Summary: Read tek scope isf files as a numpy array.
Home-page: http://hg/Libraries/isfreader
Author: Justin Engel
Author-email: jengel@sealandaire.com
License: Proprietary
Download-URL: http://hg/Libraries/isfreader/archive/v1.0.0.tar.gz
Description: **********
        ISF Reader
        **********
        
        Read tek scope isf files as a numpy array.
        
        .. code-block:: python
        
            import isfreader
        
            data = isfreader.read_file('T0000CH1.ISF')
            data[:, 0]  # Time column (Does not always start at 0)
            data[:, 1]  # Data (Voltage) column
            print(data.shape)
            print(data.dtype)
        
Keywords: ISF Tek scope reader
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
