About 50 results
Open links in new tab
  1. subprocess — Subprocess management — Python 3.14.3 documentation

    2 days ago · Information about how the subprocess module can be used to replace these modules and functions can be found in the following sections.

  2. Subprocesses — Python 3.14.3 documentation

    4 days ago · Because all asyncio subprocess functions are asynchronous and asyncio provides many tools to work with such functions, it is easy to execute and monitor multiple subprocesses in parallel.

  3. concurrent.futures — Launching parallel tasks — Python 3.9.24 …

    Mar 9, 2024 · The concurrent.futures module provides a high-level interface for asynchronously executing callables. The asynchronous execution can be performed with threads, using …

  4. Logging Cookbook — Python 3.14.3 documentation

    This is easy to do if you have text-to-speech (TTS) functionality available in your system, even if it doesn’t have a Python binding. Most TTS systems have a command line program you can run, and …

  5. The Python Standard Library — Python 3.14.3 documentation

    2 days ago · subprocess — Subprocess management sched — Event scheduler queue — A synchronized queue class contextvars — Context Variables _thread — Low-level threading API …

  6. shlex — Simple lexical analysis — Python 3.14.3 documentation

    2 days ago · Executing commands quoted by this module on such shells can open up the possibility of a command injection vulnerability. Consider using functions that pass command arguments with lists …

  7. importlib.metadata – Accessing package metadata — Python 3.14.3 ...

    1 day ago · Changed in version 3.12: The “selectable” entry points were introduced in importlib_metadata 3.6 and Python 3.10. Prior to those changes, entry_points accepted no …

  8. Platform Support — Python 3.14.3 documentation

    Feb 14, 2026 · Subprocesses are not supported, i.e. loop.subprocess_exec() and loop.subprocess_shell() methods are not implemented. ProactorEventLoop has the following limitations:

  9. multiprocessing — Process-based parallelism — Python 3.14.3 …

    1 day ago · The fork start method should be considered unsafe as it can lead to crashes of the subprocess as macOS system libraries may start threads. See bpo-33725. Changed in version 3.14: …

  10. os — Miscellaneous operating system interfaces — Python 3.14.3 ...

    Using the subprocess module, all file descriptors except standard streams are closed, and inheritable handles are only inherited if the close_fds parameter is False.