选择 web.py 或 Tornado
我想使用 python 构建一个简单的社交网络。就像 Twitter,但比 Twitter 小。我只是想做一些功能,比如关注、被关注、查看其他人的个人资料等。
我的问题是我应该使用 web.py 或 Tornado?
顺便说一句,有关于 Tornado 的教程吗?看了官方的文档,感觉很难理解。
(哎呀,我的英语很差。:P)
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 )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这两者是不同的事情。
Tornado 是 Web 服务器,而 web.py 是一个框架。
因此您可以同时使用它们。
these two are different things.
Tornado is web server while web.py is a framework.
therefore you can use both of them.
回答您的问题:
用 web.py 编写你的应用程序!我相信我们很快就能构建一个基于 twitter 副本的 web.py 。
然后,你最好知道这些:
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:
您可以考虑使用 Pinax。当我使用它时,它有“有意见的 django”的自我概念。我不确定它现在在哪里,但我的经验是它最适合您想做的事情。基础项目之一实际上是一个功能齐全的社交网站。然后您可以从那里进行自定义。
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.