#
# Copyright (c) 2017 Mycroft AI, Inc.
#
# This file is part of Mycroft Simple
# (see https://github.com/MatthewScholefield/mycroft-simple).
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
import time
from datetime import datetime
from mycroft.skills.mycroft_skill import MycroftSkill
[docs]class TimeSkill(MycroftSkill):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.register_intent('time', self.time)
self.register_intent('date', self.date)
self.months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October',
'November', 'December']
self.suffixes = ['th', 'st', 'nd', 'rd'] + ['th'] * 6
def _get_suffix(self, n):
if int(n / 10) % 10 == 1:
return 'th'
return self.suffixes[n % 10]
[docs] def time(self, intent_data):
self.add_result('time', time.strftime('%l:%M %p'))
[docs] def date(self, intent_data):
date = datetime.today()
self.add_result('day', date.day)
self.add_result('day_suffix', self._get_suffix(date.day))
self.add_result('month', date.month)
self.add_result('month_name', self.months[date.month - 1])
self.add_result('year', date.year)
self.add_result('year_short', str(date.year)[2:])