Example now prompts for login credentials.
authorJosh Roesslein <jroesslein@gmail.com>
Fri, 7 Aug 2009 06:15:46 +0000 (01:15 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Fri, 7 Aug 2009 06:15:46 +0000 (01:15 -0500)
example.py

index eabca7812933708d41d9b0208b7a3fd2d1908ed4..ab3caaf719bd24e09613523bf304ef22b1d51bbc 100644 (file)
@@ -1,10 +1,14 @@
+from getpass import getpass
+
 import tweepy
 
 print 'An example of using the Tweepy library...'
 
 # We need an authentication handler to tell twitter who we are.
 # First let's make one using basic auth.
-basic_auth = tweepy.BasicAuthHandler('username', 'yourpass')
+username = raw_input('Username: ')
+password = getpass('Password: ')
+basic_auth = tweepy.BasicAuthHandler(username, password)
 
 # Now a handler for oauth.
 oauth_auth = tweepy.OAuthHandler('consumer_key', 'consumer_secrete')