Skip to content

Commit a7100df

Browse files
committed
new api creation resource
1 parent d81fa66 commit a7100df

File tree

5 files changed

+25
-1
lines changed

5 files changed

+25
-1
lines changed

all.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2491,6 +2491,11 @@ <h2>How did JavaScript originate?</h2>
24912491
<h2>JavaScript resources</h2>
24922492
<ul>
24932493
<li>
2494+
<p><a href="http://ashleynolan.co.uk/blog/frontend-tooling-survey-2015-results">Frontend tooling in 2015</a>
2495+
shows the results of a survey for what frontend developers are using for
2496+
CSS pre- and post-processing and other build steps.</p>
2497+
</li>
2498+
<li>
24942499
<p><a href="http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/">How Browsers Work</a>
24952500
is a great overview of both JavaScript and CSS as well as how pages are
24962501
rendered in a browser.</p>
@@ -4254,6 +4259,11 @@ <h2>Python-specific API creation resources</h2>
42544259
<a href="https://github.com/clarkduvall/serpy">Serpy</a> and
42554260
<a href="https://engineering.betterworks.com/2015/09/04/ditching-django-rest-framework-serializers-for-serpy/">wrote a blog post with the results of its performance</a>.</p>
42564261
</li>
4262+
<li>
4263+
<p>To create an API to export your data in comma-separated values,
4264+
check out this
4265+
<a href="http://codingpole.com/using-django-rest-framework-for-csv-export/">blog post on exporting data as CSV format with Django REST framework</a>.</p>
4266+
</li>
42574267
</ul>
42584268
<h2>API creation learning checklist</h2>
42594269
<ol>

api-creation.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,11 @@ <h2>Python-specific API creation resources</h2>
220220
<a href="https://github.com/clarkduvall/serpy">Serpy</a> and
221221
<a href="https://engineering.betterworks.com/2015/09/04/ditching-django-rest-framework-serializers-for-serpy/">wrote a blog post with the results of its performance</a>.</p>
222222
</li>
223+
<li>
224+
<p>To create an API to export your data in comma-separated values,
225+
check out this
226+
<a href="http://codingpole.com/using-django-rest-framework-for-csv-export/">blog post on exporting data as CSV format with Django REST framework</a>.</p>
227+
</li>
223228
</ul>
224229
<h2>API creation learning checklist</h2>
225230
<ol>

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>2015-09-18T12:01:32Z</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>2015-09-20T13:51:59Z</updated></feed>

javascript.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ <h2>How did JavaScript originate?</h2>
6767
<h2>JavaScript resources</h2>
6868
<ul>
6969
<li>
70+
<p><a href="http://ashleynolan.co.uk/blog/frontend-tooling-survey-2015-results">Frontend tooling in 2015</a>
71+
shows the results of a survey for what frontend developers are using for
72+
CSS pre- and post-processing and other build steps.</p>
73+
</li>
74+
<li>
7075
<p><a href="http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/">How Browsers Work</a>
7176
is a great overview of both JavaScript and CSS as well as how pages are
7277
rendered in a browser.</p>

source/content/pages/06-web-apis/03-api-creation.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,10 @@ equivalent of browser testing in the web application world.
164164
[Serpy](https://github.com/clarkduvall/serpy) and
165165
[wrote a blog post with the results of its performance](https://engineering.betterworks.com/2015/09/04/ditching-django-rest-framework-serializers-for-serpy/).
166166

167+
* To create an API to export your data in comma-separated values,
168+
check out this
169+
[blog post on exporting data as CSV format with Django REST framework](http://codingpole.com/using-django-rest-framework-for-csv-export/).
170+
167171

168172
## API creation learning checklist
169173
1. Pick an API framework appropriate for your web framework. For Django I

0 commit comments

Comments
 (0)