Metadata-Version: 1.1
Name: dwdatareader
Version: 0.9.2
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
        ============
        
        DEWESoft produces hardware and software for test measurement, data aquisition, 
        and storage. Data files are stored with the extension .d7d in a proprietary
        format. DEWESoft provides a free Windows application to work with the data
        and a free shared library for developers on Windows and Linux.
        
        This is a Python module to interact with the DEWESoft DWDataReaderLib shared library
        available from http://www.dewesoft.com/developers
        
        Installation
        ------------
        
        The module is available on https://pypi.python.org/pypi/dwdatareader so all
        one needs to do is:
        
        ::
        
            pip install dwdatareader
        
        Example usage
        -------------
        
        Scripts like the following may be run from the command line or, more
        interactively, from `Jupyter Notebook <http://jupyter.org>`_
        
        .. 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())
        
        
        Contribute
        ----------
        
        Bug reports and pull requests should be directed to the project home on
        `Github <http://github.com/costerwi/dwdatareader>`_
        
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
