285

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.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Adam Carr
  • 2,986
  • 7
  • 31
  • 38

32 Answers32

196

There is PyCharm from JetBrains which supports Django and Google Apps. It looks promising.

Note: You need to buy a license for the Professional version if you want Django support. The Community version desn't support Django.

Kotlinboy
  • 3,725
  • 4
  • 16
  • 27
idursun
  • 6,261
  • 1
  • 37
  • 51
  • 4
    PyCharm has now been released in a stable version. The integrated Django and Python shells work well and autocomplete works like a charm (PyCharm after all ;). Unfortunately, do not expect autocomplete from your templates yet. – Radek Oct 20 '10 at 21:58
  • I'm using Pycharm 1.0.1 and loving it, complete with Django template intellisense. – jaketrent Nov 30 '10 at 15:15
  • I've been loving pycharm so far. 1.0 is a great start, but certainly not a full featured suite yet. – bdd Dec 08 '10 at 20:25
  • New PyCharm is now available with lot of useful changes/new features: http://blog.jetbrains.com/pycharm/2013/02/pycharm-2-7-is-available-back-to-core-python/ – Lukasz Koziara Feb 08 '13 at 14:17
  • 6
    PyCharm is really complete. Recommended. The bad news is that you need a license to use it... – Salvatorelab Sep 23 '13 at 09:59
  • 22
    the community edition does not support django, you have to get the professional edition :( – Syler Oct 08 '13 at 05:20
  • Concerning the previous comment, I'm currently using the community edition to test/debug my Django model and it works great. – Bezewy Jun 02 '15 at 17:56
  • 1
    JetBrains now has an education program, where students doing noncommercial development can use all of their professional tools for free for a year (pretty sure this can be renewed, however). A great way to get a taste before you buy the full license. https://www.jetbrains.com/student/ – dcgoss Aug 15 '15 at 18:54
112

I use Eclipse and a plain vanilla PyDev. 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.

Update: LiClipse is also fantastic for Django.
enter image description here
Install it, use this method to get the icon into Ubuntu's menu. Start LiClipse and in File > New > Project ..., select PyDev and PyDev Django project. You may have to set up your Python interpreter etc, but that you'll be able to figure out on your own. Once the Django project is created, you can right click on the project and the menu will have a "Django" option, which allows various things like creating a Django app or running migrations etc. LiClipse is good because it consumes far lesser memory than PyCharm and supports refactoring and autocomplete reasonably well.

Nav
  • 19,885
  • 27
  • 92
  • 135
Sam Corder
  • 5,374
  • 3
  • 25
  • 30
48

I use Vim:

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

[UPDATE]

Sublime Text 2 is pretty awesome. It supports a lot of Vim commands if you want them: Vintage Mode

It has a nice package manager: http://wbond.net/sublime_packages/package_control

I use these packages so far:

Djaneiro

SetDjangoSyntax

CoffeeScript

SublimeLinter

Theme - Soda

SideBarEnhancements

I still love Vim but ... did I mention that Sublime Text plugins are written in Python?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Skylar Saveland
  • 11,116
  • 9
  • 75
  • 91
43

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

S.Lott
  • 384,516
  • 81
  • 508
  • 779
32

Sublime

sub

Neil
  • 8,925
  • 10
  • 44
  • 49
  • 1
    Yup, throw in a plugin here and there and it's a perfect environment for Django development. – Filip Dupanović Mar 12 '12 at 16:17
  • 4
    A few handy plugins: Djanerio for autocompletion, Django DocSearch for doc search (option-shift-D) – Philip007 May 12 '13 at 03:53
  • 1
    ST2 is awesome but no match for Pycharm. However for various reasons people prefer ST2 (light, extensible) so here's a list of useful plugins for ST2+django/python to get it going : http://stackoverflow.com/q/18914386/781695 – user Sep 20 '13 at 19:37
  • Sublime + predawn theme is really nice http://jamiewilson.io/predawn/ – Neil Aug 10 '14 at 02:39
  • For those looking for a free/open source solution, GitHub's [Atom](https://atom.io/) or Adobe's [Brackets](http://brackets.io/) may be interesting alternatives to Sublime. – Ariel Aug 05 '15 at 14:53
  • Can you refactor with sublimetext ? It's not an IDE .. – amdev Nov 23 '17 at 08:22
22

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.

ayaz
  • 10,406
  • 6
  • 33
  • 48
17

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.

Update 2013: Unfortunately, Quanta+ has been dead for years now, and there's no hope that it will ever be resurrected. Also, there's no other usable HTML editor out there, so it's Kate all the time now.

Javier
  • 60,510
  • 8
  • 78
  • 126
16

NetBeans for Python is my current favorite (lighter and so much easier to install than Eclipse I found). Supports simple refactoring, autocompletion, errors/warnings...

Eclipse Aptana PyDev probably one of the most complete free IDE nowadays (haven't tested a lot)

Wingware Python IDE a commercial IDE, which has some Django-specific project setup features the ability to debug Django template files.

IntelliJ IDEA Ultimate Edition another commercial IDE which has also a plugin for Python that is under heavy development. I saw some demo which look very promising on the auto-completion (for templates and Python).

Vim which I still use a small touch-fix application. See also: Extra tweaks for Django.

Wingware
  • 896
  • 5
  • 12
Wernight
  • 36,122
  • 25
  • 118
  • 131
  • IntelliJ Python plugin seem to be only available in the Ultimate edition. – Wernight Dec 17 '09 at 11:42
  • Even I used Netbeans until I found LiClipse: https://nrecursions.blogspot.com/2019/03/which-ide-to-choose-for-python.html – Nav Mar 25 '21 at 08:01
16

PyCharm. It is best the IDE for Python,Django, and web development I've tried so far. It is totally worth the money.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Lud
  • 1
  • 1
  • 2
15

You guys should checkout PyCharm! It is the first decent Django IDE.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Nixarn
  • 1,526
  • 2
  • 15
  • 27
9

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

Keltex
  • 26,220
  • 11
  • 79
  • 111
Powerlord
  • 87,612
  • 17
  • 125
  • 175
  • I'm a big fan of Eclipse + PyDev. Works great with Django. in fact, Django projects are offered as a project type when creating something from scratch. – Mackie Messer Dec 31 '17 at 07:53
7

As far as I know there is not "an IDE" for Django, but there are some IDEs 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.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Gustavo Rubio
  • 10,209
  • 8
  • 39
  • 57
6

PyCharm, definitely. I tried them all (almost), but PyCharm is the one I found most useful for any heavy development.

For simple, one time, scripts I use whatever comes to mind (TextMate, Vim, Emacs, TextWrangler, etc., you name it).

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Ioan Ionas
  • 1
  • 1
  • 1
6

There is an actual Python extension for Visual Studio: http://pytools.codeplex.com/. It's absolutely fantastic. It feels the same as if I were coding in any native Visual Studio language. The extension is even compatabile with Django. And best of all: it's totally free. Even for Visual Studio, it only requires the Visual Studio Shell to work, which is completely free.

Jonathan Gleason
  • 4,567
  • 3
  • 17
  • 18
6

Now you can also use Visual Studio 2010. Here's how:

  • Download and install Python Tools for Visual Studio.
  • Create a new project from existing code (menu FileNewProject From Existing Code...)
  • Specify your Django project folder and use the defaults.
  • Right-click on manage.py and choose Set as Startup File.
  • In your project properties Debug tab, add "runserver" in Script Arguments.
  • You can set break points, and attach to the Python process for debugging. If you want to debug without having to "attach to process," use "runserver --noreload" in your script arguments. However, the "--noreload" means you'll have to stop and restart the Django development web server manually (to recognize your code changes).

This is a nice setup if you already use Visual Studio.

Python Tools has been updated. It has built in support for Django now.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
dalenewman
  • 1,234
  • 14
  • 18
5

I have used Eclipse with PyDev and PyCharm. PyCharm is definitely the best IDE for Django/Python I have tried. It does proper template highlighting and auto-completion for all objects. It also does cross-file referencing.

It's quite expensive, but definitely the best Django IDE I have tried. You can try a 30 day evaluation at http://www.jetbrains.com/pycharm/download/.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
user88357
  • 1
  • 1
  • 1
3

I really like E Text Editor 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 Text Editor 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.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
dguaraglia
  • 5,774
  • 1
  • 26
  • 23
3

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.

Peter Shinners
  • 3,686
  • 24
  • 24
3

Well, I've been using my own one. Recently they released an alpha version. Here it is at pfaide.com/.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
utku_karatas
  • 6,163
  • 4
  • 40
  • 52
3

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 whole 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é)

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
muhuk
  • 15,777
  • 9
  • 59
  • 98
2

If you like Vim as an editor, here are some suggestions on how to tune it (up to the point of a full fledged IDE) for Django development: http://code.djangoproject.com/wiki/UsingVimWithDjango.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Webthusiast
  • 986
  • 10
  • 16
1

Ninja-IDE.

Check this: Ninja-IDE Django Plugin

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
drj
  • 27
  • 7
1

TextMate with the Django and django-html bundles installed gives you syntax highlighting and great extensibility. It is lightweight and fun to use.

Here is a link to a code completion project for TextMate with Python (which I haven't used myself). As for "intellisense" (which I understand to be inline-doc reference), TextMate has that too.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Travis
  • 245
  • 1
  • 3
  • 8
1

The Wingware editor from http://www.wingware.com is Python-specific with very good auto-completion for Python/Django/Zope, etc.

It has a built in Python shell to run snippets (or select and run) and support for Mercurial/Git, etc. and a built-in unittest/nose/doctest test runner. It's commercial though, but as it is written in Python, it's cross platform.

I bought it a while ago, and thought it looked dorky, but I've tried them all and keep coming back. Caveat that I am a Windows guy with no Emacs or Vim skills, so leveraging that was not an option. And the Mac version requires X Window and seems to be more glitchy.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
zenWeasel
  • 1,889
  • 2
  • 22
  • 27
  • As for me being an emacs guy, I can say that I really like Wing IDE's mimicking of emacs' key bindings. Keyboard macros work, and you can even use many common M-x commands. – heyman Apr 15 '10 at 09:09
  • Note that Wing 5 (currently in beta) no longer requires X11 on OS X and should look less dorky (or hopefully entirely non-dorky ;-). – Wingware May 16 '13 at 14:49
1

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

Imran
  • 87,203
  • 23
  • 98
  • 131
1

I made a blog post about NetBeans' new and upcoming support for Django. When paired with its already fantastic Python, JavaScript, HTML and CSS support, it's a strong candidate in my mind!

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
kkubasik
  • 3,684
  • 6
  • 25
  • 23
1

Geany

It is GTK2 based, fast, lightweight, available for Linux and Windows.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Roberto Rosario
  • 1,818
  • 1
  • 17
  • 31
0

The Wing IDE is a good IDE to use!

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
shen0956
  • 43
  • 1
  • 5
0

I like Eclipse + PyDev and/or eric, myself. The new version of PyDev has some pretty awesome code completion support.

Since I only use Eclipse for PyDev, I use a slim install of just the Platform Runtime Binary + PyDev + Subclipse.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Seth
  • 45,033
  • 10
  • 85
  • 120
0

TextMate, Firebug, and pdb. The latter one saved me gazillion of times :)

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Dmitry Shevchenko
  • 31,814
  • 10
  • 56
  • 62
0

Ulipad is a good one. http://code.google.com/p/ulipad/

Wouter Dorgelo
  • 11,770
  • 11
  • 62
  • 80
CppLearner
  • 16,273
  • 32
  • 108
  • 163
0

I have consistently used Vim or Kate, but I would prefer a full-blown IDE. Given it is not as heavy as Visual Studio.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131