simpervisor
Simple async process supervisor
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 simpervisoruv
uv add simpervisorpoetry
poetry add simpervisorInstalling 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
Tags
More Monitoring packages
Wraps any iterable to display a real-time…
copyleft · top 100 on PyPI
opentelemetry-semantic-conventionsProvides generated Python code for…
permissive · top 100 on PyPI
opentelemetry-sdkProvides the reference implementation of the…
permissive · top 100 on PyPI
opentelemetry-apiProvides the abstract API and interfaces for…
permissive · top 100 on PyPI
opentelemetry-exporter-otlp-proto-httpExports OpenTelemetry observability data to an…
permissive · top 1,000 on PyPI
opentelemetry-instrumentationProvides automatic instrumentation commands and…
permissive · top 1,000 on PyPI
mirakuruMirakuru starts external processes (databases,…
copyleft · top 5,000 on PyPI
supervisorSupervisor is a client/server system that…
permissive · top 5,000 on PyPI
supervisord-dependent-startupA Supervisor plugin that orchestrates service…
permissive · top 15,000 on PyPI
jupyter-server-proxyJupyter Server Proxy runs external processes…
permissive · top 15,000 on PyPI
kantokuKantoku runs and watches multiple processes and…
permissive · top 15,000 on PyPI
circusCircus runs and watches multiple processes and…
permissive · top 15,000 on PyPI
jupyterhubJupyterHub is a multi-user server that spawns,…
permissive · top 15,000 on PyPI
EasyProcessEasyProcess wraps Python's subprocess module to…
permissive · top 5,000 on PyPI
superlanceSuperlance provides plugin utilities for…
permissive · top 15,000 on PyPI
kthreadKThread provides a way to forcefully terminate…
permissive · top 15,000 on PyPI