Add your description here
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
pyslurmor 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 optionallysacct/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.
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
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nanoslurm-0.1.1.tar.gz.
File metadata
- Download URL: nanoslurm-0.1.1.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1a06ba04015f3b530d63ab8e9b422c46d08626ebe379dee4c4cbd3e9b68ae5a
|
|
| MD5 |
80687dc28a260d7a76ba494f25bfadaa
|
|
| BLAKE2b-256 |
ab98bb0f67421e9332ce2aeb63ebde8a0a33d688ea97a76d1e586da1599e3eaf
|
File details
Details for the file nanoslurm-0.1.1-py3-none-any.whl.
File metadata
- Download URL: nanoslurm-0.1.1-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5621959b9f6277933d34a502bfa6f5298c346fd5bbdc55b8edd822373d5ae7d9
|
|
| MD5 |
101f7f580406e7fd8f0f571dbbfc6743
|
|
| BLAKE2b-256 |
e803cd054457aebafc2586fe1a67a9e878838bb8a5ab8c346701037c6b56f094
|