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.8.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.8-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pbspy-0.0.8.tar.gz
Algorithm Hash digest
SHA256 2be7799c13f4cb1c75c71348cbf22d40363b7a10ff0c27ea55c1bed672861df7
MD5 f5559bc5a5edfda3daaf71d7a1fc01d1
BLAKE2b-256 f6c70e36714301dcaa979d63b83f026190beea7b6c291de5440a2dc959afd649

See more details on using hashes here.

Provenance

The following attestation bundles were made for pbspy-0.0.8.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.8-py3-none-any.whl.

File metadata

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

File hashes

Hashes for pbspy-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 5295cb50106c4eca5f8b5481a1718a7db3a5432209d8aa6ce93b01489f49b917
MD5 4fd146b250f7838cf59c2ed02fa9300c
BLAKE2b-256 3e18a0b5795dd847ff4ff880460b7d0b8a01c58fca0737cae8bccb6e53035c84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pbspy-0.0.8-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