From eb023899ace3441f56bde37369a46df607fff4bf Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 30 Jul 2019 19:54:36 -0500 Subject: [PATCH] Remove misplaced section in Cursor tutorial documentation --- docs/cursor_tutorial.rst | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/docs/cursor_tutorial.rst b/docs/cursor_tutorial.rst index 0958dda..ea5b452 100644 --- a/docs/cursor_tutorial.rst +++ b/docs/cursor_tutorial.rst @@ -92,26 +92,3 @@ items() or pages() methods the limit you want to impose. # Only iterate through the first 3 pages for page in tweepy.Cursor(api.user_timeline).pages(3): process_page(page) - - -Include Tweets > 140 Characters -------------------------------- - -Since twitter increased the maximum number of characters allowed in a -tweet from 140 to 280, you may notice that tweets greater than 140 -characters are truncated with ... - -If you want your results to include the full text of the long tweets, -make these simple changes: - -- add the argument ``tweet_mode='extended'`` - to your Cursor object call - -- change your usage of ``.text`` to ``.full_text`` - -.. code-block :: python - - # example code - tweets = tweepy.Cursor(api.search, tweet_mode='extended') - for tweet in tweets: - content = tweet.full_text -- 2.25.1