vote up 18 vote down star
10

I have done a little django development but it has all been in a text editor. I was curious what more advanced development tools others are using in their django development. I am used to using Visual Studio for development and really like the intellisense, code completion, and file organization it provides and would like to find something (or a combination of tools) that would provide some of this in the django/python environment.

flag
maybe this should be a community wiki? – skyl Dec 8 at 18:47
Good suggestion! – Adam Carr Dec 9 at 6:43

14 Answers

vote up 11 vote down check

I use Eclipse and a plain vanilla PyDev http://pydev.sourceforge.net/. There isn't any specific Django functionality. The best I came up with was setting up a run profile to run the development web server. If you add the web tools project (WTP), you'll get syntax highlighting in your templates but nothing that relates to the specific template language. Pydev is a decent plugin and if you are already familiar with Eclipse and use it for other projects it is a good way to go. I recall Netbeans starting to get Python support but I have no idea where that is right now. Lots of people rave about Netbeans 6 but in the Java world Eclipse still reigns as the king of the OSS IDEs.

link|flag
vote up 13 vote down

I use Komodo Edit. Check out the Open Komodo Edit.

link|flag
Also checkout code.google.com/p/django-komodo-kit – Sridhar Ratnakumar Oct 4 at 2:08
vote up 6 vote down

Eclipse has the PyDev plugin for python development. Unfortunately, I'm not sure how well it integrates with Django.

link|flag
It worked just fine when I tried it. – epochwolf Oct 6 '08 at 16:36
vote up 6 vote down

I am beginning to enjoy working with Aptana Studios + PyDev (and other) plugins for all sorts of web application development. As you can tell, it is built on top of the powerful Eclipse, but is tailor-designed to focus on web application development.

link|flag
vote up 5 vote down

As far as I know there is not "an IDE" for Django but there are some IDE's that support Django right out of the box, specifically the django syntax for templates, the name is komodo and it has a lot of features but it's not cheap, if you are not worried about source control or debugging then there is a free version called komodo edit

link|flag
vote up 4 vote down

I use Kate (KDE Advanced Text Editor) for most of my development, including Django. It has both a Python and Django Templates syntax higlighting. I switch to Quanta+ when a significant part of the project involves HTML.

Since it uses Kate's KPart, it's just as good for editing the Python parts, and for the HTML templates i have the whole Quanta+ tools, while still highligting Django-specific tags.

link|flag
vote up 2 vote down

I've also had good results with Eclipse and Pydev. Although I still require a shell opened to the project directory to run manage.py commands. I've also been using it with the Bazaar plugin for revision control and syncing code with the server.

link|flag
vote up 1 vote down

I really like E Texteditor as it's pretty much a "port" of Textmate to Windows. Obviously Django being based on Python the support for auto-completion is limited (there's nothing like intellisense that would require a dedicated IDE with knowledge of the intricacies of each library), but the use of snippets and "word-completion" helps a lot. Also, it has support for both Django Python files and the template files, and CSS, HTML, etc.

I've been using E for a long time now, and I can tell you that it beats both PyDev and Komodo Edit hands down when it comes to working with Django. For other kinds of projects, PyDev and Komodo might be more adequate though.

link|flag
vim's omnicompletion is pretty good. – skyl Dec 8 at 18:53
vote up 1 vote down

I use Kate as well. Kate's simplicity is its biggest feature. It doesn't get in your way. (This is of course highly subjective opinion)

Kate includes a Python code browser plugin. But it isn't useful IMO. No automatic updates when you change the code/view. Also when you update, the whle tree is collapsed and you have to expand it again yourself. Too many clicks.

Instead, I use the Source Browser plugin that comes with Pâté. It does cause Kate to freeze temporarily sometimes, but no crashes or anything of that sort so far.

Shameless blog plug: more on using Django with Kate(Pâté)

link|flag
vote up 1 vote down

Editra supports Django Template Language syntax highlighting. You can configure it either as a better Notepad or a basic IDE.

link|flag
vote up 1 vote down

Well I've been using my own one. And very selfish at that as I haven't released it publicly yet :)

I'm planning to release it as shareware soon but in the meantime you can visit the homepage and subscribe for the release notification.

alt text

link|flag
vote up 1 vote down

Wow, I thought everyone used vim. I've started a repo to have many branches with great configs and features:

http://github.com/skyl/vim-config-python-ide

If you fork and add your own, I will be your best friend.

link|flag
vote up 0 vote down

I have consistently used VIM or kate, but would prefer a full blown IDE. Given it is not as heavy as visual studio.

link|flag
vote up 0 vote down

I made a blog post about Netbean's new and upcoming support for django. When paired with its already fantastic python, js, html and css support, its a strong candidate in my mind!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.