From: Harmon Date: Wed, 8 May 2019 12:10:48 +0000 (-0500) Subject: Update friends_timeline to home_timeline in code snippet documentation X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9a58e02257ae72e5492126f12b2367e660aedd1f;p=tweepy.git Update friends_timeline to home_timeline in code snippet documentation --- diff --git a/docs/code_snippet.rst b/docs/code_snippet.rst index 7b4f7bc..f838e2a 100644 --- a/docs/code_snippet.rst +++ b/docs/code_snippet.rst @@ -37,8 +37,8 @@ Pagination # Process the friend here process_friend(friend) - # Iterate through the first 200 statuses in the friends timeline - for status in tweepy.Cursor(api.friends_timeline).items(200): + # Iterate through the first 200 statuses in the home timeline + for status in tweepy.Cursor(api.home_timeline).items(200): # Process the status here process_status(status)