-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change comma separator from ',' to ';' #60
Comments
In parsers.py we have line 39 Soo..I sugesting maybe to made 2 options
rest_framework_csv.parsers.CSVParser with ('delimiter', ',') |
You're looking to change the CSV output to have To create a renderer that uses semicolons, you could do something like: class MyCustomRenderer (CSVRenderer):
writer_opts = dict(
delimiter=';',
) Then you could use that renderer on a per-view basis, or set it in the |
Yes, thank you for correct way.
By my opinion this should be done as: |
This could go in the readme 🙂 |
How we can easy change comma separator from ',' to ';' in .csv file?
The text was updated successfully, but these errors were encountered: