Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

2 Answers

up vote 49 down vote accepted

As the author of django-rest-framework, I've got an obvious bias ;) but my hopefully-fairly-objective opinion on this is something like:

TastyPie

  • As Torsten noted, you're not going to go far wrong with something written by the same peeps as the awesome django-haystack. From what I've seen on their mailing list Daniel Lindsey et al are super-helpful, and tastypie is pretty solid.
  • Gives you a bit more out the box in places - eg. you register your Resources with the API and it'll sort out the URLConf for you. In django-rest-framework you write regular views and deal with the URLConf explicitly.
  • Docs a a bit more comprehensive. django-rest-framework's docs aren't bad, but TastyPie's have definatly had a lot of love. Updated: As of REST framework 2, I'd say both frameworks have excellent documentation.
  • Been around a bit longer & slightly larger community.

django-rest-framework

  • Gives you HTML browse-able self-describing APIs. (EG, see the tutorial API) Being able to navigate and interacte with the API directly in the browser is a big usability win.
  • Tries to stay close to Django idioms throughout - built on top of Django's class based views, etc...
  • I'd like to think that the underlying architecture is pretty nicely built, decoupled etc... there's more good work that could be done on top of it, but I'm really pleased with the foundations.

In any case, both are good. If you're planning on investing a lot of time in the API, I'd def recommend browsing through the docs & codebase of each and trying to get a feel for which suits you more.

Obviously, there's also the 'Why TastyPie?' section in it's README, and the 'REST framework 2 announcement'.

You might also be interested in the video of my lightning talk from DjangoCon on django-rest-framework which hopefully gives a bit of a feel as to why I think web browse-able APIs are a big deal. (NB. My talk is up first, at around 2mins 30sec into the vid)

Edit - May 2012:

See also Daniel Greenfeld's blog post on Choosing an API framework for Django.

Edit - Nov 2012:

Minor updates and link fixing since REST framework 2 has now been released.

share|improve this answer
example APIs link is broken – Ben Roberts May 16 '12 at 5:18
Link fixed. Thanks! – Tom Christie Aug 25 '12 at 18:51
4  
Btw, We've been using Django-rest-framework for a major project, and its awesome! I test-drove tastypie for a week early on, and have no regrets about going with DRF. The documentation is unfortunately not up to par with the code and the framework itself, but other than that, pure bliss. – Ben Roberts Aug 26 '12 at 6:15
Great stuff, thanks Ben. And yup, your point re. the documentation is definitely fair. Planning to address that! – Tom Christie Aug 26 '12 at 21:57
1  
@Mutant - Thanks, the djangocon.eu 2011 site is now dead, but I've linked directly to the video on blip.tv. – Tom Christie Oct 9 '12 at 13:44
show 2 more comments

For an overview about the actual differences between both of them you should read their documentation. They are both more or less complete and quite mature.

I personally tend to tastypie though. It seems to be easier to set it up. It's done from the same people which created django-haystack which is awesome and according to django-packages it is used more than Django REST framework.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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