Re: best way to generate PDFs in django - handling concurrency

2018-12-28 Thread Shashank Singh
Celery + django + rabbitmq + template+ django-hardcopy https://github.com/loftylabs/django-hardcopy On Sat, 29 Dec, 2018, 9:17 AM Danny Blaker Great. Thanks > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this

Re: best way to generate PDFs in django - handling concurrency

2018-12-28 Thread Danny Blaker
Great. Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Re: best way to generate PDFs in django - handling concurrency

2018-12-27 Thread mazz ahmed
Use wkhtmltopdf package for that bro. On Fri, Dec 28, 2018 at 12:02 PM Danny Blaker wrote: > Thanks! > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to

Re: best way to generate PDFs in django - handling concurrency

2018-12-27 Thread Carsten Fuchs
Hello, in my project, using ReportLab exactly as documented works very well. Best regards, Carsten Am 28.12.18 um 00:05 schrieb Danny Blaker: > we're building an app for the council where users fill in a form, then we > generate a PDF (containing a page of text), and users get a download link

Re: best way to generate PDFs in django - handling concurrency

2018-12-27 Thread Danny Blaker
Thanks! -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Re: best way to generate PDFs in django - handling concurrency

2018-12-27 Thread Peter van der Does
On 12/27/18 6:05 PM, Danny Blaker wrote: > we're building an app for the council where users fill in a form, then > we generate a PDF (containing a page of text), and users get a > download link on the homepage.  > we expect many users to submit forms concurrently. > > I see 2 approaches: > > 1.

best way to generate PDFs in django - handling concurrency

2018-12-27 Thread Danny Blaker
we're building an app for the council where users fill in a form, then we generate a PDF (containing a page of text), and users get a download link on the homepage. we expect many users to submit forms concurrently. I see 2 approaches: 1. Generate in the view as per documentation :