Skip to main content

A python package for working with the Portable Batch System (PBS) job scheduler.

Project description

pbspy

PyPI - Version docs Python Version PyPI - License build

A python package for working with the Portable Batch System (PBS) job scheduler.

See the documentation for more information.

Example

from pbspy import Job, JobDescription

# Run a job with some explicit parameters
job_a = (
    JobDescription(name="job_a", ncpus=4, mem="192GB", walltime="00:05:00")
    .add_command(["echo", "A"])
    .submit()
)

# Submit another job that waits for job_a to finish
job_b = (
    JobDescription(name="job_b", ncpus=1, walltime="00:05:00", afterok=[job_a])
    .add_command(["echo", "B"])
    .submit()
)

# Get the result of the jobs
# result_a = job_a.result() # wait for job_a to finish and get result
(result_a, result_b) = Job.result_all(
    [job_a, job_b]
)  # wait for job_a and job_b to finish and get results
print("job_a:", result_a.output.strip())
print("job_b:", result_b.output.strip())

Output (partially executed):

✓ 124397435.gadi-pbs job_a
0:01:15 124397436.gadi-pbs job_b

Output (completed):

✓ 124397435.gadi-pbs job_a
✓ 124397436.gadi-pbs job_b

job_a: A
job_b: B

Licence

pbspy is licensed under the MIT License LICENSE or http://opensource.org/licenses/MIT.

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

pbspy-0.0.7.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

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

pbspy-0.0.7-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file pbspy-0.0.7.tar.gz.

File metadata

  • Download URL: pbspy-0.0.7.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pbspy-0.0.7.tar.gz
Algorithm Hash digest
SHA256 120b500070d07e32cc925d98d9df81886b3d42518e353d9e718099db268e6508
MD5 ae04105c3f0c4641f7875f7ed3689c6b
BLAKE2b-256 3c08c9e83386e5c987ad6f953ae62ad67bcdae5b647d8284e21f07c9171c08ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pbspy-0.0.7.tar.gz:

Publisher: cd.yml on MaterialsPhysicsANU/pbspy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pbspy-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: pbspy-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pbspy-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 948cd3193c743cc7fc259811b8cac5fb37617b583766830410b661e91878ba72
MD5 59f44b9d75ec0da5214a6223afdac8f5
BLAKE2b-256 90d1467566a3ea690dc987577d768eaea7532fe50bf5b3b38cdd8b6ed8806c44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pbspy-0.0.7-py3-none-any.whl:

Publisher: cd.yml on MaterialsPhysicsANU/pbspy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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