skillfed

mozprocess

Mozilla-authored process handling

mozprocess v1.4.0 339.0K downloads/30d#7,428 on PyPI
Copyleft license MPL 2.0 DORMANT released

What it is and what it does

mozprocess is a Mozilla-authored process handling library that wraps subprocess functionality with additional utilities for spawning, monitoring, and terminating processes. It depends only on mozinfo, a lightweight Mozilla utility for system information, and is designed to abstract away platform-specific process management details.

The package has been dormant for 725 days with no recent commits or releases beyond version 1.4.0 (released 2024-08-19). It carries a copyleft MPL 2.0 license, meaning any derivative work must remain under the same license. With no active maintenance, it is suitable only for projects that can tolerate lack of bug fixes or compatibility updates.

Use it for:

  • Spawn and manage child processes in Mozilla test automation or build infrastructure where Mozilla-specific process handling is expected.
  • Cross-platform process control in projects already using other mozbase utilities and expecting consistent Mozilla-authored interfaces.
  • Legacy projects that depend on mozprocess and cannot easily migrate to standard library subprocess or alternative process managers.

Worth the install?

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

Provides utilities for spawning, managing, and terminating processes with Mozilla-specific enhancements, wrapping platform-specific process handling logic.

No, unless you are maintaining a legacy Mozilla project that already depends on mozprocess. The package is dormant with no recent maintenance, and modern Python projects should use the standard library subprocess module or a maintained alternative. The copyleft license also restricts derivative works.

Install

mozprocess on PyPI

pip

pip install mozprocess

uv

uv add mozprocess

poetry

poetry add mozprocess

Installing mozprocess

Before you install

Low install friction with a single lightweight dependency (mozinfo). Package is dormant—no releases or commits recorded in 725 days—so expect no active maintenance or bug fixes going forward.

License in practice

Licensed under MPL 2.0 (copyleft). You may use and modify the code, but derivative works and distributions must retain the same license and disclose source changes.

Quickstart

pip install mozprocess

from mozprocess import ProcessHandler

handler = ProcessHandler(['echo', 'hello'])
handler.run()

Verify before relying

  • Whether the package still works reliably with modern Python versions despite dormancy and lack of recent maintenance.
  • What specific Mozilla-authored enhancements or behaviors distinguish this from the standard library subprocess module.

Package facts

License MPL 2.0 (copyleft)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 1 — mozinfo
Maintenance dormant — 725 days since the last release
First released
Downloads 338,961/month — #7,428 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: mozprocess-1.4.0-py2.py3-none-any.whl

Keywords: mozilla

Environment :: ConsoleIntended Audience :: DevelopersLicense :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)Natural Language :: EnglishOperating System :: OS IndependentProgramming Language :: Python :: 3.5Topic :: Software Development :: Libraries :: Python Modules

Tags

process management librarysubprocess wrappercross-platform process controlmozilla process utilitiesprocess spawning and termination
mozilla-authoreddormant

More Python Modules packages