-
Notifications
You must be signed in to change notification settings - Fork 0
/
movie_quote.py
79 lines (52 loc) · 1.61 KB
/
movie_quote.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
69
70
71
72
73
74
75
76
77
78
79
# -*- coding: utf-8 -*-
"""
Created on Fri Jan 12 20:39:02 2018
@author: pnadolny
"""
import logging
from flask import Flask, render_template
from flask_ask import Ask, question, session
app = Flask(__name__)
ask = Ask(app, "/")
logging.getLogger("flask_ask").setLevel(logging.DEBUG)
import pymysql
#rds settings
hostname = ""
username = ""
password = ""
database = ""
@ask.launch
def new_game():
start_new_game = render_template('welcome')
return question(start_new_game).reprompt(start_new_game)
@ask.intent("YesIntent")
def start():
print ("Using pymysql…")
myConnection = pymysql.connect( host=hostname, user=username, passwd=password, db=database )
quote_movie = getQuote( myConnection )
quote = quote_movie[0]
movie = quote_movie[1]
print("Movie is: " + movie)
print("quote is: " + quote)
session.attributes['movie'] = movie
myConnection.close()
start = render_template('start', quote=quote)
return question(start).reprompt(start)
@ask.intent("MovieIntent")
def check_movie(movie):
correctMovie = session.attributes['movie']
if movie.lower() == correctMovie.lower():
response = render_template('correctResponse')
else:
response = render_template('incorrectResponse')
return question(response).reprompt(response)
def getQuote( conn ) :
cur = conn.cursor()
cur.execute( "SELECT quote, movie FROM quotes ORDER BY RAND() LIMIT 1;")
list = []
for col1, col2 in cur.fetchall() :
list.append(col1)
list.append(col2)
return list;
if __name__ == '__main__':
app.run(debug=True)