def call_toki(file_name, file_out) : 
	command = 'toki-app -q -f "\$bs| \$orth" < ' + file_name + ' > ' + file_out
	command_line_utils.call_command(command)
Ejemplo n.º 2
0
def call_toki(file_name, file_out):
    command = 'toki-app -q -f "\$bs| \$orth" < ' + file_name + ' > ' + file_out
    command_line_utils.call_command(command)
Ejemplo n.º 3
0
def get_possibilities(word):
    command = "echo '" + word + "' | morfeusz_generator "
    return command_line_utils.call_command(command)
def get_possibilities(word) :
    command = "echo '" + word + "' | morfeusz_generator "
    return command_line_utils.call_command(command)