1
notedit 2014-05-05 11:50:01 +08:00 1
|
2
BiggerLonger 2014-05-05 13:51:38 +08:00 1
http+json吧, web server任意挑一款web framework
|
3
clino 2014-05-05 13:55:24 +08:00 1
例行推荐uliweb:
文档: http://limodou.github.io/uliweb-doc/ 邮件列表: http://groups.google.com/group/uliweb QQ讨论组: 162487035 有一些针对初学者的教程,QQ群里也有不少初学者在讨论,在邮件列表和QQ群中都可以和作者讨论问题 ------ uliweb 本身预置了一系列的基本的app,如(auth,mail,rbac,i18n等等): https://github.com/limodou/uliweb/tree/master/uliweb/contrib 还有另外一个plugs项目,是一个较上层的uliweb app的集合: https://github.com/limodou/plugs/tree/master/plugs |
4
mulog 2014-05-05 14:24:14 +08:00 1
http+json...
前一阵刚好用tornado写过一个很简单的 |
5
no13bus 2014-05-05 15:43:53 +08:00
@BiggerLonger nice。现在我觉得这个比写什么web server快多了。http请求资源即可。web framework都有了。
|
6
lowstz 2014-05-06 03:34:18 +08:00
Django REST framework
|
7
davidlau 2014-05-07 11:04:50 +08:00
Python的Flask,很简单的实现 拦截 http://localhost:8080/location/xxx 的HTTP GET request,打印并返回 "a query: /location/"+content
8行搞定 ''' app = flask.Flask(__name__) @app.route('/location/<content>',methods=['GET']) def location(content): str = "a query: /location/"+content print str return str if __name__ == '__main__': app.run(port=8080) ''' |
8
halfcrazy 2014-05-13 23:22:29 +08:00
顺道借问,如何处理请求阻塞的问题。
|
9
zjnjxufe 2014-05-14 16:21:23 +08:00
学习一两个web框架就行了, flask django and so on.
|
10
SeanCrstian 2017-03-22 17:32:35 +08:00
楼主你好,我最近在做毕设也有这个需求,想咨询一下需要学习哪些东西呢?我想用 iOS 端发送 HTTP 请求给 Python 编写的后台服务器,就是不知道怎么下手。。 求指导。。
|