Python Forum
Simplest way to run external command line app with parameters?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Simplest way to run external command line app with parameters?
#3
A advice subprocess.run should be used with all cases it can handle.
Subprocess Doc
Quote:The recommended approach to invoking subprocesses is to use the run() function for all use cases it can handle.
For more advanced use cases, the underlying Popen interface can be used directly.
Can also use capture_output=True,and no need top use args.insert as see f-string dos this fine.
import subprocess

output_file = "%03d.jpg"
input_file = "input.doc"
executable_path = r"C:\app.exe"
command_line = f"{executable_path} command -a 50 -o {output_file} {input_file}"
args = command_line.split()
result = subprocess.run(args, encoding='utf-8', capture_output=True)
print(result.stdout)
Reply


Messages In This Thread
RE: Simplest way to run external command line app with parameters? - by snippsat - Aug-19-2024, 03:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Insert command line in script lif 4 816 Mar-24-2025, 10:30 PM
Last Post: lif
  Command line argument issue space issue mg24 5 2,285 Oct-26-2022, 11:05 PM
Last Post: Yoriz
  accept command line argument mg24 5 2,272 Sep-27-2022, 05:58 PM
Last Post: snippsat
  Accessing varying command line arguements Rakshan 3 2,918 Jul-28-2021, 03:18 PM
Last Post: snippsat
  How to input & output parameters from command line argument shantanu97 1 3,525 Apr-13-2021, 02:12 PM
Last Post: Larz60+
  Simplest/Quickest/Best Way to Get Started? abrogard 7 4,117 Oct-22-2020, 10:53 AM
Last Post: metulburr
  Passing List of Objects in Command Line Python usman 7 4,423 Sep-27-2020, 03:45 PM
Last Post: ndc85430
  Taking Multiple Command Line Argument Input bwdu 6 6,680 Mar-29-2020, 05:52 PM
Last Post: buran
  python 3 from command line Dixon 1 2,557 Mar-01-2020, 08:35 PM
Last Post: snippsat
  Running linux command line apps... dbrdh 0 2,097 Jan-30-2020, 01:14 PM
Last Post: dbrdh

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020