I am writing a program using matplotlib and would like to have the option for the user to input text or numbers. There currently is not a text-entry widget in matplotlib however (to my knowledge).
Is there an easy way to get user text without either a) making them enter it through the terminal or b) writing a GUI/using a GUI package such as tkinter or pygtk?
For example, a simple library that would allow me to create a text-entry window.
Thanks.