-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteractiveexample.py
69 lines (40 loc) · 1.17 KB
/
interactiveexample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from chatpybot import ChatBot
__author__ = 'xorduna'
cb = ChatBot()
@cb.answer(answer='A Barcelona', next='barcelona')
@cb.answer(answer='A Madrid', next='madrid')
@cb.step(next='altra_ciutat')
@cb.set_start
def inici(answer):
return 'On Vols viatjar?'
@cb.answer(answer='Jove', next='bcn_jove')
@cb.answer(answer='Adult', next='bcn_adult')
@cb.step(next='edat')
def barcelona(answer):
return 'Quina edat tens?'
@cb.step(next='inici')
def altra_ciutat(answer):
return 'Quina bona idea anar a ' + unicode(answer)
@cb.step(next='inici')
def edat(answer):
return 'Sembles jove per tenir ' + unicode(answer)
@cb.step(next='inici')
def bcn_jove(answer):
return 'Pots anar a Razzmataz'
@cb.step(next='inici')
def bcn_adult(answer):
return 'Pots anar a la sagrada familia'
@cb.step(next='inici')
def madrid(answer):
return 'No tinc idees per Madrid!'
step = cb.start_conversation()
a = ''
while True:
response = step.response(a)
print response
print 'Possible Answers:'
if step.has_answers():
for answer in step.available_answers():
print answer
a = raw_input('Your Answer: ')
step = cb.next_step(step, a)