Skip to main content

Predictable failure - Tweeting with Python Part 1

·867 words·5 mins
tech bitcoin cryptocurrency debian iot linux python raspberry-pi raspbian technology twitter twython
James Pettigrove
Author
James Pettigrove
Cloud Engineer with a focus on Microsoft Azure
Table of Contents
Tweeting with Python - This article is part of a series.
Part 1: This Article

As explained in a previous series of mine, I run a small Bitcoin mining operation on my Raspberry Pi. Once configured, it generally just sits in a corner (behind my TV unit now) out of sight, out of mind and continues to mine away on the USB ASIC hardware. Unfortunately from time to time it does hang and with it, the entire mining operation ceases. If I’m not persistent in keeping track of it (hint: I’m not)  then it may be down for a considerable amount of time.

Rather than let such waste occur, I decided to solve my problems with code!

I knew it wouldn’t be all that difficult to prevent the kind of hang that occurred in Linux by scheduling a reboot but the real key would be to introduce some notifications so that I would be aware a reboot occurred AND it was successful.

I could introduce a monitoring system but the only device that was powered on 24/7 in my home is my router and my Pi. So that isn’t really feasible. I did know however, through some previous experiences that I could send tweets from my Raspberry Pi via the Python library Twython (no points for originality there guys).

Sign up to Twitter and get API access
#

Head on over to http://www.twitter.com and sign up for a 2nd Twitter account. We will use this account to send the tweets to your regular account. In this example however, I’ll use my current account.

Once you have your second account, go to  https://dev.twitter.com/oauth/overview/application-owner-access-tokens. Rather and logging in with a username and password to send the tweets, we will interface with Twitter via their APIs instead. We will utilise the OAuth system of tokens to authenticate to Twitter and thus protecting your credentials (even if it is a dummy account, tokens can be managed more granularly than passwords).

Installing Twython
#

Presuming you are running Python 2 versions 2.7.9 or higher or Python 3 versions 3.4 or higher, you also have a handy Python package manager of sorts called Pip. So lets use this tool to install Twython:

pip install twython

Painless right?

Python script to tweet shutdown
#

Next step will be to create our Python shutdown script that will tweet out the Raspberry Pi is shutting down. Let’s navigate to our home directory and use Nano (or your favourite Linux editor) to create the file:

cd ~
nano TweetShutdown.py

With our new Python script file open, enter the following

from twython import Twython
import os
import time
import datetime
 
# Send date and timestamp to string, tweet to string then combine
dts = datetime.datetime.fromtimestamp(time.time()).strftime('%y%m%d%H%M%S')
 
tweet = "@DXPetti I'm going down #GALMPI "
 
tweetstr = tweet + dts
 
# Twitter application authentication
APP_KEY = 'replacewithyours'
APP_SECRET = 'replacewithyours'
OAUTH_TOKEN = 'replacewithyours'
OAUTH_TOKEN_SECRET = 'replacewithyours'
 
api = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
 
api.update_status(status=tweetstr)

Now there is a lot happening in the above so lets tear it apart and break it down.

from twython import Twython
import os
import time
import datetime

Like any good script (or program), the first thing we do is import the libraries we need to do the job. In this example, we are importing the Twython libraries from the twython wrapper followed by time and datetime libraries from Python itself (notice there is no from prefacing these lines?). These libraries will drive the functions used later on in the script.

# Send date and timestamp to string, tweet to string then combine
dts = datetime.datetime.fromtimestamp(time.time()).strftime('%y%m%d%H%M%S')
 
tweet = "@DXPetti I'm going down #GALMPI "
 
tweetstr = tweet + dts

The comment line spells this out pretty clearly but here we are creating 3 strings; first is utilising the time and datetime libraries to get a date and timestamp so that each tweet will be unique. The logic behind this is that Twitter filters out tweets that contain the same content from any one account. Considering that these tweets will go out on a regular basis and the message itself will not change; to avoid getting spam flagged we will add the date and timestamp to final tweet. Second string is the shutdown message. Nice and simple, targeted to my Twitter account (so I get a notification ala alert) and added a hashtag of the system name. Last but not least, we combine the two previous strings to form the final tweet to send out.

# Twitter application authentication
APP_KEY = 'replacewithyours'
APP_SECRET = 'replacewithyours'
OAUTH_TOKEN = 'replacewithyours'
OAUTH_TOKEN_SECRET = 'replacewithyours'
 
api = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET)

Next up, we need to tell the script all the key authentication details generated earlier to have the permission to send a tweet.  Plug your details from the dev.twitter.com dashboard into the corresponding section above and the final line passes those to the API and authenticates you to Twitter.

api.update_status(status=tweetstr)

We have what we want to tweet and we are authenticated against the API, lets send that tweet. Remember the string tweetstr we built early by combining our message + date and timestamp? Now we are sending that string in full as a Twitter status update or tweet.

Part 2 will see us execute our script as well as create more for restarting and startup confirmation.

Tweeting with Python - This article is part of a series.
Part 1: This Article

Related

Mining Bitcoins with Raspberry Pi - Part 3
·405 words·2 mins
tech bitcoin cgminer cryptocurrency debian iot linux raspberry-pi raspbian technology
Continuing on from the good work we have achieved thus far in Part 1 & Part 2, we are going to complete our Bitcoin Mining journey by making our Raspberry Pi start mining as soon as it is powered on.
Mining Bitcoins with Raspberry Pi - Part 2
·396 words·2 mins
tech bitcoin cgminer cryptocurrency debian iot linux raspberry-pi raspbian technology
In a previous post, we covered how to setup your Raspberry Pi with cgminer along with some USB ASIC mining hardware.
Mining Bitcoins with Raspberry Pi - Part 1
·537 words·3 mins
tech bitcoin cgminer cryptocurrency debian iot linux raspberry-pi raspbian technology
Continuing with my last post’s theme surrounding my recently received Raspberry Pi; after the initial configuration, I put it into action by mining Bitcoins with some Aussie USB ASIC miners I purchased of eBay for $36 (for two).