Merge pull request #1437 from lukaszb/patch-1

Fixed wrong method call at streaming example
This commit is contained in:
Cory Benfield
2013-06-27 11:18:56 -07:00
+1 -1
View File
@@ -281,7 +281,7 @@ To use the Twitter Streaming API to track the keyword "requests"::
import json
import requests
r = requests.post('http://httpbin.org/stream/20', stream=True)
r = requests.get('http://httpbin.org/stream/20', stream=True)
for line in r.iter_lines():