Faster way than .csv to upload data into Django app

Right now I copy a whole table from a website, paste it into a cell on an excel spreadsheet and it formats it into a .csv file.

After the .csv is made I upload the file into my database via a Django app.

I also have a model form if I wanted to enter the data manually.

What I was wondering is if there is a way to skip a step to make the process faster. Maybe copy the table from the web and paste it into a form cell and it gets formatted like excel does.

Any tips or ideas are greatly appreciated.