This post is from the early days of Stack Overflow, and while we recognize its historical significance, we also recognize that the current community of users will likely close similar posts. Please feel free to read and learn from this post, but refrain from creating similar posts just because this one exists.

I'm interested in learning a web framework. The two big ones, as I gather, are Rails and Django. Which one is better/faster? Is one better designed or more logically consistent than the other? Is there another framework I should look into? How easy is it to set up and administer a Rails or Django server, and how easy is it to find a shared hosting plan?

To give a little background, the websites I'm currently used to making are in straight PHP (no framework) and I'd like to be able to manage some of the complexity that comes from feature creep. Outputting HTML with echo becomes a lot less fun the more you have to customize it. In addition, I don't know either Ruby or Python so I'm free to go either way.

note: I'm not interested in ASP. I'd like to develop on a Mac and deploy to Linux/FreeBSD and I don't think that ASP fits the bill.


To everyone that's replied so far: thank you! Choosing a web framework can be a difficult thing, so I'll try to narrow down what I would like to do.

First, I would like to build small, custom sites (hard to call them "apps") that serve data from a database, and optionally an administrative interface to manage everything behind the scenes. As an example, I have a website for my grandmother to showcase her artwork built in PHP. I've spent more time on the backend than the front end to enable her to reorder, relabel, and reprice her artwork as well as upload an image, tag it, and have it scaled and appear on her site.

I notice both frameworks generate "scaffolding" that can be used as a rudimentary admin interface; how would they handle non-textual data (like images)?

Also, when watching a Rails screencast, there was a casual mention that the framework does some singular/plural translation. This strikes me as quite odd - is this what is referred to as "magic" in Rails? If so, does Django (or any other framework) have a more sensible naming strategy?

link|improve this question
50  
Don't worry about violating the FAQ; if you don't like a question, vote it down, if you like it or find it valuable, vote it up. I find it interesting that this question has had 272 views, but no votes either way. Unless they're cancelling each other out, of course. – Charles Roper Sep 18 '08 at 19:11
1  
Not exactly worthy of me adding an answer, but worth mentioning: Django's Automatic Admin is Production Ready, and highly customizable. (I think you should continue research on both, and other frameworks). – anonymous coward Jun 2 '09 at 19:50
show 5 more comments
feedback

closed as not constructive by Bill the Lizard Jul 29 '11 at 13:05

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

36 Answers

1 2
up vote 135 down vote accepted

From my experiences, rails seemed to be more of a black box than django. You issue some command and some stuff happened and you got a basic CRUD application. You run this particular function and something happened and you got something else as an output, not knowing what the middle bits were. While this is fine for easy things, the lack of online documentation (in my experience) was a huge hindrance.

Django, on the other hand, seems to be more logical and transparent about what's going on behind the scenes. There's no "magic". Django is also one of the best documented open source projects out there.

Just came back and saw your additions:

If you want something with an extensible admin, pick Django. This is a test in which Django shines. Its clean looking and is extensible. In my experience, the Rails scaffolding is typically thrown away as you add more functionality. Its meant to get you up and going, but not necessarily something you'll see in production. That being said, lists for grandma aren't exactly production :) Reordering field and such is fairly easy, especially given the many community contributions to the admin.

When people talk about "magic" in Rails (or any other framework for that matter), they're really talking about things happening without it being immediately obvious why or how. A key example of this is Rails' find_by_* function. Its autocompleted function that you don't explicitly define, but its just "magically" there. You can find a lot more information at http://www.stephenbartholomew.co.uk/2007/6/4/is-rails-magic Purely antecdotal, but I've found that Python (and Django) itself is much more explicit where as Ruby (and Rails) rely a lot more on convention ("That's just the way its done.")

