a Python client library for the Rescale API
Project description
rescalepy
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
Built Distribution
File details
Details for the file rescalepy-0.0.7.tar.gz
.
File metadata
- Download URL: rescalepy-0.0.7.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2534e490fe48eeaa8905d03e0370d15dc3b45172a0d98dab1b7c25408576d4a7 |
|
MD5 | c0da05b65479b406929c1b5a8ea36a4a |
|
BLAKE2b-256 | 3a7425339bdb3a825fd33e52544d20650bd46dc8f3968e239a402803155ce539 |
File details
Details for the file rescalepy-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: rescalepy-0.0.7-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef0d63862c477428f59ca2bcb30218eb437841abbfa83580bae1982dde5b1d32 |
|
MD5 | 119d7abe6f83c507724047bf4628f8a8 |
|
BLAKE2b-256 | d862a04ba55b6f8f252f307efd1c5e8c2ec4ceaad700406c5b0342496258972b |