This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Dict, List | |
import csv | |
from rest_framework import status | |
from rest_framework.response import Response | |
from rest_framework.parsers import JSONParser, BaseParser | |
from rest_framework.views import APIView | |
class CSVTextParser(BaseParser): | |
""" | |
A CSV parser for DRF APIViews. |