Flask import CSV into pandas df
问题 I am attempting to create an app where the user could click a button to upload a CSV file into Pandas (hoping to do more in pd if I can get this work) and then display the data. Can someone give me a tip? I apologize in advance if its basic stuff, there isnt a lot of wisdom here: app.py from flask import Flask, make_response, request import pandas as pd app = Flask(__name__) @app.route('/') def form(): return """ <html> <body> <h1>Economizer Diagnostics</h1> <form action="/transform" method=