Lagoon python API is a tool that allows Lagoon users to interact with there data from directly from Python.
Lagoon is developed by Fatfish Lab
# -*- coding: utf-8 -*-
from lagoon import Lagoon
lg = Lagoon('https://your-lagoon-server')
lg.connect(LG_USER, LG_PASSWORD)
organisations = lg.get_organisations()
hardware = organisations[0].get_hardware()
This package is compatible with Python 2.7 and 3.7+
python -m pip install lagoon-python-api
OR
python -m pip install git+https://github.com/fatfish-lab/lagoon-python-api.git
Check our documentation to find all the information you need.
The repository is maintained by Fatfish Lab
You can contact our team at [email protected].
Rather the package is compatible with python 2.7 and 3, the Sphinx documentation is using python 3.
- Clone this repository
- Setup a virtual env :
virtualenv pylg
- If needed, you can specify the version of python used in your virtual env :
virtualenv --python=/usr/bin/python3 pylg3
- If needed, you can specify the version of python used in your virtual env :
- Enable your virtual env :
source pylg/bin/activate
- Install local Lagoon package to your virtual env :
pip install -e /path/to/package/lagoon-python-api
cd /path/to/package/lagoon-python-api/docs
make html
This project uses the following license: GPL-3.0-only. See the license file to read it.