Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

use python pandas convert csv to html

I have a csv file and need to convert to html format. I know python pandas can do it with DataFormat.to_html(), but could not figure out what value to put in the (). I have:

pd.DataFrame.to_html(class=myfile.csv) 

but got issue with it. Anyone has idea?

like image 223
Peter Chao Avatar asked Jan 06 '23 23:01

Peter Chao


1 Answers

You need to put there dataframe:

df = pd.read_csv("myfile.csv")
df.to_html('your_file.html')
like image 193
Anton Protopopov Avatar answered Jan 14 '23 16:01

Anton Protopopov