I'm trying to write a script that allows the user to manipulate a graph via event handling in matplotlib, but I need to have them enter some additional information through the terminal
Calling raw_input() seems to break the scripts, and throws a RuntimeError: can't re-enter readline error
here's a simple piece of code to demonstrate this:
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(np.random.rand(10))
def keypress(event):
print 'You press the "%s" key' %event.key
print 'is this true? Type yes or no'
y_or_n = raw_input()
cid = fig.canvas.mpl_connect('key_press_event', keypress)
plt.show()
This works fine if I run it using python, but breaks using ipython --pylab. Unfortunately, I need the interactive mode
I see other people have had this problem but I haven't seen a solution