Metadata-Version: 2.1
Name: libinsdb
Version: 0.8.0
Summary: Library to access InstrumentDB databases
License: MIT
Author: Maurizio Tomasi
Author-email: maurizio.tomasi@unimi.it
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: coverage (>=7.3.0,<8.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: requests-mock (>=1.11.0,<2.0.0)
Requires-Dist: tomlkit (>=0.12.1,<0.13.0)
Requires-Dist: types-pyyaml (>=6.0.12.12,<7.0.0.0)
Description-Content-Type: text/markdown

# Libinsdb

A library to interface Python scripts with an [InstrumentDB](https://github.com/ziotom78/instrumentdb) database.

## Documentation

A tutorial is avilable on [Google Colab](https://colab.research.google.com/drive/1GRCssFs_lGfku1DLvvEowW4fTKUSsLK6?usp=sharing).

The manual is available at <https://libinsdb.readthedocs.io/en/latest/>.

To build a copy of the documentation locally, run

    poetry install --with docs

to install the additional dependencies needed to update the documentation and then run

    poetry run make -C docs html

The index will be available in the folder `docs/_build/html/`.

