Лог выхода IPython?

Есть ли способ сделать так, чтобы возможности протоколирования IPython включали как вывод, так и ввод?

Вот как выглядит файл журнала:

#!/usr/bin/env python 
# 2012-08-06.py 
# IPython automatic logging file
# 12:02 
# =================================
print "test"

Я хотел бы, чтобы появилась еще одна строка:

#!/usr/bin/env python 
# 2012-08-06.py 
# IPython automatic logging file
# 12:02 
# =================================
print "test"
# test

(# потому что я предполагаю, что это необходимо для предотвращения взлома IPython logplay особенность)

Я полагаю, что это возможно при использовании ноутбуков IPython, но по крайней мере на одной машине, для которой мне это нужно, я ограничен ipython 0.10.2.

РЕДАКТИРОВАТЬ: Я хотел бы знать, как настроить это автоматически, то есть в файле конфигурации. Прямо сейчас мой конфиг выглядит

from time import strftime
import os
logfilename = strftime('ipython_log_%Y-%m-%d')+".py" 
logfilepath = "%s/%s" % (os.getcwd(),logfilename) 

file_handle = open(logfilepath,'a') 
file_handle.write('########################################################\n') 
out_str = '# Started Logging At: '+ strftime('%Y-%m-%d %H:%M:%S\n') 
file_handle.write(out_str) 
file_handle.write('########################################################\n') 
file_handle.close() 

c.TerminalInteractiveShell.logappend = logfilepath
c.TerminalInteractiveShell.logstart = True

но указав c.TerminalInteractiveShell.log_output = True кажется, не влияет

1 ответ

Решение

Там есть -o вариант для %logstart:

-o: log also IPython's output.  In this mode, all commands which
  generate an Out[NN] prompt are recorded to the logfile, right after
  their corresponding input line.  The output lines are always
  prepended with a '#[Out]# ' marker, so that the log remains valid
  Python code.

ДОБАВЛЕНИЕ: Если вы находитесь в интерактивном сеансе ipython, для которого ведение журнала уже началось, вы должны сначала остановить его, а затем перезапустить:

In [1]: %logstop

In [2]: %logstart -o
Activating auto-logging. Current session state plus future input saved.
Filename       : ./ipython.py
Mode           : backup
Output logging : True
Raw input log  : False
Timestamping   : False
State          : active

Заметьте, что после перезапуска "Output Logging" теперь "True".

Другие вопросы по тегам