-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.py
More file actions
94 lines (67 loc) · 2.16 KB
/
app.py
File metadata and controls
94 lines (67 loc) · 2.16 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
# -*- encoding: utf-8 -*-
"""
Copyright (c) 2019 - present AppSeed.us
License: MIT
"""
import os, logging, json
from datetime import datetime
# import Flask
from flask import Flask, render_template, send_from_directory, request, flash, redirect
from util import csv_to_json, list_csv_files, get_tail, get_date_ms
# Inject Flask magic
app = Flask(__name__, static_folder="static")
# Config
app.config['CSRF_ENABLED'] = True
app.config['SECRET_KEY'] = 'Super_s3cret777'
# Default Route
@app.route('/')
def index():
return render_template( 'index.html', segment='index.html' )
# Data Tables pages
@app.route('/datatables/', methods=['GET', 'POST'])
def datatables():
# Page data used in POST & GET
msg = ''
input = ''
csv_files = []
for f in list_csv_files('samples'):
csv_files.append( get_tail( f ) )
if request.method == 'POST':
if 'file' not in request.files:
msg = 'No file part'
return redirect(request.url)
file = request.files['file']
if file.filename == '':
msg = 'No file'
return redirect(request.url)
if file:
filename = file.filename.replace( '.csv', '_' + get_date_ms() + '.csv' )
file.save(os.path.join('samples', filename))
msg = 'File saved: ' + filename
csv_files.append( filename )
else:
input = request.args.get('input')
if not input:
input = 'data.csv'
return render_template( 'datatables.html', input=input, csv_files=csv_files, msg=msg )
# Data Tables pages
@app.route('/api/from_csv')
def load_csv():
input = request.args.get('input')
if not input:
input = 'data.csv'
aPath = os.path.join(app.root_path, 'samples', input )
data = csv_to_json( aPath )
response = app.response_class(
response=json.dumps( data ),
status=200,
mimetype='application/json'
)
return response
# Data Tables pages
@app.route('/api/from_json')
def load_json():
return send_from_directory(os.path.join(app.root_path, 'samples'), 'data.json')
# For Python Bootstrap
if __name__ == "__main__":
app.run()