Skip to content

Instantly share code, notes, and snippets.

@jonperron
Last active November 30, 2023 17:29
Show Gist options
  • Star 24 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jonperron/733c3ead188f72f0a8a6f39e3d89295d to your computer and use it in GitHub Desktop.
Save jonperron/733c3ead188f72f0a8a6f39e3d89295d to your computer and use it in GitHub Desktop.
Serve pandas dataframe as csv with Django
from django.http import HttpResponse
import pandas as pd
def foo():
results = pd.Dataframe()
response = HttpResponse(content_type='text/csv')
response['Content-Disposition'] = 'attachment; filename=filename.csv'
results.to_csv(path_or_buf=response,sep=';',float_format='%.2f',index=False,decimal=",")
return response
@HungryGnu
Copy link

Thanks, you saved me a lot of time!

Copy link

ghost commented Oct 5, 2018

Thank you for posting that!

@danielalejandroamaro
Copy link

Thank you!!

@kittinan
Copy link

Thank you

@liuzheng1990
Copy link

Great post! Thanks. By the way, should the results.to_csv in the 10th line be your_dataframe.to_csv?

@jonperron
Copy link
Author

Yes indeed ! Thank you for spotting my typo

@DanielVF
Copy link

DanielVF commented Dec 6, 2019

Thank you for sharing!

@joeng03
Copy link

joeng03 commented May 4, 2020

Thanks a lot, this saved me a lot of time!

@deibanez
Copy link

deibanez commented Jul 1, 2020

genial!

@nitinraturi
Copy link

Thanks man, saved time

@fistons
Copy link

fistons commented Aug 18, 2020

Amazing!

@ioena07
Copy link

ioena07 commented Aug 30, 2020

Thank you so much! - it's brilliant!

@himanshu-patel-dev
Copy link

himanshu-patel-dev commented Oct 24, 2020

Thank you so much -- found it after a long struggle but really helpful.
between
results.to_csv(path_or_buf=response,sep=';',float_format='%.2f',index=False,decimal=",")
can be just
results.to_csv(path_or_buf=response)
if user do not want to go much in details of csv format and getting desired results.

@georgmzimmer
Copy link

perfect

@kadiagdg
Copy link

kadiagdg commented Dec 1, 2021

thank you so much !

@HOLL4ND
Copy link

HOLL4ND commented Mar 31, 2022

nice

@PingoLee
Copy link

Perfect

@harshavardhannarla
Copy link

Thank you

@Muhammadb1094
Copy link

That's good, worked in just 1st try.. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment