python tab completion in windows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:34:30Z http://stackoverflow.com/feeds/question/1081405 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081405/python-tab-completion-in-windows 1 python tab completion in windows Nathan 2009-07-04T03:11:37Z 2009-08-10T16:51:00Z <p>I'm writing a cross-platform shell like program in python and I'd like to add custom tab-completion actions. On Unix systems I can use the built-in readline module and use code like the following to specify a list of possible completions when I hit the TAB key:</p> <pre><code>import readline readline.parse_and_bind( 'tab: complete' ) readline.set_completer( ... ) </code></pre> <p>How can I do this on Windows? I'd like to avoid relying on 3rd-party packages if possible. If no solution exists is it possible to simply trap TAB key press so that I can implement my own from scratch?</p> http://stackoverflow.com/questions/1081405/python-tab-completion-in-windows/1081416#1081416 1 Answer by sunqiang for python tab completion in windows sunqiang 2009-07-04T03:19:09Z 2009-07-04T03:19:09Z <p>Do u have a look at <a href="http://ipython.scipy.org/moin/PyReadline/Intro" rel="nofollow">PyReadline: a ctypes-based readline for Windows</a>? Although 3rd-party packages is NOT your option, maybe it's useful for build one's own, isn't it:).</p> http://stackoverflow.com/questions/1081405/python-tab-completion-in-windows/1081586#1081586 0 Answer by David Cournapeau for python tab completion in windows David Cournapeau 2009-07-04T05:36:22Z 2009-07-04T05:36:22Z <p>you could look at how <a href="http://ipython.scipy.org/" rel="nofollow">ipython</a> does it with pyreadline as well, maybe </p> http://stackoverflow.com/questions/1081405/python-tab-completion-in-windows/1255975#1255975 0 Answer by system PAUSE for python tab completion in windows system PAUSE 2009-08-10T16:51:00Z 2009-08-10T16:51:00Z <p>Another possibility to check out is <a href="http://newcenturycomputers.net/projects/readline.html" rel="nofollow">readline.py</a>.</p>