Metadata-Version: 1.1
Name: dwdatareader
Version: 0.9.1
Summary: Python module to interact with Dewesoft DWDataReaderLib shared library
Home-page: https://github.com/costerwi/dwdatareader/
Author: Carl Osterwisch
Author-email: costerwi@gmail.com
License: MIT
Download-URL: https://github.com/costerwi/dwdatareader/tarball/master
Description: dwdatareader
        ============
        
        Python module to interact with Dewesoft DWDataReaderLib shared library
        available from http://www.dewesoft.com/developers
        
        Installation
        ------------
        ::
        
            pip install http://github.com/costerwi/dwdatareader/tarball/master
        
        Example usage
        -------------
        .. code:: python
        
            import dwdatareader as dw
            with dw.open('myfile.d7d') as f:
                print(f.info)
                ch1 = f['chname1'].series()
                ch1.plot()
                for ch in f.values():
                    print(ch.name, ch.series().mean())
        
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Development Status :: 4 - Beta
