Skip to content

Instantly share code, notes, and snippets.

View chmodsss's full-sized avatar
🎵

Sivasurya Santhanam chmodsss

🎵
View GitHub Profile
'''
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 = ***
@chmodsss
chmodsss / welcome_greeter.py
Last active July 13, 2016 07:29
python script using espeak for voice greeting with time and weather during system startup
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')