views:

746

answers:

4

I am tying to write a digg , hackernews , http://collectivesys.com/ like application where users submit something and other users can vote up or down , mark items as favorite ect . I was just wondering if there are some open source implementations django/python that i could use as starting point , instead of reinventing the wheel by starting from scratch.

+6  A: 

Check out Pinax and Django Pluggables for some pre-made Django apps to help you out.

Paolo Bergantino
Pinax looks promising . Thanks
Surya
+4  A: 

reddit is open source, written mostly in python. Apart from the code, there might be some algorithms you may find helpful.

sandesh247
+1  A: 

Though not written in django, reddit is written in python and is open source. From the code you could get some ideas and see how they overcame certain hurdles etc. They've open sourced everything bar their antispam measures.

tomeedee
+2  A: 

I'd recommend taking a close look at the django-voting project on Google Code.

They claim to be an django implementation of "Reddit Style Voting"

Henrik Joreteg
Nice. Looks like what I am after
Surya