Skip to content

Latest commit

 

History

History
67 lines (45 loc) · 1.6 KB

README.md

File metadata and controls

67 lines (45 loc) · 1.6 KB

elabapi-python

release wheel

Python library for eLabFTW REST API.

Description

This repository allows generating a python library to interact with eLabFTW REST API v2. It uses Swagger Codegen to generate it based on the OpenApi specification of eLabFTW REST API v2.

As such, it doesn't contain the generated code, but only instructions on how to generate it for local development.

Users should install the library with pip, as described below.

Installation

# create a virtual environment
python -m venv elab
# activate it
source elab/bin/activate
# on Windows
# C:\> elab\Scripts\activate.bat
# install the library
pip install elabapi-python

Usage

See the examples folder.

Unofficial documentation

From TU Graz, Shared RDM Project:

Dev

Using the helper script

# generate the library
./helper.sh generate
# generate from local file: openapi.yaml must be in current dir
./helper.sh generate-from-local
# build packages
./helper.sh build

Installing the library for dev

./helper.sh install-dev

Publishing a new version

  1. Bump version in config.json
  2. Commit and push
  3. Tag and push --tags
  4. Create release on GitHub

License

MIT, see license file.