You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
439 B
14 lines
439 B
from flask import Flask, request, make_response, Response, render_template, redirect, url_for, send_from_directory, jsonify
|
|
import pandas as pd
|
|
import os
|
|
import uuid
|
|
app = Flask(__name__, template_folder='templates', static_folder='static', static_url_path='/')
|
|
|
|
@app.route('/', methods=['GET', 'POST'])
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0', port=5000, debug=True)
|