I am Running a python script to run download commands using shell script and subprocess
import subprocess
script = download.sh
log = open(logfile.txt,"a")
subprocess.run(script,shell=True,stdout=log)
log.close()
I want to supress the downloading indicatior part which is visible when you run when the download starts
I want to supress that part.