django-rest-framework-csv
django-rest-framework-csv copied to clipboard
CSV Tools for Django REST Framework
Is there a way to archieve **header** like this?? Thanks... 
Is it an issue with my code or a bug of `django-rest-framework-csv`? ``` class DataList(generics.ListAPIView): ... renderer_classes = [CSVRendererWithUnderscores, ] ... def finalize_response(self, request, response, *args, **kwargs): response = super(DataList,...
Some people may need to get only the lists instead of flattened lists
Since Django provides Fields a verbose_name attribute, it would be nice if that could be specified as the column name. This messes up the flattening maybe though...
`render` method on the main renderer is defined like this: `def render(self, data, media_type=None, renderer_context={}, writer_opts=None):` [here](https://github.com/mjumbewu/django-rest-framework-csv/blob/3ce4222d75cfb6bef57d4da3c0f5ce8c54cf9035/rest_framework_csv/renderers.py#L33) which is both not how other renderers are defined and has a mutable...
In the case I’m currently working on, I don’t know (and have no easy way to retrieve) all CSV headers in advance. It’d be great if this library would expose...
This PR adds the ability to define the CSV column order from within the code Currently, the CSV Parser assumes the first row of CSV data contains the column names....
Hi, When rendering a hierarchical structure, the renderer works fine and the name of the columns are: level.N.sublevel But the parser does not take this structure in account. Instead, it...
How we can easy change comma separator from ',' to ';' in .csv file?
The Ordered Fields section of the documentation should mention this third method which is supported by the renderer: ``` # Try to pull the header off of the data, if...