This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Grabbing current tweets using python's tweepy module | |
''' | |
from tweepy import Stream | |
from tweepy import OAuthHandler | |
from tweepy.streaming import StreamListener | |
import logging | |
# get the twitter keys from https://dev.twitter.com/ | |
ckey = *** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess, datetime, time | |
welcome = "Hello Siva, welcome" | |
s = '-s 140' | |
g = '-g 0.8' | |
f = '-vf3' | |
a = '-a 150' | |
day = datetime.date.today().strftime('%A') | |
month = datetime.date.today().strftime('%B') | |
date = datetime.date.today().strftime('%d') |
NewerOlder