5

I believe this to be a very simple question, but I have been failing to find a simple answer.

I am running a python program that terminates an AWS cluster (using starcluster). I am just calling a command from my python program using subprocess, something like the following.

subprocess.call('starcluster terminate cluster', shell=True)

The actual command is largely irrelevant for my question but provides some context. This command will begin terminating the cluster, but will prompt for a yes/no input before continuing, like so:

Terminate EBS cluster (y/n)? 

How do I automate typing yes from within my python program as input to this prompt?

lbrendanl
  • 2,626
  • 4
  • 33
  • 54

3 Answers3

9

While possible to do with subprocess alone in somewhat limited way, I would go with pexpect for such interaction, e.g.:

import pexpect
child = pexpect.spawn('starcluster terminate cluster')
child.expect('Terminate EBS cluster (y/n)?')
child.sendline('y')
Community
  • 1
  • 1
famousgarkin
  • 13,687
  • 5
  • 58
  • 74
5

You can write to stdin using Popen:

from subprocess import Popen, PIPE
proc = Popen(['starcluster', 'terminate', 'cluster'], stdin=PIPE)
proc.stdin.write("y\r")
Padraic Cunningham
  • 176,452
  • 29
  • 245
  • 321
0

It might be simplest to check the documentation on the target program. Often a flag can be set to answer yes to all prompts, e.g., apt-get -y install.

Andy Kubiak
  • 169
  • 6