I am trying to install a few programs with Homebrew as a Python subprocess.
My code looks like this:
from subprocess import call
call(f"brew cask install {brew_command} --force", shell=True)
Everything works fine but I can't find how to pass my password to this process.