Python REST API 框架

面食的时候被问了几个关于这方面的问题,回来一查发现还有不少,

1. Eve 点击打开链接   http://python-eve.org/index.html


官方是这么说明的,

Powered by Flask, MongoDB, Redis and good intentions Eve allows to effortlessly build and deploy highly customizable, fully featuredRESTful Web Services


使用上相当简单,

首先,

from eve import Eve

app = Eve()
app.run()

然后, API 已经可以调用了

$ curl -i http://example.com/people
HTTP/1.1 200 OK

2.  其他的还有 

Django,web.py,cherrypy (REST),Zope,Twisted(REST),Quixote,spyce,webware for python

你可能感兴趣的:(Python框架)