我正在尝试在Windows上为我正在编写的命令行用户界面实现任意自动完成。受到that question的第一个答案的启发,我尝试运行在那里编写的脚本,然后才意识到我在Windows上并且需要使用pyreadline
而不是readline
。经过一些试验后,我最终得到了下面的脚本,它基本上是一个复制粘贴,但是使用了pyreader初始化:
from pyreadline import Readline
readline = Readline()
class MyCompleter(object): # Custom completer
def __init__(self, options):
self.options = sorted(options)
def complete(self, text, state):
if state == 0: # on first trigger, build possible matches
if text: # cache matches (entries that start with entered text)
self.matches = [s for s in self.options
if s and s.startswith(text)]
else: # no text entered, all matches possible
self.matches = self.options[:]
# return match indexed by state
try:
return self.matches[state]
except IndexError:
return None
completer = MyCompleter(["hello", "hi", "how are you", "goodbye", "great"])
readline.set_completer(completer.complete)
readline.parse_and_bind('tab: complete')
input = raw_input("Input: ")
print "You entered", input
问题是,当我尝试运行该脚本时,<TAB>
不会导致自动完成。
如何让<TAB>
执行自动完成行为?
最初我虽然搞砸了pyreadeline
与readline
相比不同的完成设置和绑定初始化,但是从pyreadline
文档中的模块代码和示例看,它们看起来是相同。
我试图在Windows 10中的2.7 Anaconda Python发行版上执行它,如果这有用的话。
答案 0 :(得分:0)
面临同样的问题(即使 pyreadline
完成在 Windows 上不起作用)我偶然发现了一个 blog post 介绍了一些 Python 库。阅读后,我开始使用 Python Prompt Toolkit 将 completion feature 添加到我的脚本中。