Re: Good Python IDE
On 01/06/2013 05:45 AM, Sourabh Mhaisekar wrote: Hello All, I am recently started couple of projects in Python, one in Python GTK > and one in Python Qt. I want a good IDE (For Windows ) for Python which > gives support for Python as well as PyGtk and PyQt. Features I am looking for * Support for Core Python Auto-completion. * Support for PyGtk and PyQt * Support for either Bazaar (preferred) or CVS Thanks ! - Sourabh I develop only under GNU/Linux (using Vim, with some plugins like python-jedi and supertab for autocompletion, Gundo for undo management in a *very* smart way, etc..), but in the recent past I tried various IDEs. They're all ugly and/or cumbersome, but it seemed to me that the less ugly maybe is PyCharm, you could try that. -- http://mail.python.org/mailman/listinfo/python-list
Re: Good Python IDE
On 01/06/2013 11:13 PM, Tim Johnson wrote: Now I use vim for all of my work. I pretty-much hand-rolled my own IDE, which is typical of vimmers. I did like you, too. I use vim for everything: coding in python, django, js, html, C/C++, bash, even email (inside mutt, of course). Start with an empty ~/.vimrc, and then build up the configuration day by day, adding one single plugin at a time, driven by your daily needs, it's the better thing to do IMHO. Thus vim becomes a full fledged IDE for everything, and it does it *your* way, not *its* way. BTW, vim is available also under Windows. -- http://mail.python.org/mailman/listinfo/python-list
Re: The best, friendly and easy use Python Editor.
On 01/24/2013 04:51 PM, John Gordon wrote: In Sharwan Joram writes: use vim. He said he wanted autocomplete. Does Vim have that? Vim has everything, you just need a bunch of plugins. I code mainly in python and django, and I use these plugins (among others): powerline (status bar indicating git branch, etc..) syntastic (support for pep8, flake8, pyflakes, etc..) ctrlp (fuzzy search for filenames) jedi (*awesome* python smart autocompletion) tagbar (support for ctags, tags in a side window, jump around, etc) fugitive (git with vim commands, very useful) nerdcommenter (smart comment management) nerdtree (filesystem management, tree of files, etc) snipmate (snippets and autoexpanding of boilerplates) gundo (undo management - vim has a smarter-than-others undo system) supertab (autocomplete everything with TAB, smartly depending on language and context). Is this enough? :-) I can continue, but I think that, just to start, is enough. Vim wins. -- http://mail.python.org/mailman/listinfo/python-list
Re: The best, friendly and easy use Python Editor.
On 01/25/2013 06:47 PM, Michael Torrie wrote: On 01/24/2013 02:14 PM, Tetsuya wrote: Vim has everything, you just need a bunch of plugins. [...] jedi (*awesome* python smart autocompletion) [...] supertab (autocomplete everything with TAB, smartly depending on language and context). Awesome. I'm checking out these plugins right now, especially jedi and supertab. Thanks so much! ;-) you're welcome! -- http://mail.python.org/mailman/listinfo/python-list