Remove misplaced section in Cursor tutorial documentation
authorHarmon <Harmon758@gmail.com>
Wed, 31 Jul 2019 00:54:36 +0000 (19:54 -0500)
committerGitHub <noreply@github.com>
Wed, 31 Jul 2019 00:54:36 +0000 (19:54 -0500)
docs/cursor_tutorial.rst

index 0958dda3aef9b8399e99139463e8c88f7501c055..ea5b4525ce9e3b3ec9573a7710c9579e96788f02 100644 (file)
@@ -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