-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
73 lines (59 loc) · 2.05 KB
/
app.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
from flask import Flask, render_template, request
import os
import pymysql
connection = pymysql.connect(
host='localhost', # IP address of the database; localhost means "the local machine"
user="admin@localhost", #the mysql user
password="password", #the password for the user
database="Chinook" #the name of database we want to use
)
app = Flask(__name__)
@app.route('/')
def index():
cursor = connection.cursor(pymysql.cursors.DictCursor)
sql = "SELECT * FROM Employee"
cursor.execute(sql)
# store results in a list
results = []
for r in cursor:
results.append(r)
return render_template('index.html', data=results)
@app.route('/artist')
def artists():
cursor = connection.cursor(pymysql.cursors.DictCursor)
sql = "SELECT * FROM Artist"
cursor.execute(sql)
results = []
for r in cursor:
results.append(r)
return render_template('artist.html', data=results)
@app.route('/album/<artistId>')
def albums(artistId):
cursor = connection.cursor(pymysql.cursors.DictCursor)
sql = "SELECT * FROM Artist Where ArtistId = {}".format(artistId)
cursor.execute(sql)
artist = cursor.fetchone()
sql = "SELECT * FROM Album WHERE ArtistId = {}".format(artistId)
cursor.execute(sql)
results = []
for r in cursor:
results.append(r)
return render_template('album.html', data=results, artist=artist)
# @app.route('/track')
# def track(albumId):
# cursor = connection.cursor(pymysql.cursors.DictCursor)
# sql = "SELECT * FROM Track WHERE AlbumId = {}".format(albumId)
# cursor.execute(sql)
# results = []
# for r in cursor:
# results.append(r)
# return render_template('track.html', data=results)
@app.route('/mediatype')
def media():
cursor = connection.cursor(pymysql.cursors.DictCursor)
sql = "SELECT * FROM MediaType"
# "magic code" -- boilerplate
if __name__ == '__main__':
app.run(host=os.environ.get('IP'),
port=int(os.environ.get('PORT')),
debug=True)