Re: PDF generator in Django

2013-08-06 Thread Mario Gudelj
https://code.google.com/p/wkhtmltopdf/ does a good job for us. We just call the shell script from python. On 6 August 2013 22:27, Gustavo Andrés Angulo wrote: > Hi, > > > Which is best tool to generate PDF in python django > > > > Is hard to say which is better, please make a selection and > ch

Re: PDF generator in Django

2013-08-06 Thread Gustavo Andrés Angulo
Hi, > Which is best tool to generate PDF in python django > Is hard to say which is better, please make a selection and choose which you like best, I use relatorio[1] by the ease with which users can customize their report. [1] https://pypi.python.org/pypi/relatorio Regards. > -- > You re

Re: PDF generator in Django

2013-08-06 Thread Jonas Geiregat
On 04/08/2013, navnath gadakh wrote: > Which is best tool to generate PDF in python django I sucessfully used django-appypod before. It uses a rather strange library called appy.pod that uses openoffice odt files as a template. If you have an openoffice server running you can generate a pdf out o

Re: PDF generator in Django

2013-08-06 Thread Christian Schmitt
We use Weasyprint. http://weasyprint.org/ Am Montag, 5. August 2013 08:48:40 UTC+2 schrieb navnath gadakh: > > Which is best tool to generate PDF in python django > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: PDF generator in Django

2013-08-05 Thread Ovnicraft
On Mon, Aug 5, 2013 at 11:46 PM, Harjot Mann wrote: > On Tue, Aug 6, 2013 at 9:17 AM, Ovnicraft wrote: > > I recommend you use wkhthmltopdf, it is a great library and you can use > any > > JS library to render graphs. > > > How can we use it in django? > wkhtmltopdf convert pages to pdf, if you

Re: PDF generator in Django

2013-08-05 Thread Harjot Mann
On Tue, Aug 6, 2013 at 9:17 AM, Ovnicraft wrote: > I recommend you use wkhthmltopdf, it is a great library and you can use any > JS library to render graphs. How can we use it in django? -- Harjot Kaur Mann Blog: http://harjotmann.wordpress.com/ -- You received this message because you are s

Re: PDF generator in Django

2013-08-05 Thread Ovnicraft
On Mon, Aug 5, 2013 at 1:48 AM, navnath gadakh wrote: > Which is best tool to generate PDF in python django I recommend you use wkhthmltopdf, it is a great library and you can use any JS library to render graphs. Regards, > -- > You received this message because you are subscribed to the Goo

Re: PDF generator in Django

2013-08-05 Thread Nick Apostolakis
Hello there, I have used the report lab library with good results for simple PDF with tabular data On 5 Aug 2013 16:27, "graeme" wrote: > I recently used Latex and it worked fairly well. > > I had to write a little function to escape latex special characters, and > you have to be a bit careful wi

Re: PDF generator in Django

2013-08-05 Thread graeme
I recently used Latex and it worked fairly well. I had to write a little function to escape latex special characters, and you have to be a bit careful with some characters when mixing Latex and Django templates. It would not be easy if you needed to insert formatted text into the template, but

Re: PDF generator in Django

2013-08-05 Thread Oivvio Polite
On Sun, Aug 04, 2013 at 11:48:40PM -0700, navnath gadakh wrote: > Which is best tool to generate PDF in python django > I've been using wkhtmltopdf as well. It's very easy to use. Results are ok, but not stellar. Sometimes the font kerning feels a bit of. I use it to generate PDF invoices and for

Re: PDF generator in Django

2013-08-05 Thread Sanjay Bhangar
On Mon, Aug 5, 2013 at 12:27 PM, Nigel Legg wrote: > I'm currently looking at ReportLab following > https://docs.djangoproject.com/en/dev/howto/outputting-pdf/ - but open to > suggestions. > > i have used wkhtmltopdf for this .. not a django / python tool per se, but I could make my pages as norm

Re: PDF generator in Django

2013-08-04 Thread Nigel Legg
I'm currently looking at ReportLab following https://docs.djangoproject.com/en/dev/howto/outputting-pdf/ - but open to suggestions. Regards, Nigel Legg 07914 740972 http://www.trevanianlegg.co.uk http://twitter.com/nigellegg http://uk.linkedin.com/in/nigellegg On 5 August 2013 07:48, navnath ga