I find myself frequently using Python's interpreter to work with databases, files, etc -- basically a lot of manual formatting of semi-structured data. I don't properly save and clean up the useful bits as often as I would like. Is there a way to save my input into the shell (db connections, variable assignments, little for loops and bits of logic) -- some history of the interactive session? If I use something like script I get too much stdout noise. I don't really need to pickle all the objects -- though if there is a solution that does that, it would be OK. Ideally I would just be left with a script that ran as the one I created interactively, and I could just delete the bits I didn't need. Is there a package that does this, or a DIY approach?
当前回答
有%history魔法用于打印和保存输入历史记录(可选的还有输出)。
将当前会话存储到my_history.py文件中:
>>> %hist -f my_history.py
History IPython存储您输入的命令和它产生的结果。您可以使用上下方向键轻松地浏览以前的命令,或者以更复杂的方式访问历史记录。
您可以使用%history神奇函数来检查过去的输入和输出。以前会话的输入历史保存在数据库中,可以配置IPython以保存输出历史。
其他几个神奇的功能可以使用您的输入历史,包括%编辑,%重新运行,%召回,%宏,%保存和%pastebin。你可以使用标准格式来引用行:
%pastebin 3 18-20 ~1/1-5
这将占用当前会话中的第3行和第18 - 20行,以及前一会话中的第1-5行。
看到%历史吗?查看Docstring和更多示例。
另外,一定要探索%store magic在IPython中实现变量轻量级持久性的功能。
在IPython的数据库中存储变量、别名和宏。
d = {'a': 1, 'b': 2}
%store d # stores the variable
del d
%store -r d # Refresh the variable from IPython's database.
>>> d
{'a': 1, 'b': 2}
要在启动时自动恢复存储的变量,ipython_config.py中的specificc . storemagic .autorestore = True。
其他回答
我不得不努力寻找答案,我对iPython环境非常陌生。
这是可行的
如果你的iPython会话是这样的
In [1] : import numpy as np
....
In [135]: counter=collections.Counter(mapusercluster[3])
In [136]: counter
Out[136]: Counter({2: 700, 0: 351, 1: 233})
你想保存从1到135的行,然后在同一个ipython会话上使用这个命令
In [137]: %save test.py 1-135
这将把你所有的python语句保存在当前目录下的test.py文件中(你启动ipython的地方)。
来自安德鲁·琼斯的网站(存档):
import readline
readline.write_history_file('/home/ahj/history')
如果你正在使用IPython,你可以使用神奇的%history函数和-f参数p.e将你之前的所有命令保存到一个文件中:
%history -f /tmp/history.py
我想建议另一种在linux上通过tmux维护python会话的方法。运行tmux,将自己附加到所打开的会话(如果直接打开后没有附加)。执行python并在它上做任何事情。然后从会话中分离。从tmux会话分离并不会关闭会话。会议仍然开放。
这种方法的优点: 您可以从任何其他设备连接到此会话(如果您可以SSH您的pc)
这种方法的缺点: 在python解释器真正存在之前,此方法不会放弃被打开的python会话所使用的资源。
除了IPython之外,类似的实用程序bpython还有一个“将您输入的代码保存到文件中”的特性
推荐文章
- Pandas和NumPy+SciPy在Python中的区别是什么?
- 将列表转换为集合会改变元素的顺序
- 如何在matplotlib更新一个情节
- TypeError: ` NoneType `对象在Python中不可迭代
- 如何在Vim注释掉一个Python代码块
- python标准库中的装饰符(特别是@deprecated)
- 如何从外部访问本地Django web服务器
- 删除字符串的最后3个字符
- 在python中执行no-op的标准方法是什么?
- 如何从生成器构建numpy数组?
- 什么时候我应该(不)想要在我的代码中使用熊猫apply() ?
- 数据类vs类型。NamedTuple主要用例
- 如何从macOS完全卸载蟒蛇
- 是否有可能键入提示一个lambda函数?
- 'dict'对象没有has_key属性