dwdatareader


Namedwdatareader JSON
Version 0.15.4 PyPI version JSON
download
home_pagehttps://github.com/costerwi/dwdatareader/
SummaryPython module to interact with Dewesoft DWDataReaderLib shared library
upload_time2023-09-08 01:40:34
maintainer
docs_urlNone
authorCarl Osterwisch
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements pandas matplotlib numpy pytest
Travis-CI
coveralls test coverage No coveralls.
            dwdatareader
============

.. image:: https://travis-ci.com/costerwi/dwdatareader.svg?branch=master
   :alt: DWDataReader build status on Travis CI
   :target: https://travis-ci.com/costerwi/dwdatareader

.. image:: https://ci.appveyor.com/api/projects/status/a2qssrmuepbx224i/branch/master?svg=true
   :alt: DWDataReader build status on Appveyor
   :target: https://ci.appveyor.com/project/costerwi/dwdatareader/branch/master

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 <http://jupyter.org>`_

You can work with a `live Binder example here <https://mybinder.org/v2/gh/costerwi/dwdatareader/master?labpath=dwdatareader_example.ipynb>`_.

.. 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>`_

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/costerwi/dwdatareader/",
    "name": "dwdatareader",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Carl Osterwisch",
    "author_email": "costerwi@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/44/59/06196605799c2f508582317b10d9d814d426127117e9ef58e03ffd30e640/dwdatareader-0.15.4.tar.gz",
    "platform": null,
    "description": "dwdatareader\n============\n\n.. image:: https://travis-ci.com/costerwi/dwdatareader.svg?branch=master\n   :alt: DWDataReader build status on Travis CI\n   :target: https://travis-ci.com/costerwi/dwdatareader\n\n.. image:: https://ci.appveyor.com/api/projects/status/a2qssrmuepbx224i/branch/master?svg=true\n   :alt: DWDataReader build status on Appveyor\n   :target: https://ci.appveyor.com/project/costerwi/dwdatareader/branch/master\n\nDEWESoft produces hardware and software for test measurement, data aquisition, \nand storage. Data files are stored with the extension .d7d in a proprietary\nformat. DEWESoft provides a free Windows application to work with the data\nand a free shared library for developers on Windows and Linux.\n\nThis is a Python module to interact with the DEWESoft DWDataReaderLib shared library\navailable from https://download.dewesoft.com/list/developers.\n\nInstallation\n------------\n\nThe module is available on https://pypi.python.org/pypi/dwdatareader so all\none needs to do is:\n\n::\n\n    pip install dwdatareader\n\nExample usage\n-------------\n\nScripts like the following may be run from the command line or, more\ninteractively, from `Jupyter Notebook <http://jupyter.org>`_\n\nYou can work with a `live Binder example here <https://mybinder.org/v2/gh/costerwi/dwdatareader/master?labpath=dwdatareader_example.ipynb>`_.\n\n.. code:: python\n\n    import dwdatareader as dw\n    with dw.open('myfile.d7d') as f:\n        print(f.info)\n        ch1 = f['chname1'].series()\n        ch1.plot()\n        for ch in f.values():\n            print(ch.name, ch.series().mean())\n\n\nContribute\n----------\n\nBug reports and pull requests should be directed to the project home on\n`Github <http://github.com/costerwi/dwdatareader>`_\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python module to interact with Dewesoft DWDataReaderLib shared library",
    "version": "0.15.4",
    "project_urls": {
        "Download": "https://github.com/costerwi/dwdatareader/tarball/master",
        "Homepage": "https://github.com/costerwi/dwdatareader/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bb28f25145fb22b52a6d1c3dd7d962f02c2ee9947acb7e90a568e34208b9ebd",
                "md5": "9ed1d634a86dcb0836d7e71f21267780",
                "sha256": "41b113c233bad1cd303e385bdc308cc0c9c99ea21fd0210d2419131e7a163498"
            },
            "downloads": -1,
            "filename": "dwdatareader-0.15.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9ed1d634a86dcb0836d7e71f21267780",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 701588,
            "upload_time": "2023-09-08T01:40:32",
            "upload_time_iso_8601": "2023-09-08T01:40:32.866133Z",
            "url": "https://files.pythonhosted.org/packages/2b/b2/8f25145fb22b52a6d1c3dd7d962f02c2ee9947acb7e90a568e34208b9ebd/dwdatareader-0.15.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "445906196605799c2f508582317b10d9d814d426127117e9ef58e03ffd30e640",
                "md5": "bac258da812197a66975b7e2b1787d46",
                "sha256": "aeb3eaa14493d7450e6727250e0c332c6026c02e2d8ddc16c9b2359614aa2368"
            },
            "downloads": -1,
            "filename": "dwdatareader-0.15.4.tar.gz",
            "has_sig": false,
            "md5_digest": "bac258da812197a66975b7e2b1787d46",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 699849,
            "upload_time": "2023-09-08T01:40:34",
            "upload_time_iso_8601": "2023-09-08T01:40:34.786681Z",
            "url": "https://files.pythonhosted.org/packages/44/59/06196605799c2f508582317b10d9d814d426127117e9ef58e03ffd30e640/dwdatareader-0.15.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-08 01:40:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "costerwi",
    "github_project": "dwdatareader",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "requirements": [
        {
            "name": "pandas",
            "specs": []
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "pytest",
            "specs": []
        }
    ],
    "tox": true,
    "lcname": "dwdatareader"
}
        
Elapsed time: 0.11659s