Skip to content

Instantly share code, notes, and snippets.

@sandeepraju
Created November 30, 2012 17:33
Show Gist options
  • Save sandeepraju/4177216 to your computer and use it in GitHub Desktop.
Save sandeepraju/4177216 to your computer and use it in GitHub Desktop.
Time teller python script
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import time
import os
def main():
baseStr = "'The time is, "
currentTime = time.localtime()
currentHour = currentTime.tm_hour
currentMin = currentTime.tm_min
meridian = None
if currentHour < 12:
# Morning
meridian = "AM"
else:
# Afternoon
meridian = "PM"
currentHour -= 12
if currentHour == 0:
currentHour = 12
os.system("espeak " + baseStr + str(currentHour) + " " + str(currentMin) + " " + meridian + "'")
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment