@@ -22,10 +22,6 @@ applications through machine-to-machine communication.
2222
2323
2424## API creation frameworks
25- * [ Sandman] ( http://www.github.com/jeffknupp/sandman ) is a widely used tool to
26- automatically generate a RESTful API service from a legacy database without
27- writing a line of code (though it's easily extensible through code).
28-
2925* [ Django REST framework] ( http://www.django-rest-framework.org/ ) and
3026 [ Tastypie] ( https://django-tastypie.readthedocs.org/en/latest/ ) are
3127 the two most widely used API frameworks to use with Django. The edge
@@ -35,11 +31,18 @@ applications through machine-to-machine communication.
3531 [ Flask API] ( http://flask.pocoo.org/docs/api/ ) are popular libraries for
3632 exposing APIs from Flask web applications.
3733
34+ * [ Sandman] ( http://www.github.com/jeffknupp/sandman ) is a widely used tool to
35+ automatically generate a RESTful API service from a legacy database without
36+ writing a line of code (though it's easily extensible through code).
37+
38+ * [ Cornice] ( https://cornice.readthedocs.org/en/latest/ ) is a REST framework
39+ for Pyramid.
40+
3841* [ Restless] ( https://github.com/toastdriven/restless ) is a lightweight API
3942 framework that aims to be framework agnostic. The general concept is that
4043 you can use the same API code for Django, Flask, Bottle, Pyramid or any
4144 other WSGI framework with minimal porting effort.
42-
45+
4346
4447## API testing projects
4548Building, running and maintaining APIs requires as much effort as building,
0 commit comments