Genomcore-sdk-python¶
Last edit on: Mar 12, 2026
Latest version: 1.4.21
Genomcore is a Python3 library with a set of tools intended to communicate with Genomcore’s Biomed Platform and API in a programmatic way, so it is easier for the developer to create tools, apps, etc, that interact with it.
Quick start:¶
If you are an internal Genomcore developer and have AWS CodeArtifact configured, you can install this library as with any other Python package:
python -m pip install genomcore
# Install a specific version
python -m pip install genomcore==x.x.x
Inside your Python scripts, you can import the API client as follows:
from genomcore.client import Genomcore
api = Genomcore(token="A_VALID_TOKEN", refresh_token="A_VALID_REFRESH_TOKEN")
api.is_alive()
Note
For other methods of installation, check the Installation section.
Tip
- Check the usage examples sections for code snippets and examples on how to use this library:
Table of contents:¶
User Guide
Examples
Developer Guide
Source