Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to save the output of an IPython console to a file in Spyder?

I have a bug in my program :(

The problem is that:

  • My .py code is long, and takes ages to run
  • I don't know where the bug is

The good news is that I have a lot of print() in my py file, so I can potentially know where the bug lives.

The bad news is that my bug makes my computer crash, so there is no way for me to look at the output of the ipython console and see what went wrong.

How can I have the output be written to disk while the program runs? So that I can still open the file after reboot to understand what happened before the crash?

This question is different from Redirect stdout to a file in Python?, because I need

  • continuous writing to file
  • something to use from within Spyder

Many thanks!

like image 622
ℕʘʘḆḽḘ Avatar asked Nov 23 '16 00:11

ℕʘʘḆḽḘ


People also ask

How do you get the console output in Spyder?

First, use print(x), or plt. show() if using matplotlib. pyplot. Then, if you find that spyder python does not give any output at (F5), change Preferences (spanner icon), select menu 'Run' and change to a different Console option, e.g. 'Execute in a dedicated console', then Run (F5).

How do I use IPython console on Spyder?

Connecting to a console. Spyder can launch new IPython instances itself, through “Open an IPython console” under the Consoles menu, the IPython Console pane menu or its context menu ( Ctrl - T by default), to take advantage of the full suite of Spyder's features.


1 Answers

Very interesting question! Fortunately IPython has the right magic for you. It's called %logstart (please follow the link for the full documentation).

To start using it and save the input and output of all your commands, just type in an IPython console

In[1]: %logstart -o

and that will record your session from that moment on into a file called ipython_log.py placed in your current directory.

%logstart is very flexible, so you can select a different file to save to, and also how you save your session (either pure Python or as IPython commands).

like image 181
Carlos Cordoba Avatar answered Sep 18 '22 22:09

Carlos Cordoba