Open Source Lab Automation gRPC Library
Galago Tools is a comprehensive Python library for lab automation that provides standardized gRPC interfaces for a wide variety of laboratory instruments. Each tool runs as a gRPC server, enabling consistent command execution across different devices and platforms.
- Standardized Interface: Uniform gRPC API across all supported instruments
- Extensive Device Support: 20+ instrument types including pipetting systems, centrifuges, readers, and more
- 32-bit Compatibility: Special support for legacy Windows instruments requiring 32-bit Python
- Production Ready: Used in real laboratory environments
- Python: 3.9
- Operating System: Windows, macOS, Linux
If you plan to contribute or customize Galago Tools, start by forking the repository:
-
Fork on GitHub: Click the "Fork" button at the top right of the repository page, or use this direct link:
-
Clone your fork (replace
your-usernamewith your GitHub username):
git clone https://github.com/your-username/galago-tools.git
cd galago-tools- Add upstream remote (to keep your fork updated):
git remote add upstream https://github.com/sciencecorp/galago-tools.git- Install in dev mode and dev deps
pip install -e .
pip install -r requirements-dev.txt- Build proto files
bin/make proto- Launch Galago Tools Manager (The server used by Galago Core)
galago #Install latest distribution
pip install galago-tools
#Launch tools manager
galago We also provide a Windows Installer that does all this for you. Download Here. A launch icon will automatically be created in the desktop.
Many legacy lab instruments require 32-bit Python on Windows. If you are doing local development (Option 1) and are using any of the Agilent tools you need to download python 32-bits or set up a 32-bit environment using conda:
# Set environment variables for 32-bit
set CONDA_FORCE_32BIT=1
set CONDA_SUBDIR=win-32
# Create and activate environment
conda create -n galago-tools python=3.9
conda activate galago-tools
# Install galago-tools
pip install galago-tools## Starting the tools server manager.
galago
# List available tools
galago --list
# Start a specific tool server
galago-serve --port=50010 --tool=opentrons2
# Get tool information
galago --info opentrons2Python distributions are automatically published via github workflows. See RELEASE for more information.
# Run all tests
bin/make testWe welcome contributions! Please see our Contributing Guidelines for details.
- Fork Galago Tools →
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit changes (
git commit -m 'Add amazing feature') - Push to branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Science Corporation develops advanced technologies to understand and engineer the brain.
- Issues: GitHub Issues
- Documentation: Full Documentation