django-cart or Satchmo? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T09:19:36Zhttp://stackoverflow.com/feeds/question/490439http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/490439/django-cart-or-satchmo11django-cart or Satchmo?Ryan Duffield2009-01-29T04:00:49Z2009-05-04T00:24:15Z
<p>I'm looking to implement a very basic shopping cart. <a href="http://www.satchmoproject.com/" rel="nofollow">Satchmo</a> seems to install a <strong>lot</strong> of applications and extra stuff that I don't need. I've heard others mention <a href="http://code.google.com/p/django-cart/" rel="nofollow">django-cart</a>. Has anyone tried this Django app (django-cart)? Anything to watch for or any other experiences?</p>
http://stackoverflow.com/questions/490439/django-cart-or-satchmo/490446#4904463Answer by Andrew for django-cart or Satchmo?Andrew2009-01-29T04:04:28Z2009-01-29T04:04:28Z<p>I think the reason there aren't really many out-of-the-box solutions is because most people who use Django are power users. They tend to want to roll out their own solutions, especially considering how easy it is to do in Django.</p>
<p>To answer your question, <a href="http://demo.djwarehouse.org/" rel="nofollow">DJwarehouse</a> is the only other cart I'm aware of. </p>
http://stackoverflow.com/questions/490439/django-cart-or-satchmo/490534#49053412Answer by Van Gale for django-cart or Satchmo?Van Gale2009-01-29T05:04:35Z2009-01-29T05:04:35Z<p>Well if you want to use django-cart you should view it as a starting point for developing your own. The last commit (r4) for the project was November 2006.</p>
<p>By comparison, the last commit (r1922) to Satchmo was a couple of hours ago.</p>
<p>With Satchmo you get code that is under active development and actually used by real e-commerce sites.</p>
<p>If you develop your own you're running the risk of alienating customers and losing money. If you use Satchmo you can spend more time developing/improving other areas of your site.</p>
<p>I bet you can already guess my recommendation :)</p>
<p>As for the apps and other stuff in Satchmo I can tell you, from personal experience, that you don't need to include them all in your INSTALLED_APPS setting. I don't remember exactly what I pared it down to, but there were only around 6-7 Satchmo apps in my INSTALLED_APPS and they were all ones I needed. I think they've done even more modularization since then.</p>
http://stackoverflow.com/questions/490439/django-cart-or-satchmo/493895#4938953Answer by Chris for django-cart or Satchmo?Chris2009-01-29T23:05:52Z2009-01-29T23:05:52Z<p>As mentioned above, Django-cart hasn't been updated in a long time so it is most likely not compatible with Django 1.0 and the more recent versions of Django. For that reason alone, I'd recommend sticking with something more recent.</p>
<p>I'm biased because I'm a dev on Satchmo but I think the feeling of overkill with Satchmo is a bit overblown. You'll probably be surprised at all the things you think you'll want to do with your "simple cart." Soon it may not be so simple.</p>
<p>Worst case, if Satchmo is too much you can yank out the parts you don't care about.</p>
http://stackoverflow.com/questions/490439/django-cart-or-satchmo/700439#7004390Answer by for django-cart or Satchmo?2009-03-31T07:43:41Z2009-03-31T07:43:41Z<p>Seems that a new version of Django-cart has been released on 25th March. <a href="http://vaig.be/2009/03/django-cart-released.html" rel="nofollow">http://vaig.be/2009/03/django-cart-released.html</a></p>
<p>Wonder how the new version fares with respect to Satchmo.</p>
http://stackoverflow.com/questions/490439/django-cart-or-satchmo/818404#8184040Answer by Adrian Nye for django-cart or Satchmo?Adrian Nye2009-05-04T00:24:15Z2009-05-04T00:24:15Z<p>I am using django-cart and it is not really an app - it is a start of an app. There are no views, and it totals about 150 lines of code. There is no doc but it is pretty clear how to use most of it. I am a little unsure of the intention of ItemManager or how that is supposed to be used. Comparing it to Satchmo is like comparing a flea to an elephant.
They are a little different.</p>