update verbiage about streaming requests
authorRandy Morris <randy.morris@archlinux.us>
Mon, 7 Oct 2013 14:43:48 +0000 (10:43 -0400)
committerRandy Morris <randy.morris@archlinux.us>
Mon, 7 Oct 2013 14:43:48 +0000 (10:43 -0400)
The Twitter API is no longer used in the example.

docs/user/advanced.rst

index c065c04214af950b95551eff8485deb318c8ae51..0047b47e611d9c91656698c7b2df754f8493e22f 100644 (file)
@@ -275,8 +275,7 @@ Streaming Requests
 
 With ``requests.Response.iter_lines()`` you can easily iterate over streaming
 APIs such as the `Twitter Streaming API <https://dev.twitter.com/docs/streaming-api>`_.
-
-To use the Twitter Streaming API to track the keyword "requests"::
+Simply set ``stream`` to ``False`` and iterate over the response with ``iter_lines()``::
 
     import json
     import requests