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.9.tar.gz (12.2 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.9-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pbspy-0.0.9.tar.gz
Algorithm Hash digest
SHA256 2ab3ba20e49909f3c207b42160e696b4db43bf993fc3e95dd96da6404d147b3b
MD5 bf13b02aff2177e8e530dd817890bf42
BLAKE2b-256 9948ecdce48a7fb477f16c7b6f970637a2cf8161674f302d38f4714db82f0b24

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pbspy-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 c17c86c5848b57a67128070a58b55d6338c56a850459eca84d64fbbb7ea17fb0
MD5 324ab77ea523611f39b0866aa893cadb
BLAKE2b-256 a8878bede7baf552d3845d2df67e3139c3a56a395983f01e8dd457d87727fe25

See more details on using hashes here.

Provenance

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