The database here in the company generates an Excel report, I need to save this data in a database, initially sqlite3, to be able to display this data in a Django template in the future.
Example of exel:
Nome do profissional,"Situação atual","Endereco E_Mail","Site","Site 2","Nascimento",
ABDIAS VENCESLAU DA SILVA NETO,"Ativo","[email protected]","","","07/07/1977",
Each such data would be stored in the respective Django model and in the database.
What would be the best way to do this? Send suggestions please!