From: Andreas Nüßlein Date: Tue, 5 Apr 2016 15:14:41 +0000 (+0200) Subject: py3-ify getting_started.rst X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=59d0a895d1230898e271e83bcb52febc6cb7e628;p=tweepy.git py3-ify getting_started.rst .. also still compatible with python2 --- diff --git a/docs/getting_started.rst b/docs/getting_started.rst index abafd8c..c084fde 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -26,7 +26,7 @@ Hello Tweepy public_tweets = api.home_timeline() for tweet in public_tweets: - print tweet.text + print(tweet.text) This example will download your home timeline tweets and print each one of their texts to the console. Twitter requires all requests to @@ -55,10 +55,10 @@ the following code returns to us an User model:: Models contain the data and some helper methods which we can then use:: - print user.screen_name - print user.followers_count + print(user.screen_name) + print(user.followers_count) for friend in user.friends(): - print friend.screen_name + print(friend.screen_name) For more information about models please see ModelsReference.