Skip to main content

Zero-dependency Python wrapper for SLURM job submission and monitoring

Project description

nanoslurm

nanoslurm is a zero-dependency Python wrapper for SLURM job submission and monitoring.
It uses a tiny POSIX-compatible shell script to call sbatch and related commands, avoiding any heavy Python dependencies.

Features

  • Submit jobs from Python without pyslurm or other packages
  • Monitor status (PENDING, RUNNING, COMPLETED, etc.)
  • Cancel jobs
  • Tail job logs
  • Get detailed info via scontrol
  • Respects working directory at runtime (sbatch -D)

Requirements

  • SLURM cluster with sbatch, squeue, and optionally sacct / scontrol
  • Python ≥ 3.11
  • Linux operating system

Quickstart

import nanoslurm

job = nanoslurm.submit(
    command=["python", "train.py", "--epochs", "10"],
    name="my_job",
    cluster="gpu22",
    time="01:00:00",
    cpus=4,
    memory=16,
    gpus=1,
    stdout_file="./slurm_logs/%j.txt",
    stderr_file="./slurm_logs/%j.err",
    signal="SIGUSR1@90",
    workdir="."
)

print(job)                      # Job(id=123456, name='my_job_2025-08-08_09-12-33.123', ...)
print(job.status)               # "PENDING", "RUNNING", ...
print(job.is_running())         # True / False
print(job.is_finished())        # True / False
print(job.info())               # Detailed dict from scontrol
job.tail(10)                    # Last 10 lines of stdout
job.wait(poll_interval=5)       # Wait until completion
job.cancel()                    # Cancel job

Command line interface

Install the CLI with uv:

uv tool install nanoslurm

Submit a job from the terminal:

nslurm run -c gpu22 -t 01:00:00 -p 4 -m 16 -g 1 -- python train.py --epochs 10

Launch an interactive prompt to build a command and adjust options:

nslurm run -i

Manage persistent defaults (stored as YAML via platformdirs):

nslurm defaults show            # list current defaults
nslurm defaults set cluster gpu22
nslurm defaults reset
nslurm defaults edit            # open the YAML config in $EDITOR

Most job parameters (such as cluster, time, or resource counts) have no built-in defaults. Set them explicitly on the command line or persist them via nslurm defaults set.

View current jobs in an interactive TUI:

nslurm jobs

Use the arrow keys or h, j, k, l to move around and q to quit.

View cluster-wide statistics such as job states, top users, and job counts by partition with counts and percentages:

nslurm stats

Releasing

Bump the version in pyproject.toml and merge the change into main. A workflow will tag the commit as vX.Y.Z and publish the package to PyPI.

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

nanoslurm-0.1.7.tar.gz (14.1 kB view details)

Uploaded Source

Built Distribution

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

nanoslurm-0.1.7-py3-none-any.whl (15.8 kB view details)

Uploaded Python 3

File details

Details for the file nanoslurm-0.1.7.tar.gz.

File metadata

  • Download URL: nanoslurm-0.1.7.tar.gz
  • Upload date:
  • Size: 14.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.8.17

File hashes

Hashes for nanoslurm-0.1.7.tar.gz
Algorithm Hash digest
SHA256 39c45b18fbd0c5a7e27643eb90aeaa8f3d126f6e1937f30d134f657f24fd9c6c
MD5 82963a273b2b0429e9e261ee4c901ac0
BLAKE2b-256 e772fb254d10e2c7a92abc207df6b8ac6652e459df2a093b68bd7286c87ec994

See more details on using hashes here.

File details

Details for the file nanoslurm-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: nanoslurm-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.8.17

File hashes

Hashes for nanoslurm-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 a99a7ccfb15f80155295d2f454fc90359d689a1a171b7853131ad42d90309974
MD5 4cc2361c71a1395be34d860b25c7c7d4
BLAKE2b-256 94e998826247d535aaeb9f0678ea514794a4456cf2d288cc345ede731d51b876

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