Re: How to generate pdf file from an html page??

2007-12-20 Thread MonkeeSage
On Dec 19, 10:17 am, Grant Edwards [EMAIL PROTECTED] wrote: On 2007-12-19, Terry Jones [EMAIL PROTECTED] wrote: Grant == Grant Edwards [EMAIL PROTECTED] writes: Grant On 2007-12-19, abhishek [EMAIL PROTECTED] wrote: Hi everyone, I am trying to generate a PDF printable format file from

Re: How to generate pdf file from an html page??

2007-12-20 Thread Grant Edwards
On 2007-12-20, MonkeeSage [EMAIL PROTECTED] wrote: This looks a little better for me ... | a2ps -B --borders=0 -- columns=1 -f 10.0 | ... Right. I forgot that I've adjusted my a2ps defaults to using a single column and a readable font size instead of the standard 2-up tiny-font mode. --

Re: How to generate pdf file from an html page??

2007-12-19 Thread Stefan Behnel
abhishek wrote: sh: a2ps: not found This should make you think. Sounds like a good reason to install a2ps... Stefan -- http://mail.python.org/mailman/listinfo/python-list

Re: How to generate pdf file from an html page??

2007-12-19 Thread Terry Jones
Grant == Grant Edwards [EMAIL PROTECTED] writes: Grant On 2007-12-19, abhishek [EMAIL PROTECTED] wrote: Hi everyone, I am trying to generate a PDF printable format file from an html page. Is there a way to do this using python. If yes then which library and functions are required and if no

Re: How to generate pdf file from an html page??

2007-12-19 Thread Ismail Dönmez
Wednesday 19 December 2007 17:40:17 tarihinde Terry Jones şunları yazmıştı: Grant == Grant Edwards [EMAIL PROTECTED] writes: Grant On 2007-12-19, abhishek [EMAIL PROTECTED] wrote: Hi everyone, I am trying to generate a PDF printable format file from an html page. Is there a way to do

Re: How to generate pdf file from an html page??

2007-12-19 Thread Grant Edwards
On 2007-12-19, abhishek [EMAIL PROTECTED] wrote: Hi everyone, I am trying to generate a PDF printable format file from an html page. Is there a way to do this using python. If yes then which library and functions are required and if no then reasons why it cant be done. Here's one way:

Re: How to generate pdf file from an html page??

2007-12-19 Thread Grant Edwards
On 2007-12-19, Terry Jones [EMAIL PROTECTED] wrote: Grant == Grant Edwards [EMAIL PROTECTED] writes: Grant On 2007-12-19, abhishek [EMAIL PROTECTED] wrote: Hi everyone, I am trying to generate a PDF printable format file from an html page. Is there a way to do this using python. If yes then

Re: How to generate pdf file from an html page??

2007-12-18 Thread abhishek
On Dec 17, 8:42 pm, Grant Edwards [EMAIL PROTECTED] wrote: On 2007-12-16, abhishek [EMAIL PROTECTED] wrote: Hi everyone, I am trying to generate a PDF printable format file from an html page. Is there a way to do this using python. If yes then which library and functions are required and

Re: How to generate pdf file from an html page??

2007-12-17 Thread abhishek
On Dec 16, 10:21 pm, Zentrader [EMAIL PROTECTED] wrote: I'm sure it can be done but there is no reason to reinvent the wheel unless it's for a programming exercise. You can use pdftohtml and run it from a Python program if you want.http://pdftohtml.sourceforge.net/ Hi Zentrader, thanks for

Re: How to generate pdf file from an html page??

2007-12-17 Thread Grant Edwards
On 2007-12-16, abhishek [EMAIL PROTECTED] wrote: Hi everyone, I am trying to generate a PDF printable format file from an html page. Is there a way to do this using python. If yes then which library and functions are required and if no then reasons why it cant be done. Here's one way:

Re: How to generate pdf file from an html page??

2007-12-16 Thread Zentrader
I'm sure it can be done but there is no reason to reinvent the wheel unless it's for a programming exercise. You can use pdftohtml and run it from a Python program if you want. http://pdftohtml.sourceforge.net/ -- http://mail.python.org/mailman/listinfo/python-list

Re: How to generate pdf file from an html page??

2007-12-16 Thread Zentrader
Sorry, I read that backwards. I do it the opposite of you. Anyway a google for html to pdf python turns up a lot of hits. Again, no reason to reinvent the wheel. -- http://mail.python.org/mailman/listinfo/python-list

Re: How to generate pdf file from an html page??

2007-12-16 Thread Ramsey Nasser
On Dec 16, 2007 7:26 PM, Zentrader [EMAIL PROTECTED] wrote: Sorry, I read that backwards. I do it the opposite of you. Anyway a google for html to pdf python turns up a lot of hits. Again, no reason to reinvent the wheel. -- http://mail.python.org/mailman/listinfo/python-list Like

Re: How to generate pdf file from an html page??

2007-12-16 Thread Shane Geiger
Just some thoughts to get you started: You may not get any responses because you weren't specific enough about what you want to do. Since you are asking about doing this via Python, it seems you want to automate something which can be done from a menu option in various Web browsers (use the

Re: How to generate pdf file from an html page??

2007-12-16 Thread Waldemar Osuch
On Dec 16, 3:51 am, abhishek [EMAIL PROTECTED] wrote: Hi everyone, I am trying to generate a PDF printable format file from an html page. Is there a way to do this using python. If yes then which library and functions are required and if no then reasons why it cant be done. Thank you All