Metadata-Version: 2.1
Name: proceduraldata
Version: 2.0.4
Summary: Simple-to-understand and robust data storage for experimental data
Home-page: https://pdata.readthedocs.io/
Author: Joonas Govenius
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: jsondiff
Requires-Dist: pytz
Requires-Dist: python-dateutil
Requires-Dist: requests
Requires-Dist: ipykernel
Requires-Dist: ipython
Requires-Dist: ipympl
Requires-Dist: ipylab
Requires-Dist: notebook
Requires-Dist: ipywidgets
Requires-Dist: matplotlib
Requires-Dist: uncertainties
Requires-Dist: xarray

pdata: Straightforward and robust data storage for experimental data
====================================================================

This *procedural* data storage package provides a self-contained
interface **focused exclusively on storing and reading experimental
data**, using an approach **independent of the specific measurement
framework used for instrument control**.

The main goals are to provide an interface that:

  * Automatically stores a lot of metadata, including parameters that change during a measurement.
  * Is *procedural* rather than *functional* in terms of the API the experimenter sees, as procedural programming tends to be easier to understand for a typical experimental physicist.
  * Uses standard Python flow-control constructs (for, while, if, etc.) for looping over setpoints.
  * The API aims to be self-explanatory, wherever possible.

In practice, the experimenter calls an explicit :code:`add_points(<new
data points>)` function to add rows to a traditional table of data
points, with user-defined columns. In the background, **pdata
automatically records all changes to instrument parameters** each
time :code:`add_points` is called.

In addition, pdata provides useful helpers for reading back the data,
including automatically recorded instrument parameters, basic helpers
for visualization, and good export capabilities to other tools for
further analysis.

Getting started/Full documentation
----------------------------------

See the `documentation <http://pdata.readthedocs.io>`_ at RTD for
instructions on getting started.

MIT License

Copyright (c) 2016 Joonas Govenius

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
