About 120,000 results
Open links in new tab
  1. subprocessSubprocess management — Python 3.14.2 …

    2 days ago · Source code: Lib/subprocess.py The subprocess module allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes.

  2. Python subprocess module - GeeksforGeeks

    Jul 11, 2025 · The subprocess module present in Python (both 2.x and 3.x) is used to run new applications or programs through Python code by creating new processes. It also helps to obtain the …

  3. Uma introdução ao subprocesso Python: Noções básicas e exemplos

    Explore nosso guia passo a passo para executar comandos externos usando o módulo de subprocesso do Python, completo com exemplos.

  4. Python subprocess Module - W3Schools

    The subprocess module allows you to spawn new processes, connect to their input/output/error pipes, and obtain return codes. Use it to execute external commands, run shell scripts, or interact with other …

  5. The subprocess Module: Wrapping Programs With Python

    Jan 18, 2025 · In this tutorial, you'll learn how to leverage other apps and programs that aren't Python, wrapping them or launching them from your Python scripts using the subprocess module.

  6. Como usar o subprocess para executar programas externos em Python 3

    Sep 11, 2020 · O módulo subprocess é uma parte poderosa da biblioteca padrão Python que permite que você execute programas externos e inspecione suas saídas com facilidade.

  7. How to use subprocess.run method in python? - Stack Overflow

    Dec 11, 2022 · I wanted to run external programs using python but I receive an error saying I don't have the file the code I wrote: import subprocess subprocess.run ( ["ls", "-l"]) Output: Tra...

  8. O módulo de subprocesso: empacotando programas com Python

    Agora que você está familiarizado com alguns dos princípios básicos para iniciar novos processos com o módulo subprocess do Python, a seguir você verá que pode executar qualquer tipo de processo , …

  9. Subprocess in Python

    Subprocess is the task of executing or running other programs in Python by creating a new process. We can use subprocess when running a code from Github or running a file storing code in any other …

  10. An Introduction to Python Subprocess: Basics and Examples

    Sep 12, 2025 · Explore our step-by-step guide to running external commands using Python's subprocess module, complete with examples.