Python命令添加Tab鍵自動補全

來源:互聯網
上載者:User

標籤:python命令自動補全

環境介紹
OS:RHEL 5.5
Python版本:2.7.6
在使用linux命令的時候我們習慣使用下Tab鍵,在python下我們也可以實作類別似的功能。
類似Linix shell的TAB功能,Python也可以實現的!
具體實現過程如下:
1.編寫python指令碼
$ cat  tab_enable.py
#!/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
2.呼叫指令碼
 
將指令碼放置在python預設模組,路徑下,
/usr/local/python27/lib/python2.7/tab_enable.py


開始調用
>>> import tab_enable
>>> import os
>>> os.<Tab>

備忘:
1.安裝readline時報錯gcc: readline/libreadline.a: No such file or directory,解決辦法
[[email protected] readline-6.2.4.1]#yum -y install readline-devel
[[email protected] readline-6.2.4.1]#yum -y install patch
[[email protected] readline-6.2.4.1]# python setup.py install

Python命令添加Tab鍵自動補全

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.