py3-ify getting_started.rst
authorAndreas Nüßlein <nutz@noova.de>
Tue, 5 Apr 2016 15:14:41 +0000 (17:14 +0200)
committerAndreas Nüßlein <nutz@noova.de>
Tue, 5 Apr 2016 15:14:41 +0000 (17:14 +0200)
.. also still compatible with python2

docs/getting_started.rst

index abafd8c2b2cd2c594c72a1b916d6f8be09d6ebce..c084fdefe5fbb1bc2fbe3173cd65a6f39fa45e86 100644 (file)
@@ -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.