summaryrefslogtreecommitdiff
path: root/client/modules/Time.py
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-07-23 21:21:17 -0700
committerschneefux <schneefux+commit@schneefux.xyz>2014-07-23 21:21:17 -0700
commit2c55f4da462383ee6c7b89ea44e5c40cd5badf0c (patch)
tree078672f2b221cfb7d0aa765f438002a277914c9f /client/modules/Time.py
parent8a5e5ed385a5c467260c2f1b20816a66cebfc1c6 (diff)
downloadjasper-client-2c55f4da462383ee6c7b89ea44e5c40cd5badf0c.tar.gz
jasper-client-2c55f4da462383ee6c7b89ea44e5c40cd5badf0c.zip
Google STT works on OS X
Diffstat (limited to 'client/modules/Time.py')
-rw-r--r--client/modules/Time.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/client/modules/Time.py b/client/modules/Time.py
deleted file mode 100644
index 2fe8a10..0000000
--- a/client/modules/Time.py
+++ /dev/null
@@ -1,33 +0,0 @@
-import datetime
-import re
-from app_utils import getTimezone
-from semantic.dates import DateService
-
-WORDS = ["TIME"]
-
-
-def handle(text, mic, profile):
- """
- Reports the current time based on the user's timezone.
-
- Arguments:
- text -- user-input, typically transcribed speech
- mic -- used to interact with the user (for both input and output)
- profile -- contains information related to the user (e.g., phone number)
- """
-
- tz = getTimezone(profile)
- now = datetime.datetime.now(tz=tz)
- service = DateService()
- response = service.convertTime(now)
- mic.say("It is %s right now." % response)
-
-
-def isValid(text):
- """
- Returns True if input is related to the time.
-
- Arguments:
- text -- user-input, typically transcribed speech
- """
- return bool(re.search(r'\btime\b', text, re.IGNORECASE))