link|improve this answer
14  
An interesting perspective on things but unless I'm very mistaken part of "explicitness" you find in Django is probably due to the fact that Python is compiled and not a dynamic language and thus incapable of the kind of thing that Rails uses in Ruby to support find_by_* (i.e. method_missing). What you perceive as a strength in the framework, I perceive as a lack of power in the language behind it. Perhaps others with more familiarity with both languages can correct my misunderstanding if I have one though. – John Munsch Jun 2 '09 at 18:39
50  
Python is almost as dynamic a language as ruby. The big difference between Django and Rails is more in the philosophy of their design. Python people like libraries to be transparent and obvious how they work, while Ruby people tend to provide clean and pretty interfaces with "magic" behind the scenes. That said, both Rails and Django can be inflexible and problematic in different ways. I have yet to find a perfect way to make web apps. Hopefully Pylons will help. – Nick Retallack Jun 2 '09 at 19:40
39  
@John: completely incorrect -- Python is not compiled. See the wikipedia entry on the language for more. – alberge Aug 6 '09 at 15:09
25  
@John: Python is exactly as dynamic as Ruby is. There are implementations of both languages that compile them to various bytecode engines, but they do so to implement their dynamic features, not to remove them. A dynamic language simply adds a level of indirection to every call in its bytecode than would a static language like C# or Java. – Brandon Rhodes Aug 24 '09 at 2:15
17  
Regarding Rails "magic". See Clarke's third law: Any sufficiently advanced technology is indistinguishable from magic. – Julian Mann Jul 24 '10 at 18:06
show 8 more comments
feedback

The eternal question.

The answer: try both and see which one fits best for you.

link|improve this answer
7  
Try other as well! – Jrgns Sep 18 '08 at 12:17
89  
You can't get a sense of what these complex frameworks are about with just a few hours of dabbling. You'll just get an incorrect impression that way. Choose ONE and take the time to learn it. Otherwise, you're just messing around and wasting your time. – Ethan Mar 4 '09 at 20:35
10  
About "The answer: try both and see which one fits best for you.": That attitude is the opposite to stackoverflow objective. If there are outside more experienced developers, why not ask them? If a I have to try ever possible technology outside, I will die before take a decision. – Nisanio Oct 18 '10 at 16:22
4  
@Nisanio: Not for a question like "Rails vs Django". Experienced devs might be able to provide some higher level insights and comparisons between frameworks, but someone who has zero experience with either platform can't go wrong with giving each one even the smallest shot. @Ethan: It doesn't take much time to make a basic app on either. You won't hurt yourself by expanding your mind and making a small app on each one to see what you naturally resonate with more. You don't need to experience the "nuances" of Rails or Django to get a basic understanding of their differences. – danneu Dec 22 '10 at 8:40
show 1 more comment
feedback

I would like to quote to you from one of our blog post's comment:

One of the main reasons I jumped from RoR to Django was the documentation.

The community and the admin interface are both wonderful, but the documentation is what sold me.

If you are learning, documentation is really important. You don't want to google to find blogposts which talk about this feature in an earlier release, and broken now!

link|improve this answer
1  
There are more books about Rails than Django, and you're insinuating that the Django team/community does a better job of documenting releases than the Rails team/community. Not sure if that's actually the case, but I'd guess not. – Scott Schulthess Jul 7 '11 at 21:33
show 3 more comments
feedback

Both Ruby and Rails have more 'magic' involved. This makes development very fast when you understand the magic, but frustrating when you don't. The documentation is also scattered; some of the newer features of Rails are only mentioned in blogs, or passed along by word of mouth.

Django is extremely well documented, and Python is likewise a 'no-tricks' programming language. It's not quite as 'fun' as Ruby, but it sounds like it would probably suit your need better.

link|improve this answer
20  
I've tried both and I would say Django is more "fun" because it's easier to learn and has less "magic". – Ryan Thames Aug 13 '09 at 4:44
6  
@Ryan I agree... personally I like to understand what is happening. Learning is more fun to me than saying to myself "wow, something happened behind the scenes and then it worked!". Also, in my experience, you ALWAYS get to a point where you've got to figure out the magic. – TM. Nov 18 '09 at 22:53
6  
Um, there's nothing 'magic' about the Ruby language. There is, however, due to Ruby's metaprogramming abilities a greater potential FOR 'magic'. – banister Feb 2 '10 at 22:47
2  
@banister Agreed. The ruby programming language is a very straightforward scripting language--no more magical than python. Rails is magical because Ruby has powerful metaprogramming features. – Jarsen Mar 30 '11 at 5:19
show 3 more comments
feedback

I think it depends if you like to code in Python (Django) or in Ruby (Rails). The Frameworks are both very well designed and working well. I would prefer Rails because i like ruby :)

link|improve this answer
2  
I pick Rails for the same reason. Ruby is beautiful! – ohho Mar 25 '10 at 6:41
2  
Ruby is like the miss Universe in the programming language world. No language has more concise and beautiful syntax. – RubyFanatic Mar 7 '11 at 2:19
show 2 more comments
feedback

My take on it is that Rails is more popular, more trendy, more volatile, more complicated and more versatile.

Django, on the other hand is more organized, better documented and comes with authentication and administration built in.

So if you want a fast evolving slightly crazy and egotistical community and framework go for rails. If you want slow and sane go with Django. I choose the slightly crazy.

link|improve this answer
show 1 more comment
feedback

I'd like to develop on a Mac

Then Rails may be a better fit. Apple seems committed to having a good out of the box Ruby/Rails development experience. (Pre-installed ruby and rails gems + other dependencies)

Although, to be honest the Python/Django experience is just as good, just maybe not baked in and fully supported by Apple.

Its a little dated now, but this comparison of both has some good info on both. Try them both out and see which suits your needs.

link|improve this answer
show 1 more comment
feedback

One word : Cucumber.

I prefer Rails because it has more test tools. You can use tons of very inspiring test tools. I can barely think about using rails without Rspec, factory girl among other tools, and the new cucumber gem is just incredible.

link|improve this answer
show 1 more comment
feedback

Ultimately it depends on what language you'd rather work in. If you are comfortable with PHP already, then you may want to look at http://codeigniter.com/ which is a framework similar to Rails, Django, Pylons, Spring etc, but in PHP which you are already familiar with.

The other factor to consider is the server. With passenger (mod__rails) shared hosting now has a much better way to offer Rails hosting. mod_python should help you with Pylons or Django (python based frameworks)

How much customization are you looking to do? Would a content management system like Joomla or Drupal work for you?

Rails and Django are really easy to work with on your local computer since they have test servers that can be run right from scripts in their installation.

Better is a subjective term, and faster depends on what you are doing with it. If you don't want to learn another language, go with code igniter. If you want to learn ruby or python, then play around with both rails and pylons or django, and then look at what your hosting options are.

I don't know much about SQLAlchemy but it is supposedly a great ORM package that is only an option when using python. So if you need a very flexible ORM, then maybe python is the way to go.

link|improve this answer
1  
Just a note, nowadays mod_wsgi is the "preferred" way to host a Django app, rather than mod_python. – TM. Nov 18 '09 at 22:57
5  
Codeigniter is not similar to rails at all. – Keyo Nov 11 '10 at 6:05
1  
@Danilio - Spot on. No models (orm), No modules(plugins), procedural forms, no controller testing, no middleware. Codeigniter is easy, but lacks the structures and organisation of a proper framework. It's often recommended as a beginners framework, by beginners. There is a Dunning–Kruger effect here. People think it is a good framework because they've never used properly structured frameworks long enough to see the benefits. When your project grows you'll find out how lacking it is. Drupal is also a pain for people who program. Deployment is painful because of configuration in the database. – Keyo Jun 9 '11 at 14:51
show 4 more comments
feedback

I have read somewhere : If you know Python then use Django, If you know Ruby then Rails

link|improve this answer
show 1 more comment
feedback

Two cents from a Django user who has never used rails:

Django is most intuitive when you are writing custom public views and accepting the admin interface more or less as is. There is a lot of customization that you can do without much trouble, whether it's customizing style, specifying which fields will be editable, or specifying what type of html form elements should be used by selecting a widget. But if you have to make particularly powerful edits to the admin site, this will probably require the most detailed understanding of python syntax and idioms. Your first few python tutorials will likely skip all the details of new-style objects, decorators, Meta classes, and other syntax introduced in releases of python 2.x.

I'll say the same holds for more complicated SQL queries. (My guess is that every ORM framework is going to require more detailed knowledge for more intricate SQL queries.)

The good news? Even though Django itself is heavily powered by the newer python features, a few introductory python tutorials will be fine to let you do most of what you need to do in Django. And, once you read the four page Django tutorial, you'll feel like you can 50% build your site.

Oh, and as for non-textual data, I haven't actually used this, but I believe it is supported by default in the ORM. This probably won't mean too much to you right now, but others can comment on it:

http://docs.djangoproject.com/en/dev/ref/models/fields/#filefield

Anyway, as far as I know, everything supported in the ORM has a default admin interface, so it should be doable out-of-the-box.

link|improve this answer
show 1 more comment
feedback

Besides the obvious issues(whether you like python or ruby) you may want to look into the deployment issues with both frameworks. If you choose Django, you'll be able to use Google Apps. If you choose Rails, there's no Google Apps. But there're many other good options such as Amazon EC2/S3. Deployment used to be a hairy issue with Rails, but with mod_rails, I guess its no longer an issue.

Another issue could be the local community. If there's a vibrant community of Python coders in your city, it'd be better to join them. It always feels better to have other geeks around who can help you.

link|improve this answer
show 1 more comment
feedback

Rails has a very good plugin called paperclip which allows you to attach images to records in your database. It stores them on the filesystem and a link to that file in the database. Paperclip will automatically scale your images as you upload them as well into any number of sizes you wish.

Scaffolding in Rails is generally only good for text-based interfaces. Once you get into file uploading, you'll want to look at a good tutorial (or the paperclip documentation) about that.

The singular/plural translation is when you have a table called "forums", the model that corresponds with this is called "Forum". This is so when you do something like Forum.find(:first) you're effectively telling rails to "find me the first forum" not "find me the first forum**s**". Tables and Controllers are always plural, models are always singular. You'll learn all about this in any good Rails tutorial or book (e.g. Agile Web Development with Rails 3rd Edition)

If so, does Django (or any other framework) have a more sensible naming strategy?

What's not sensible about that?

link|improve this answer
4  
The rational behind the naming convention is communication. What's in your users table? Well, Users. It's more natural to communicate about groups of things in plurals. However, if it bothers you, you can always turn it off. – PJ Davis Jan 8 '09 at 4:33
show 3 more comments
feedback

There was a good article posted back in January (so it might be a bit out of date now, knowing the speed these frameworks move at) in Smashing Magazine:

Frameworks Round-Up: When To Use, How To Choose?

It may help in your research.

link|improve this answer
feedback

I've tried both Rails and Django.

Personally, I prefer python syntax over ruby, but I think Rails is one step over Django.

I like how rails plugin system let you build a complete webapp in a few hours and especially I like the way rails and ruby support TDD and BDD.

From the other side, Django has a great pluggable app system and this is probably the most "to have" feature on rails.

Cheers, Stefano

link|improve this answer
feedback

For everyone that says about magic in ruby or rails: http://gilesbowkett.blogspot.com/2009/07/do-you-believe-in-magic.html

link|improve this answer
feedback

I enjoy rails. However, as some have said, Rails moves quickly. They seem to adopt and then drop 'standards' very often. Google searches return outdated and broken ways of doing things as the top or near top hit.

That all said, rails is very powerful and if you can get up to speed it works wonderfully.

link|improve this answer
feedback

I've written a blog entry about Rails vs Django that replies to your question.

Since you will just need to display (or insert or something) data and have an admin interface, I'd go for Django since it gives you that out of the box. On everything else, I'd say it's a tie, but the post explains it in detail.

link|improve this answer
feedback

You may want to take a day or two and try out CakePHP—not as an end in itself, but as an introduction to the concepts behind Rails. Last time I checked, Cake was the closest to a port of Rails of any framework. If you like it, you're more likely to enjoy Rails (and conversely, if not, not)

link|improve this answer
feedback

For the most part, I agree with others here. However, I'm fairly familiar with rails, and pretty familiar with django. I've found that knowing python gets you a lot farther with django than knowing ruby gets you with rails. That said, they are both very powerful, and will likely be able to do anything you would want.

link|improve this answer
8  
Rails is much closer to a language in its own right than django is. Django setup and use looks like python code, and knowing python makes reading examples pretty easy. There are a lot of quirks in rails that knowing ruby won't prepare you for. – Ckhrysze Dec 12 '08 at 19:27
show 1 more comment
feedback

I know for a fact there is a great community behind Ruby on Rails (mailing list, irc channel, and at least two forums) and probably an equally greater one behind Django. I agree with Hyposaurus, try both and work out for yourself which one you like.

A Rails server is easy enough to set up, it's just a matter of installing Ruby (which comes with Mac OS X), Rubygems, Rails and optionally the gem called Mongrel, which is a HTTP web server.

Deploying a Rails application is easy enough, with Capistrano or Vlad the Deployer to help you out there and there's plenty of documentation for both programs to help you along the way. Setting up on servers is now easy thanks to Phusion Passenger which has epic documentation also.

