python tab completion in windows - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T21:34:30Zhttp://stackoverflow.com/feeds/question/1081405http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081405/python-tab-completion-in-windows1python tab completion in windowsNathan2009-07-04T03:11:37Z2009-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#10814161Answer by sunqiang for python tab completion in windowssunqiang2009-07-04T03:19:09Z2009-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#10815860Answer by David Cournapeau for python tab completion in windowsDavid Cournapeau2009-07-04T05:36:22Z2009-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#12559750Answer by system PAUSE for python tab completion in windowssystem PAUSE2009-08-10T16:51:00Z2009-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>