Python实现Tab自动补全和历史命令管理的方法


Posted in Python onMarch 12, 2015

本文实例讲述了Python实现Tab自动补全和历史命令管理的方法。分享给大家供大家参考。具体分析如下:

Python的startup文件,即环境变量 PYTHONSTARTUP 对应的文件

1. 为readline添加tab键自动补全的功能

2. 像Shell一样管理历史命令

代码如下:

import rlcompleter

import readline

import atexit

import os

# http://stackoverflow.com/questions/7116038/python-tab-completion-mac-osx-10-7-lion

if 'libedit' in readline.__doc__:

    readline.parse_and_bind('bind ^I rl_complete')

else:

    readline.parse_and_bind('tab: complete')

histfile = os.path.join(os.environ['HOME'], '.pyhist')

try:

    readline.read_history_file(histfile)

except IOError:

    pass

atexit.register(readline.write_history_file, histfile)

del readline, rlcompleter, histfile, os

希望本文所述对大家的Python程序设计有所帮助。

一。这个方法可以修改shell命令行的自动补全
1.获取python目录【我使用的是64位ubuntu系统】

[~$]python
Python 2.7.3 (default, Apr 10 2013, 06:20:15) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-linux2', '/usr/lib/python2.7/lib-tk', '/usr/lib/python2.7/lib-old', 
'/usr/lib/python2.7/lib-dynload', '/usr/local/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages', 
'/usr/lib/python2.7/dist-packages/PIL', '/usr/lib/python2.7/dist-packages/gst-0.10', '/usr/lib/python2.7/dist-packages/gtk-2.0',
'/usr/lib/python2.7/dist-packages/ubuntu-sso-client', '/usr/lib/python2.7/dist-packages/ubuntuone-client', 
'/usr/lib/python2.7/dist-packages/ubuntuone-control-panel', '/usr/lib/python2.7/dist-packages/ubuntuone-couch', 
'/usr/lib/python2.7/dist-packages/ubuntuone-installer', '/usr/lib/python2.7/dist-packages/ubuntuone-storage-protocol']
>>>

从上面看出python在我电脑上的路径是 /usr/lib/python2.7

2.切换至该目录写个startup.py的脚本,脚本目录就是处理python中<tab>事件,脚本内容如下

#!/usr/bin/python 
# python startup file 
     
import sys 
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

3.切换至自己主目录

[/usr/lib/python2.7$]cd 

[~$]vi .bashrc

4. 增加环境变量

#for python

export PYTHONSTARTUP=/usr/lib/python2.7/startup.py

5.配置环境变量生效

[~$]source .bashrc

PYTHONSTARTUP是什么东西呢?

If this is the name of a readable file, the Python commands in that file are executed before the first prompt 

is displayed in interactive mode.  The file is executed in the same name space where interactive commands are

executed so that  objects defined  or  imported in it can be used without qualification in the interactive session.  

You can also change the prompts sys.ps1 and sys.ps2 in this file.

二。这个方法能在VIM中自动补全

    1. 下载插件:
       下载地址:https://3water.com/softs/305586.html

   2.拷贝致相应的目录

unzip  pydiction-1.2.1.zip

cp python_pydiction.vim  /usr/share/vim/vim73/ftplugin

mkdir  /usr/share/vim/vim73/pydiction

cp complete-dict  /usr/share/vim/vim73/pydiction/

cp pydiction.py  /usr/share/vim/vim73/pydiction/

 3.修改vim配置文件

 

 let g:pydiction_location = '/usr/share/vim/vim73/pydiction/complete-dict'

let g:pydiction_menu_height = 20

 

 OK,测试是否生效吧

