37

有没有办法告诉交互式 Python shell 保留会话之间执行命令的历史记录?

在会话运行时,在执行命令后,我可以向上箭头并访问所述命令,我只是想知道是否有某种方法可以保存一定数量的这些命令,直到我下次使用 Python shell .

这将非常有用,因为我发现自己在会话中重用了我在上次会话结束时使用的命令。

4

3 回答 3

42

当然可以,只需一个小的启动脚本。来自python 教程中的交互式输入编辑和历史替换:

# Add auto-completion and a stored history file of commands to your Python
# interactive interpreter. Requires Python 2.0+, readline. Autocomplete is
# bound to the Esc key by default (you can change it - see readline docs).
#
# Store the file in ~/.pystartup, and set an environment variable to point
# to it:  "export PYTHONSTARTUP=~/.pystartup" in bash.

import atexit
import os
import readline
import rlcompleter

historyPath = os.path.expanduser("~/.pyhistory")

def save_history(historyPath=historyPath):
    import readline
    readline.write_history_file(historyPath)

if os.path.exists(historyPath):
    readline.read_history_file(historyPath)

atexit.register(save_history)
del os, atexit, readline, rlcompleter, save_history, historyPath

从 Python 3.4 开始,交互式解释器支持自动完成和开箱即用的历史记录

现在,在支持readline. 默认情况下也启用历史记录,并写入(和读取)文件~/.python-history

于 2012-09-08T20:47:13.417 回答
17

使用IPython

无论如何,您应该这样做,因为它太棒了:持久命令历史只是它比普通 Python shell 更好的众多方式之一。

于 2012-09-08T20:45:16.723 回答
1

在使用虚拟环境时,这对于 Python 3 也是必需的。

我使用了一个稍微不同的版本,它为每个虚拟环境保留一个历史文件:

import sys

if sys.version_info >= (3, 0) and hasattr(sys, 'real_prefix'):  # in a VirtualEnv
    import atexit, os, readline, sys

    PYTHON_HISTORY_FILE = os.path.join(os.environ['VIRTUAL_ENV'], '.python_history')
    if os.path.exists(PYTHON_HISTORY_FILE):
        readline.read_history_file(PYTHON_HISTORY_FILE)
    atexit.register(readline.write_history_file, PYTHON_HISTORY_FILE)
于 2018-07-17T08:22:42.173 回答