summaryrefslogtreecommitdiff
path: root/src/examples/greetingInGreek.py
blob: 07a8f0aef51c168c88e486eb84c1d776081e2a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# vim:fileencoding=utf-8 
#
# greetingInGreek.py
#
# Demonstration of the parsing module, on the prototypical "Hello, World!" example
#
from pyparsing import Word 

# define grammar
alphas = ''.join(chr(x) for x in range(0x386, 0x3ce)) 
greet = Word(alphas) + ',' + Word(alphas) + '!' 

# input string
hello = "Καλημέρα, κόσμε!".decode('utf-8') 

# parse input string
print(greet.parseString( hello ))