Randy
Randy

Reputation: 400

Choose web.py or Tornado

I wanna build a simple social network use python. Just like twitter but smaller than twitter.I just wanna make a few features like follow,BE followed,view others profile,etc.

My question is that i should use web.py or Tornado?

BTW, is there any tutorial about Tornado? I feel it hard to understand when i read the documenations on the offical.

(Oops,my english is week. :P )

Upvotes: 0

Views: 2356

Answers (3)

Gentle Y
Gentle Y

Reputation: 331

Answer to your Q: write your app with web.py ! I'm sure we can build a twitter copy based web.py very soon .

And then , you'd better to know these:

Upvotes: 1

Profane
Profane

Reputation: 1128

You might consider using Pinax. When I used it, it had the self-concept of 'django with an opinion.' I'm not sure where it's at now, but my experience was that it was best suited for exactly what you want to do. One of the base projects is actually a fully functional social network site. You could then customize from there.

Upvotes: 0

ingvar harjaks
ingvar harjaks

Reputation: 106

these two are different things. Tornado is web server while web.py is a framework. therefore you can use both of them.

Upvotes: 3

Related Questions