I receiving a stream of tweets.
I want to check each tweet and if the tweet contains the word hello I don't want to do anything but if it does not include hello I want to print it.
Can't seem to get my code working though.
if "hello" not in data['text'].encode('utf-8'):
print data['text'].encode('utf-8')