欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python实现定制交互式命令行的方法

程序员文章站 2023-11-30 19:29:28
python的交互式命令行可通过启动文件来配置。 当python启动时,会查找环境变量pythonstartup,并且执行该变量中所指定文件里的程序代码。该指定文件名称以...

python的交互式命令行可通过启动文件来配置。

当python启动时,会查找环境变量pythonstartup,并且执行该变量中所指定文件里的程序代码。该指定文件名称以及地址可以是随意的。按tab键时会自动补全内容和命令历史。这对命令行的有效增强,而这些工具则是基于readline模块实现的(这需要readline程序库辅助实现)。

此处为大家举一个简单的启动脚本文件例子,它为python命令行添加了按键自动补全内容和历史命令功能。

[python@python ~]$ cat .pythonstartup
import readline
import rlcompleter
import atexit
import os
#tab completion
readline.parse_and_bind('tab: complete')
#history file
histfile = os.path.join(os.environ['home'], '.pythonhistory')
try:
  readline.read_history_file(histfile)
except ioerror:
  pass
atexit.register(readline.write_history_file,histfile)
del os,histfile,readline,rlcompleter

设置环境变量

[python@python ~]$ cat .bash_profile|grep python
export pythonstartup=/home/python/.pythonstartup

验证tab键补全和历史命令查看。

[python@python ~]$ python
python 2.7.5 (default, oct 6 2013, 10:45:13)
[gcc 4.1.2 20080704 (red hat 4.1.2-44)] on linux2
type "help", "copyright", "credits" or "license" for more information.
>>> import md5
>>> md5.
md5.__class__(     md5.__getattribute__( md5.__reduce__(    md5.__subclasshook__(
md5.__delattr__(    md5.__hash__(     md5.__reduce_ex__(   md5.blocksize
md5.__dict__      md5.__init__(     md5.__repr__(     md5.digest_size
md5.__doc__      md5.__name__      md5.__setattr__(    md5.md5(
md5.__file__      md5.__new__(      md5.__sizeof__(    md5.new(
md5.__format__(    md5.__package__    md5.__str__(      md5.warnings
>>> import os
>>> import md5

注意:如果在make的时候出现:

python build finished, but the necessary bits to build these modules were not found:
_tkinter            gdbm      readline      sunaudiodev

如果对此忽略了的话,import readline会报错。表示没有指定模块!

这里是缺少指定包:

redhat:   readline-devel.xxx.rpm

安装上重新编译执行,问题即可得到解决。