Skip to content

Commit cedec41

Browse files
committed
adding new requests tutorial for apis
1 parent 35d404a commit cedec41

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

all.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2875,7 +2875,7 @@ <h1>API Integration</h1>
28752875
integrating APIs is less commonly written about. However, this subject
28762876
continuously grows in importance because APIs provide critical functionality
28772877
across many implementation areas.</p>
2878-
<h2>Hosted API services</h2>
2878+
<h2>Hosted API testing services</h2>
28792879
<ul>
28802880
<li>
28812881
<p><a href="https://www.runscope.com/">Runscope</a> is a service specifically designed
@@ -2890,6 +2890,12 @@ <h2>Hosted API services</h2>
28902890
<h2>API Integration Resources</h2>
28912891
<ul>
28922892
<li>
2893+
<p>Some developers prefer to use
2894+
<a href="http://docs.python-requests.org/en/latest/">Requests</a> instead of an API's
2895+
helper library. In that case check out this
2896+
<a href="http://engineering.hackerearth.com/2014/08/21/python-requests-module/">tutorial on using requests to access web APIs</a>.</p>
2897+
</li>
2898+
<li>
28932899
<p>John Sheehan's
28942900
"<a href="https://speakerdeck.com/johnsheehan/zen-and-the-art-of-api-maintenance">Zen and the Art of API Maintenance</a>"
28952901
slides are relevant for API integration.</p>

api-integration.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h1>API Integration</h1>
4949
integrating APIs is less commonly written about. However, this subject
5050
continuously grows in importance because APIs provide critical functionality
5151
across many implementation areas.</p>
52-
<h2>Hosted API services</h2>
52+
<h2>Hosted API testing services</h2>
5353
<ul>
5454
<li>
5555
<p><a href="https://www.runscope.com/">Runscope</a> is a service specifically designed
@@ -64,6 +64,12 @@ <h2>Hosted API services</h2>
6464
<h2>API Integration Resources</h2>
6565
<ul>
6666
<li>
67+
<p>Some developers prefer to use
68+
<a href="http://docs.python-requests.org/en/latest/">Requests</a> instead of an API's
69+
helper library. In that case check out this
70+
<a href="http://engineering.hackerearth.com/2014/08/21/python-requests-module/">tutorial on using requests to access web APIs</a>.</p>
71+
</li>
72+
<li>
6773
<p>John Sheehan's
6874
"<a href="https://speakerdeck.com/johnsheehan/zen-and-the-art-of-api-maintenance">Zen and the Art of API Maintenance</a>"
6975
slides are relevant for API integration.</p>

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-09-20T10:59:13Z</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-09-21T09:55:42Z</updated></feed>

source/content/pages/08-apis/0802-api-integration.markdown

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ continuously grows in importance because APIs provide critical functionality
3030
across many implementation areas.
3131

3232

33-
## Hosted API services
33+
## Hosted API testing services
3434
* [Runscope](https://www.runscope.com/) is a service specifically designed
3535
for APIs that assists developers with automated testing and traffic
3636
inspection.
@@ -40,6 +40,11 @@ across many implementation areas.
4040

4141

4242
## API Integration Resources
43+
* Some developers prefer to use
44+
[Requests](http://docs.python-requests.org/en/latest/) instead of an API's
45+
helper library. In that case check out this
46+
[tutorial on using requests to access web APIs](http://engineering.hackerearth.com/2014/08/21/python-requests-module/).
47+
4348
* John Sheehan's
4449
"[Zen and the Art of API Maintenance](https://speakerdeck.com/johnsheehan/zen-and-the-art-of-api-maintenance)"
4550
slides are relevant for API integration.

0 commit comments

Comments
 (0)