From: Harmon Date: Tue, 4 Dec 2018 15:55:22 +0000 (-0600) Subject: Fix line length consistency in cursor tutorial X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=495f21ee5591fb451f6fd72a768edec46e6a7107;p=tweepy.git Fix line length consistency in cursor tutorial --- diff --git a/docs/cursor_tutorial.rst b/docs/cursor_tutorial.rst index fd5454c..0958dda 100644 --- a/docs/cursor_tutorial.rst +++ b/docs/cursor_tutorial.rst @@ -80,7 +80,8 @@ would use the pages() method:: Limits ------ -What if you only want n items or pages returned? You pass into the items() or pages() methods the limit you want to impose. +What if you only want n items or pages returned? You pass into the +items() or pages() methods the limit you want to impose. .. code-block :: python @@ -96,11 +97,15 @@ What if you only want n items or pages returned? You pass into the items() or pa 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 ... +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: +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 +- add the argument ``tweet_mode='extended'`` + to your Cursor object call - change your usage of ``.text`` to ``.full_text``