Skip to content

Commit 86a9c69

Browse files
committed
adding cornice as a rest framework for pyramid
1 parent 5d572d6 commit 86a9c69

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

api-creation.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ <h1>API Creation</h1>
4444
<h2>API creation frameworks</h2>
4545
<ul>
4646
<li>
47-
<p><a href="http://www.github.com/jeffknupp/sandman">Sandman</a> is a widely used tool to
48-
automatically generate a RESTful API service from a legacy database without
49-
writing a line of code (though it's easily extensible through code).</p>
50-
</li>
51-
<li>
5247
<p><a href="http://www.django-rest-framework.org/">Django REST framework</a> and
5348
<a href="https://django-tastypie.readthedocs.org/en/latest/">Tastypie</a> are
5449
the two most widely used API frameworks to use with Django. The edge
@@ -60,6 +55,15 @@ <h2>API creation frameworks</h2>
6055
exposing APIs from Flask web applications.</p>
6156
</li>
6257
<li>
58+
<p><a href="http://www.github.com/jeffknupp/sandman">Sandman</a> is a widely used tool to
59+
automatically generate a RESTful API service from a legacy database without
60+
writing a line of code (though it's easily extensible through code).</p>
61+
</li>
62+
<li>
63+
<p><a href="https://cornice.readthedocs.org/en/latest/">Cornice</a> is a REST framework
64+
for Pyramid.</p>
65+
</li>
66+
<li>
6367
<p><a href="https://github.com/toastdriven/restless">Restless</a> is a lightweight API
6468
framework that aims to be framework agnostic. The general concept is that
6569
you can use the same API code for Django, Flask, Bottle, Pyramid or any

change-log.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ <h1>Change Log</h1>
4646
<h2>2014</h2>
4747
<h3>July</h3>
4848
<ul>
49+
<li>Merged a pull request for new REST frameworks.</li>
4950
<li>Lots of new Django, Flask and task queue resources.</li>
5051
<li>Added two new Python libraries lists to the Best Python Resources page.</li>
5152
<li>Thanks <a href="https://news.ycombinator.com/item?id=7985692">Hacker News</a> for

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-07-13T09:52:42Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-07-13T10:19:46Z</updated></feed>

source/content/pages/06-apis/0605-api-creation.markdown

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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
4548
Building, running and maintaining APIs requires as much effort as building,

source/content/pages/10-misc/1005-change-log.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ the
2424

2525
## 2014
2626
### July
27+
* Merged a pull request for new REST frameworks.
2728
* Lots of new Django, Flask and task queue resources.
2829
* Added two new Python libraries lists to the Best Python Resources page.
2930
* Thanks [Hacker News](https://news.ycombinator.com/item?id=7985692) for

0 commit comments

Comments
 (0)