Skip to main content

Python utils for writing gamayun job scripts

Project description

Python utilities for Gamayun

This is a package containing python utilities for writing Gamayun jobs. Main Gamayun repository can be found here.

Contents

Getting the package

Install the package with the following command:

pip3 install gamayun-utils

This package depends on gprcio, which needs C/C++ compilers installed on the system. Needed dependencies on Alpine are:

apk add --no-cache python3 \
&& apk add --no-cache gcc \
&& apk add --no-cache g++ \
&& apk add --no-cache libc-dev \
&& apk add --no-cache linux-headers \
&& apk add --no-cache python3-dev

Note that suggested way of using Gamayun is with Docker, so you don't have to install these dependencies locally. If you are using Docker, there is an image containing Gamayun and Gamayun Python utilities here.

See Gamayun main repo for more information and see example usage here.

Usage

This part documents the package API

Reporting results and errors

Functions for reporting results or errors from the script are following:

def report_result_with_strings_only(results)

This function is used when the result we want to report is a list of strings

def report_result_with_maps_only(results)

This function is used when the result we want to report is a list of maps

def report_result_with_maps_and_strings(mapResults, stringResults)

This function is used when the result we want to report is a list of strings and a list of maps

def report_error(error)

This function is used when we want to report error which will be forwarded through the notifier interface

Note that once result or error is reported for the script/gamayun-job, Gamayun will stop listening for results/errors for that job, so in entire job there should be only one call to any of the report functions.

Executing the script logic

There is a function with the following signature in this package:

def run_gamayun_script_logic(callback)

All the script logic should be placed in some function and that function should be given to run_gamayun_script_logic as argument as this will ensure that all uncought exceptions are caught and reported as errors to Gamayun.

So, a job script file should look something like this:

from gamayun_utils import report_result_with_maps_only
from gamayun_utils import report_error
from gamayun_utils import run_gamayun_script_logic

def script_logic():
    # place the script logic here
    if OK:
        report_result_with_maps_only(results)
    else:
        report_error(error)

run_gamayun_script_logic(script_logic)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gamayun-utils-0.2.1.1.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gamayun_utils-0.2.1.1-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file gamayun-utils-0.2.1.1.tar.gz.

File metadata

  • Download URL: gamayun-utils-0.2.1.1.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for gamayun-utils-0.2.1.1.tar.gz
Algorithm Hash digest
SHA256 54ccedcafaae25b1c66848cb22a7bfdf3556631f24aad51281866c3e49469124
MD5 f4b29f8a0b0f75c39b65c01a1fe2d1be
BLAKE2b-256 aab6baaac15f2c8a807c1465b7c30acfa861b13955c03454f0c73eee7cfe6945

See more details on using hashes here.

File details

Details for the file gamayun_utils-0.2.1.1-py3-none-any.whl.

File metadata

  • Download URL: gamayun_utils-0.2.1.1-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for gamayun_utils-0.2.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 08963a1147e01dfad90b4bbd7ba4fac717c8459945a36bf7663ff1e616dd407a
MD5 042a0292e8fc35cb504b4d5b5aa2c1ac
BLAKE2b-256 cfcf18c87554a476ba8ddf355cbffce349433b3f475a69cc96b756acf84acef2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page