mjumbewu / django-rest-framework-csv

CSV Tools for Django REST Framework
BSD 2-Clause "Simplified" License
364 stars 89 forks source link

Support Non UTF-8 Encoding Parsing #72

Closed weasellin closed 6 years ago

weasellin commented 6 years ago

Without passing the encoding/charset parameter to csv.reader, the following exception will be raised when trying to parse non utf-8 encoded csv.

rest_framework.exceptions.ParseError: CSV parse error - 'utf-8' codec can't decode byte 0x83 in position 0: invalid start byte
mjumbewu commented 6 years ago

Beautiful.