11 lines
137 B
Python
Executable File
11 lines
137 B
Python
Executable File
#!/sf/bernina/applications/bm/envs/default/bin/python
|
|
import sys
|
|
import pyttsx3
|
|
e = pyttsx3.init()
|
|
e.say(sys.argv[1])
|
|
e.runAndWait()
|
|
|
|
|
|
|
|
|