Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/parser/example (copia).py~
blob: 4dfe779013c0292c425089deba78f37dba65d679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python

from subprocess import Popen


def say(text):
    Popen(['espeak', '-v', 'es', text])


def main():
    say('Hola tch')


if __name__ == "__main__":
    main()