Python

description: The Python Programming Language

lang: ENG

Execute shell command

from subprocess import run, CalledProcessError
  try:
    run(["echo", ["..."]], capture_output=True, text=True, check=True, shell=True)
  except CalledProcessError as error:
	pass

Good libraries