This Python 3 library provides easy access to eLabFTW's API to list or update experiments or items.
This library works with eLabFTW's API v1. It is recommended to use API v2. A python package is available for API v2, see this repository:
APIv2 Python lib: https://github.com/elabftw/elabapi-python/
Because this package is for APIv1 and APIv1 is deprecated from eLab, this library is therefore also deprecated and should not be used.
You can install elabapy using pip:
pip install --user elabapy
or via conda-forge:
conda install -c conda-forge elabapy
or from source:
git clone https://github.com/elabftw/elabapy
cd elabapy
python setup.py install
pip install -U elabapy
import elabapy
import json
from requests.exceptions import HTTPError
# initialize the manager with an endpoint and your token
manager = elabapy.Manager(endpoint="https://elab.example.org/api/v1/", token="3ca8...e14b")
# get experiment with id 42
try:
exp = manager.get_experiment(42)
print(json.dumps(exp, indent=4, sort_keys=True))
# if something goes wrong, the corresponding HTTPError will be raised
except HTTPError as e:
print(e)
Use verify=False
in the Manager initialization to disable TLS certificate verification.
pipenv sync -d
pipenv run python -m mypy elabapy
- Update version in
setup.py
andelabapy/__init__.py
- Update changelog
- Commit
- Tag
- Create release on GitHub
A GitHub Action will take care of publishing it to Pypi.org.
pipenv requirements > requirements.txt