11 lines
146 B
Python
Executable File
11 lines
146 B
Python
Executable File
#!/sf/bernina/anaconda/bernina_envs/bernina_default/bin/python
|
|
import sys
|
|
import pyttsx3
|
|
e = pyttsx3.init()
|
|
e.say(sys.argv[1])
|
|
e.runAndWait()
|
|
|
|
|
|
|
|
|