Python 相关文章推荐
python实现从web抓取文档的方法
Sep 26 Python
python实现可以断点续传和并发的ftp程序
Sep 13 Python
Python切换pip安装源的方法详解
Nov 18 Python
Python3导入自定义模块的三种方法详解
Apr 13 Python
python selenium自动上传有赞单号的操作方法
Jul 05 Python
Python实现查询某个目录下修改时间最新的文件示例
Aug 29 Python
Python对接六大主流数据库(只需三步)
Jul 31 Python
Python利用PyExecJS库执行JS函数的案例分析
Dec 18 Python
python GUI库图形界面开发之PyQt5滑块条控件QSlider详细使用方法与实例
Feb 28 Python
python如何写出表白程序
Jun 01 Python
Django celery异步任务实现代码示例
Nov 26 Python
Python装饰器的练习题
Nov 23 Python
Python实现将n个点均匀地分布在球面上的方法
Mar 12 #Python
Python求解平方根的方法
Mar 11 #Python
python自动格式化json文件的方法
Mar 11 #Python
python处理csv数据的方法
Mar 11 #Python
python模拟鼠标拖动操作的方法
Mar 11 #Python
Python创建系统目录的方法
Mar 11 #Python
Python实现从订阅源下载图片的方法
Mar 11 #Python
You might like
PHP把网页保存为word文件的三种方法
2014/04/01 PHP
php写app接口并返回json数据的实例(分享)
2017/05/20 PHP
PHP PDOStatement::bindParam讲解
2019/01/30 PHP
PHP 8新特性简介
2020/08/18 PHP
Javascript Select操作大集合
2009/05/26 Javascript
页面图片浮动左右滑动效果的简单实现案例
2014/02/10 Javascript
提高NodeJS中SSL服务的性能
2014/07/15 NodeJs
nodejs中实现阻塞实例
2015/03/24 NodeJs
浏览器兼容的JS写法总结
2016/04/27 Javascript
基于jQuery倒计时插件实现团购秒杀效果
2016/05/13 Javascript
jQuery实现的动态文字变化输出效果示例【附演示与demo源码下载】
2017/03/24 jQuery
js和jquery中获取非行间样式
2017/05/05 jQuery
基于vue2.0实现的级联选择器
2017/06/09 Javascript
React复制到剪贴板的示例代码
2017/08/22 Javascript
jQuery选择器之属性筛选选择器用法详解
2017/09/19 jQuery
BootStrap点击保存后实现模态框自动关闭的思路(模态框)
2017/09/26 Javascript
Vue2.5通过json文件读取数据的方法
2018/02/27 Javascript
ES6之模版字符串的具体使用
2018/05/17 Javascript
解决vue axios的封装 请求状态的错误提示问题
2018/09/25 Javascript
解决在layer.open中使用时间控件laydate失败的问题
2019/09/11 Javascript
CKEditor扩展插件:自动排版功能autoformat插件实现方法详解
2020/02/06 Javascript
[01:06:54]DOTA2-DPC中国联赛 正赛 RNG vs Dragon BO3 第一场 1月24日
2021/03/11 DOTA
在Python中操作时间之strptime()方法的使用
2020/12/30 Python
关于pip的安装,更新,卸载模块以及使用方法(详解)
2017/05/19 Python
今天 平安夜 Python 送你一顶圣诞帽 @微信官方
2017/12/25 Python
对python的bytes类型数据split分割切片方法
2018/12/04 Python
python 在指定范围内随机生成不重复的n个数实例
2019/01/28 Python
python列表返回重复数据的下标
2020/02/10 Python
python 实现围棋游戏(纯tkinter gui)
2020/11/13 Python
写一个在SQL Server创建表的SQL语句
2012/03/10 面试题
领导班子整改方案和个人整改措施
2014/10/25 职场文书
2014年置业顾问工作总结
2014/11/17 职场文书
2015年幼儿园元旦亲子活动方案
2014/12/09 职场文书
初中体育课教学反思
2016/02/16 职场文书
辞职信怎么写?
2019/05/21 职场文书
导游词之广东佛山(南风古灶)
2019/09/24 职场文书