-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction-GetTranslation.py
More file actions
executable file
·50 lines (39 loc) · 1.72 KB
/
action-GetTranslation.py
File metadata and controls
executable file
·50 lines (39 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import configparser
from hermes_python.hermes import Hermes
from hermes_python.ffi.utils import MqttOptions
from hermes_python.ontology import *
from googletrans import Translator
import io
CONFIGURATION_ENCODING_FORMAT = "utf-8"
CONFIG_INI = "config.ini"
class SnipsConfigParser(configparser.SafeConfigParser):
def to_dict(self):
return {section : {option_name : option for option_name, option in self.items(section)} for section in self.sections()}
def read_configuration_file(configuration_file):
try:
with io.open(configuration_file, encoding=CONFIGURATION_ENCODING_FORMAT) as f:
conf_parser = SnipsConfigParser()
conf_parser.readfp(f)
return conf_parser.to_dict()
except (IOError, configparser.Error) as e:
return dict()
def subscribe_intent_callback(hermes, intentMessage):
conf = read_configuration_file(CONFIG_INI)
action_wrapper(hermes, intentMessage, conf)
def action_wrapper(hermes, intentMessage, conf):
if len(intentMessage.slots.wordToTranslate) > 0:
translator = Translator()
wordInGerman = intentMessage.slots.wordToTranslate.first().value
resultFromGoogleApi = translator.translate(wordInGerman)
result_sentence = "Die Übersetzung ist: {}".format(str(resultFromGoogleApi.text))
else:
result_sentence = "Ich konnte keine Übersetzung finden."
current_session_id = intentMessage.session_id
hermes.publish_end_session(current_session_id, result_sentence)
if __name__ == "__main__":
mqtt_opts = MqttOptions()
with Hermes(mqtt_options=mqtt_opts) as h:
h.subscribe_intent("{{intent_id}}", subscribe_intent_callback) \
.start()