Please do not spend more than 3 hours on this.
- Fork this repo
- Write a small app that accepts a csv file as an upload. The csv file is a contact list. The contents of the list need to be inserted into a database. There needs to be a way to view and delete after the upload.
- Either demonstrate in code or provide an explanation in this README on how you would handle very large files.
- Either demonstrate in code or provide an explanation in this README on how you would handle different encodings.
- Submit this as a pull request.
- Process row by row instead of reading it all at once.
- Use the example in the python.org documentation, where you use
encode('utf-8')
.