0
我正在使用熊貓閱讀從我的jquery發送過來的.csv文件。用戶將上傳這些文件到我的網站,所以我不會提前知道文件名。是否有可能在我的Python代碼中的某處提取文件名?這是我讀取csv文件的cherrypy腳本。從csv獲取文件名發送到jQuery與cherrypy?
@cherrypy.expose
def submit(self, myfile):
cherrypy.session['myfile'] = myfile
self.data = DataFrame(pd.read_csv(myfile.file))
data_html = data_to_html(self.data)
return data_html