素材牛VIP会员
如何在 python raw_input 中使用 tab 键补全?
 陈***0  分类:Python  人气:1089  回帖:2  发布于6年前 收藏

如何在 python raw_input 中使用 tab 键补全?

 标签:python

讨论这个帖子(2)垃圾回帖将一律封号处理……

Lv6 码匠
捂***功 移动开发工程师 6年前#1

拋磚

用 readline, 以下是一個簡單的小範例:

import readline

CMD = ['foo1', 'foo2', 'bar1', 'bar2', 'exit']

def completer(text, state):
    options = [cmd for cmd in CMD if cmd.startswith(text)]
    if state < len(options):
        return options[state]
    else:
        return None

readline.parse_and_bind("tab: complete")
readline.set_completer(completer)

while True:
    cmd = raw_input('==> ')
    if cmd=='exit':
        break
    print(cmd)

測試:

==> <TAB><TAB>
bar1  bar2  exit  foo1  foo2
==> b<TAB>
==> bar
==> bar<TAB><TAB>
bar1  bar2  
==> bar1
bar1
==> exit

  • python - readline

  • GNU Readline Library


引玉

其實我沒有完全理解 completer 的作用原理, 尤其是 state 的部分, 希望有高手可以闡釋, 十分感謝!


我回答過的問題: Python-QA

Lv4 码徒
贰***兄 页面重构设计 6年前#2

http://stackoverflow.com/ques...
这段代码写得不错,如果要补全第二个参数要自己写 complete 函数类似于下面的代码。

    def complete_cd(self, *args):
        cwd = CURRENT_PATH
        results = [c for c in os.listdir(cwd) if c.startswith(args[0][0])]
        return results

ps:官方文档有说:

    Note The underlying Readline library API may be implemented by the libedit library instead of GNU readline. On MacOS X the readline module detects which library is being used at run time.
    The configuration file for libedit is different from that of GNU readline. If you programmatically load configuration strings you can check for the text “libedit” in readline.__doc__ to differentiate between GNU readline and libedit.

所以在 MAC 和 Windows 上面不适用

如果要在全平台使用(没有测试 Windows),使用如下加载代码

try:
    import readline
except ImportError:
    try:
        import pyreadline as readline
        # throw open a browser if we fail both readline and pyreadline
    except ImportError:
        import webbrowser
        webbrowser.open("http://ipython.scipy.org/moin/PyReadline/Intro#line-36")
        # throw open a browser
    #pass
else:
    import rlcompleter
    if(sys.platform == 'darwin'):
        readline.parse_and_bind ("bind ^I rl_complete")
    else:
        readline.parse_and_bind("tab: complete")
 文明上网,理性发言!   😉 阿里云幸运券,戳我领取