I’m using ipython with qtconsole.
A feature I’m missing from the regular console is to search the console output.
I’d expect to see it under the Edit menu.
Is there a way to do it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t know of that feature, but you can take advantage of the
Outvariable (also available as_oh) that is automatically exposed in the ipython console. Basically it’s a dictionary in which the keys are the line numbers for which some kind of result was returned and the values are the results themselves. Hence, if you look for something inOut.values()using any python code you prefer should be useful to find what you’re looking for.