12

IPython のログ機能に出力と入力を含める方法はありますか?

現在、ログ ファイルは次のようになっています。

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

もう1行表示させたいのですが:

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

(これ#は、IPython の機能を壊さないようにするために必要であると想定しているためlogplayです)

これは IPython ノートブックを使用して可能だと思いますが、これが必要な少なくとも 1 台のマシンでは、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しても影響はないようです

4

1 に答える 1

12

次の-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」になっていることを確認します。

于 2012-08-06T19:05:24.570 に答える