-
Notifications
You must be signed in to change notification settings - Fork 563
Expand file tree
/
Copy pathapp.py
More file actions
149 lines (112 loc) · 3.72 KB
/
app.py
File metadata and controls
149 lines (112 loc) · 3.72 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#----------------------------------------------------------------------------#
# Imports
#----------------------------------------------------------------------------#
import json
from flask import Flask, render_template, request
# from flask.ext.sqlalchemy import SQLAlchemy
import logging
import pandas as pd
from logging import Formatter, FileHandler
from forms import *
import os
import random
#----------------------------------------------------------------------------#
# App Config.
#----------------------------------------------------------------------------#
app = Flask(__name__)
app.config.from_object('config')
#db = SQLAlchemy(app)
# Automatically tear down SQLAlchemy.
'''
@app.teardown_request
def shutdown_session(exception=None):
db_session.remove()
'''
# Login required decorator.
'''
def login_required(test):
@wraps(test)
def wrap(*args, **kwargs):
if 'logged_in' in session:
return test(*args, **kwargs)
else:
flash('You need to login first.')
return redirect(url_for('login'))
return wrap
'''
#----------------------------------------------------------------------------#
# Controllers.
#----------------------------------------------------------------------------#
class Point:
def __init__(self, lat, lng, count):
self.lat = lat
self.lng = lng
self.count = count
def to_dict(self):
return {
'lat': self.lat,
'lng': self.lng,
'count': self.count
}
def generateRandomPoints(numPoints):
pointList = []
for x in range(0, numPoints):
pointObj = Point(random.randint(-100, 100), random.randint(-100, 100), random.randint(0, 50))
pointList.append(pointObj)
return pointList
@app.route('/')
def home():
df = pd.read_csv('data.csv').drop('Open', axis=1)
chart_data = df.to_dict(orient='records')
chart_data = json.dumps(chart_data, indent=2)
point_data = generateRandomPoints(5000)
df2 = pd.DataFrame.from_records([ point.to_dict() for point in point_data])
point_data = df2.to_dict(orient="records")
point_data = json.dumps(point_data, indent=2)
data = {'chart_data': chart_data, 'point_data': point_data}
print(data)
return render_template('pages/placeholder.home.html', data=data)
@app.route('/about')
def about():
return render_template('pages/placeholder.about.html')
@app.route('/login')
def login():
form = LoginForm(request.form)
return render_template('forms/login.html', form=form)
@app.route('/register')
def register():
form = RegisterForm(request.form)
return render_template('forms/register.html', form=form)
@app.route('/forgot')
def forgot():
form = ForgotForm(request.form)
return render_template('forms/forgot.html', form=form)
# Error handlers.
@app.errorhandler(500)
def internal_error(error):
#db_session.rollback()
return render_template('errors/500.html'), 500
@app.errorhandler(404)
def not_found_error(error):
return render_template('errors/404.html'), 404
if not app.debug:
file_handler = FileHandler('error.log')
file_handler.setFormatter(
Formatter('%(asctime)s %(levelname)s: %(message)s [in %(pathname)s:%(lineno)d]')
)
app.logger.setLevel(logging.INFO)
file_handler.setLevel(logging.INFO)
app.logger.addHandler(file_handler)
app.logger.info('errors')
#----------------------------------------------------------------------------#
# Launch.
#----------------------------------------------------------------------------#
# Default port:
if __name__ == '__main__':
app.run()
# Or specify port manually:
'''
if __name__ == '__main__':
port = int(os.environ.get('PORT', 5000))
app.run(host='0.0.0.0', port=port)
'''