How would I go around creating a MYSQL table schema inspecting an Excel(or CSV) file. Are there any ready Python libraries for the task?
Column headers would be sani
Pandas can return a schema:
pandas.read_csv('data.csv').dtypes
References: