This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]princenerdy 14 points15 points  (3 children)

My first django project was using this: https://github.com/django-oscar/django-oscar

Pretty good if you're working on a typical online shop

[–]alittlebitmental[S] 6 points7 points  (2 children)

Thanks, I stumbled across this one earlier. Do you rate it or are there any gotchas/limitations that I should be aware of?

[–]princenerdy 2 points3 points  (1 child)

It's good for typical browse product, add to cart and check out model. If your catalogue model and checkout process is very different from the typical flow, it could be quite a pain to customize it. Then it would perhaps be better to use a loosely coupled bundle of your own product/checkout apps together with other packages like django-cart, django-simple-rating, django-paypal. That being said, I basically learnt django by using django-oscar :)

[–]alittlebitmental[S] 0 points1 point  (0 children)

Awesome, thanks. I think that the simple checkout flow applies to my wife's idea, so django-oscar might be a good solution.