I personally prefer coding in Ruby because the language is written to be read by humans primarily, not machines.

Best of luck.

link|improve this answer
feedback

I'm a PHP developer as well and I really like Django; I have no experience with Ruby on Rails though;

You can also use a PHP Framework offcourse, a good candidate is Symfony

link|improve this answer
feedback

A lot of PHP developers migrated to Rails successfully (have a look at Rails for PHP Developers).

link|improve this answer
feedback

As mentioned, they're both quite similar. I would suggest finding more about the community for each framework to help you decide.

Is the documentation good? Are great books available? If you post to a forum, are others helpful or condescending?

From my experience, the community and availability of good resources makes all the difference.

My personal preference is Ruby on Rails, but my reason for choosing it over Python and Django was strictly personal. I've heard nothing but nice things about both Rails and Django.

link|improve this answer
feedback

An alternative to Rails that is less restrictive of your design decisions is Ruby framework called Merb.

link|improve this answer
feedback

They're both excellent, but very different. Personally, I prefer Python, but find Django overly difficult, especially for mere mortals. There's not really any significant alternative to Django.

On the other hand, if you like Ruby and the rapidly growing toolsets around it, but don't like Rails itself all that well, it's worth looking at Merb, too (merbivore.com). I'm having a Ruby on Merb project written for me right now by contractors, and I can tell you I'm flat amazed at the productivity they're getting in this environment - and I'm not all that easily impressed...

link|improve this answer
show 2 more comments
feedback

I would strongly encourage you to try the first chapter or two of several intro books and make your decision based on which is the easiest for you to learn. They are both good frameworks, so you can't really go wrong. If you know one of the two languages already (python / ruby) then use the language you know.

Things that tipped me in favor of rails:

  1. Beginning Rails 3. This book is a phenomenal beginners guide to MVC frameworks and Rails. I went from zero to useable programming in one weekend thanks almost entirely to this book.

  2. Railscasts. Good screencasts are hard to come by, and Ryan Bates has created the holy grail of screencast sites dedicated to Rails and all for free. This is a HUGE help in learning a new system.

  3. Heroku. Heroku offers awesome cloud hosting for ruby applications, including rails. Killer features: it's free for small sites, and it works entirely on a GIT workflow.

I would really encourage you to check these resources out. If you can find similar stuff for python and feel like learning Django will be easier and more productive for you, then by all means go that way. For me, the amazing community resources and ease-of-learning made Rails the right choice.

link|improve this answer
feedback

There are significant philosophical differences between the underling programming languages, Ruby (Rails) and Python (Django). Because of these, most people love one and hate the other, so your best bet might be simply to try both and stick to the one that clicks first.

The frameworks, Rails and Django, offer roughly the same level of sophistication, so don't worry, you're not going to make a "wrong" choice no matter how you decide.

(For the record, I'm a Rails dude.)

link|improve this answer
feedback

@Hyposaurus

That is always an option. However, there are aspects I'm curious about that I wouldn't be able to determine for myself without extensive testing, such as scalability. I'm hoping that there are some people here that have tried both and have some observations they can share.

@DubCee

Why do you prefer coding in Ruby? Do you prefer the syntax, or are there more powerful features that make writing web apps easier or more fun?

link|improve this answer
show 1 more comment
feedback

Few years ago, I tried both, plus Symfony. Symfony was not mature in documentation, and didn't appeal to my taste. A friend who chose Symfony back then is now working to migrate to Rails.

Django was better than Symfony, but at least back then, the documentation wasn't so rich, their admin interface is definitely better than the default Rails scaffold, but their migration was messy and required manual work more than Rails does. Also, Django seemed optimized for news publishing or perhaps blogging. It can set you up quickly with no effort. Rails seemed to me more general.

The community seemed stronger at the time. I'm not following up on Django these days, but Rails is becoming more and more popular with larger crowd.

Also, the huge gem (extension) collection makes it time saving to go Rails. There is also the latest Rails Admin gem, which pretty much seems to fill the missing piece, matching what Django have to offer. Yes it's not by default, but it's few lines of code.

So for me, I tried the three few years back, went with Rails, no regret nor any thought of changing.

link|improve this answer
feedback
1 2

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