Skip to main content

a Python client library for the Rescale API

Project description

rescalepy

PyPI - Downloads PyPI - Downloads

This is a Python client library for the Rescale API. It provides a simple way to interact with the Rescale API from your Python applications.

Installation

You can install the library using pip:

pip install rescalepy

Usage in scripts

To use the library, you need to create a client object and authenticate with the Rescale API. You can then use the client object to interact with the API.

Here is an example of how to use the library to create/submit an OpenFoam job on Rescale:

from rescalepy import Client

API_TOKEN = 'your-token'
client = Client(api_token=API_TOKEN)
job_id = client.create_job(
    name='OpenFoam Job',
    command='cd airfoil2D;./Allrun',
    software_code='openfoam_plus',
    input_files=['airfoil2D'], # can be files or directories
    version='v1712+-intelmpi',
    project_id='your-project-id',
    core_type='emerald_max',
)

client.submit_job(job_id)

Here is an example of how to use the library to get the status of a job on Rescale:

statuses = client.get_job_status(job_id)
current_status = statuses[0]['status']

if current_status == 'COMPLETED':
    print('Job completed successfully')
elif current_status == 'FAILED':
    print('Job failed')
elif current_status == 'PENDING':
    print('Job is pending')
elif current_status == 'RUNNING':
    print('Job is running')
else:
    print('Job status is unknown')

Here is an example of how to use the library to monitor and wait for a job to complete on Rescale and then download the output files:

client.wait_for_job(job_id)
client.download_all_results(job_id)

CLI Usage

The library also provides a command line interface that you can use to interact with the Rescale API. You can use the CLI to create/submit jobs, monitor jobs, and download job outputs.

Here is an example of how to use the CLI to create/submit an OpenFoam job on Rescale:

python -m rescalepy submit "OpenFoam CLI Job" "airfoil2D" \
--api-token "your-token" \
--software-code "openfoam_plus" \
--command "cd airfoil2D;./Allrun" \
--version "v1712+-intelmpi" \
--project-id "your-project-id" \
--core-type "emerald_max"

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

rescalepy-0.2.0.tar.gz (20.2 kB view details)

Uploaded Source

Built Distribution

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

rescalepy-0.2.0-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file rescalepy-0.2.0.tar.gz.

File metadata

  • Download URL: rescalepy-0.2.0.tar.gz
  • Upload date:
  • Size: 20.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for rescalepy-0.2.0.tar.gz
Algorithm Hash digest
SHA256 d93d9ff388cc51fb8c2fd228ce04db2bb5c5a4eb23a5dcd98cdded016cf3c3b4
MD5 66c6ca7a5e242737b823fe7d0d188f50
BLAKE2b-256 60e83f80cb0f31702867a18d378b938f234f41be5a689441cec96bb29819bc5f

See more details on using hashes here.

File details

Details for the file rescalepy-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: rescalepy-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for rescalepy-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1c4d6d7d6af6ca4da68cf235c32317f849fcf936cbfd5bed0828a5a5e59a2e55
MD5 e5f95a7020cbffb6a51a4c5035d4ded2
BLAKE2b-256 4a717b8df15116f52b70983d5de69c5c8bc599490a5e526a319cadc30514a06a

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