skillfed

simpervisor

Simple async process supervisor

simpervisor v1.0.0 643.6K downloads/30d#5,605 on PyPI14
Permissive license BSD 3-Clause License Copyright (c) 2018, Yuvi Panda All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following… (full text in the JSON record) Active released

What it is and what it does

simpervisor wraps subprocess management into an async-friendly API, offering a SupervisedProcess class with async methods for the full lifecycle of a child process: start, ready, terminate, and kill. It is designed for applications that need to spawn and manage external processes from within async code without blocking the event loop.

The package has no runtime dependencies and works with Python 3.8 through 3.11 on both CPython and PyPy. It is actively maintained and used by JupyterHub's jupyter-server-proxy to manage proxy processes. The low install friction and permissive BSD license make it straightforward to integrate into projects that need lightweight async process supervision.

Use it for:

  • Start and manage proxy or gateway processes from within a JupyterHub-like async application.
  • Supervise background worker processes in an async web service without blocking the event loop.
  • Implement graceful shutdown of child processes in an async application by calling terminate or kill.
  • Coordinate multiple managed subprocesses in a microservice or orchestration context.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides async methods to start, manage, and terminate child processes through a SupervisedProcess class.

Yes. Low install friction, no dependencies, active maintenance, and a permissive license make this a safe choice for any async Python project that needs to spawn and manage child processes. The narrow scope and stable API reduce risk; use it if you need async process lifecycle control.

Install

simpervisor on PyPI

pip

pip install simpervisor

uv

uv add simpervisor

poetry

poetry add simpervisor

Installing simpervisor

Before you install

Low friction installation with no runtime dependencies. Actively maintained as of August 2026, with consistent Python version support across 3.8–3.11 and PyPy.

License in practice

BSD 3-Clause License permits commercial and private use with minimal restrictions; you must retain copyright notices and disclaimers in source and binary distributions.

Quickstart

pip install simpervisor

import asyncio
from simpervisor import SupervisedProcess

async def main():
    proc = SupervisedProcess("sleep", "10")
    await proc.start()
    await proc.terminate()

asyncio.run(main())

Requires Python 3.8 or later; async/await syntax required in calling code.

Verify before relying

  • Whether SupervisedProcess supports stdin/stdout/stderr capture or streaming.
  • Whether the package handles process groups or only individual processes.
  • What happens to child processes if the parent asyncio event loop exits unexpectedly.

Package facts

License BSD 3-Clause License Copyright (c) 2018, Yuvi Panda All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following… (full text in the JSON record) (permissive)
Python support supports the current Python release (>=3.8)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 1,184 days since the last release
Last repo commit
First released
Downloads 643,642/month — #5,605 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: simpervisor-1.0.0-py3-none-any.whl

Keywords: async, process, supervisor

Development Status :: 5 - Production/StableProgramming Language :: PythonProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPy

Tags

async process managementsupervised process controlchild process lifecycleasync subprocess supervisorprocess start stop terminateasync process orchestration
async-subprocessprocess-lifecycle

More Monitoring packages

tqdm

Wraps any iterable to display a real-time…

copyleft · top 100 on PyPI

opentelemetry-semantic-conventions

Provides generated Python code for…

permissive · top 100 on PyPI

opentelemetry-sdk

Provides the reference implementation of the…

permissive · top 100 on PyPI

opentelemetry-api

Provides the abstract API and interfaces for…

permissive · top 100 on PyPI

opentelemetry-exporter-otlp-proto-http

Exports OpenTelemetry observability data to an…

permissive · top 1,000 on PyPI

opentelemetry-instrumentation

Provides automatic instrumentation commands and…

permissive · top 1,000 on PyPI

mirakuru

Mirakuru starts external processes (databases,…

copyleft · top 5,000 on PyPI

supervisor

Supervisor is a client/server system that…

permissive · top 5,000 on PyPI

supervisord-dependent-startup

A Supervisor plugin that orchestrates service…

permissive · top 15,000 on PyPI

jupyter-server-proxy

Jupyter Server Proxy runs external processes…

permissive · top 15,000 on PyPI

kantoku

Kantoku runs and watches multiple processes and…

permissive · top 15,000 on PyPI

circus

Circus runs and watches multiple processes and…

permissive · top 15,000 on PyPI

jupyterhub

JupyterHub is a multi-user server that spawns,…

permissive · top 15,000 on PyPI

EasyProcess

EasyProcess wraps Python's subprocess module to…

permissive · top 5,000 on PyPI

superlance

Superlance provides plugin utilities for…

permissive · top 15,000 on PyPI

kthread

KThread provides a way to forcefully terminate…

permissive · top 15,000 on PyPI