Skip to content

Instantly share code, notes, and snippets.

View Smnthjm08's full-sized avatar
🧿
Focusing

sumanth Smnthjm08

🧿
Focusing
  • india
  • 01:31 (UTC +05:30)
View GitHub Profile
@pansapiens
pansapiens / views.py
Created February 20, 2018 01:26
Django REST Framework CSV parser, RFC 4180
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.