Python module to interact with Dewesoft DWDataReaderLib shared library
Project description
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 https://download.dewesoft.com/list/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
You can work with a live Binder example here.
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for dwdatareader-0.14.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b1f914d9c94f9455ebe8aab16ae0db6de65d4aea96085259237c1f7cc4701a0 |
|
MD5 | 523801334d29844647139cfb15dc355e |
|
BLAKE2b-256 | 61e455c1040871952cc0e488c4fc98a977305eb13d581576aafd133849514fe7 |