Genomcore-sdk-python

Last edit on: Sep 26, 2025

Latest version: 1.4.9

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:

Warning

Pipelines using this library should NOT install the jwt library. That’s because in this library we use PyJWT: both get installed with the same name (jwt), and that can lead to collisions when running import jwt inside Python scripts.

Table of contents:

User Guide

Source