From 7f6b7ed0791cd66e0ae4fe06077f716f06de3d33 Mon Sep 17 00:00:00 2001 From: James Devine Date: Thu, 27 Feb 2014 16:37:49 -0800 Subject: [PATCH] --- Robotboothpicture.py | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/Robotboothpicture.py b/Robotboothpicture.py index 87a4399..c29aec5 100644 --- a/Robotboothpicture.py +++ b/Robotboothpicture.py @@ -1,9 +1,3 @@ -#tweets a picture at you, based on a scanned QR code containing a twitter handle in plaintext. -#use with the ZXing barcode/QR code reader app, needs to be installed to work -#You will also need to unpack tweepy successfully -#finally, this script was written to run on SL4A within Android, rather than in native python. -#ps don't forget to leave the phone plugged in, otherwise it will run out of battery - import android import tweepy import time @@ -11,10 +5,10 @@ import time droid=android.Android() #droid.wakeLockAcquirePartial() -CONSUMER_KEY = 'yourkeyhere' -CONSUMER_SECRET = 'yoursecrethere' -ACCESS_KEY = 'youraccessthingyhere' -ACCESS_SECRET = 'and the secret access thing here' +CONSUMER_KEY = 'here' +CONSUMER_SECRET = 'there' +ACCESS_KEY = 'somewhere' +ACCESS_SECRET = 'anywhere' droid.makeToast("Starting Auth") auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET) @@ -41,7 +35,7 @@ while (runcontinuous == True): pictemp = pictemp + '%05i.jpeg' droid.cameraCapturePicture(pictemp % piccount) tweet = "@" + code[1]['extras']['SCAN_RESULT'] + " here is your picture. Have a nice day!" - api.status_update_with_media(pictemp % piccount, status=tweet) + api.update_with_media(pictemp % piccount, status=tweet) droid.ttsSpeak("All finished. Your picture has now been tweeted. Thank you") time.sleep(5) piccount += 1