Upload and save csv files with django and react
Select and upload csv file through the frontend. The csv file should contain two fields - name, price
Products model has two fields - name, price
- Once the file is received through a post request,it is parsed inside the ProductCreateView.
- The new Product objects are created and then stored in the database