gatensj / DRF-excel-renderers

This is a copy of the DRF excel project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

# django-rest-framework-excel A custome render to Excel 2010 xlsx files using openpyxl

Usage

views.py

from rest_framework.views import APIView
from rest_framework.settings import api_settings
from rest_framework_excel.renderers import ExcelRenderer

class MyView (APIView):
    renderer_classes = [ExcelRenderer] + api_settings.DEFAULT_RENDERER_CLASSES
    ...

About

This is a copy of the DRF excel project.

License:Apache License 2.0


Languages

Language:Python 100.0%