Re: python html 2 image (png)

2006-10-26 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, Diez B. Roggisch wrote: > Whatever lunix is, […] An operating system for the Commodore 64. `LUnix NG` Website: http://lng.sourceforge.net/ :-) Ciao, Marc 'BlackJack' Rintsch -- http://mail.python.org/mailman/listinfo/python-list

Re: python html 2 image (png)

2006-10-26 Thread joe Li
Thanks a lot.Please forgive my careless mistake, I am completely a new user^-^2006/10/26, Fredrik Lundh <[EMAIL PROTECTED]>: joe Li wrote:> **class Bunch(object):> def __init__(self, **fields): > self.__dict__ = fields>> p = Bunch(x=2.3, y=4.5)> print p>> print p.__dict__>> I dont' unde

Re: python html 2 image (png)

2006-10-26 Thread Fredrik Lundh
joe Li wrote: > **class Bunch(object): > def __init__(self, **fields): > self.__dict__ = fields > > p = Bunch(x=2.3, y=4.5) > print p > > print p.__dict__ > > I dont' understand the usage of the double * here, could anyone explain > it for me? if you're

Re: python html 2 image (png)

2006-10-26 Thread joe Li
class Bunch(object):    def __init__(self, **fields):     self.__dict__ = fields    p = Bunch(x=2.3, y=4.5)print p print p.__dict__I dont' understand the usage of the double * here, could anyone explain it for me? thanks. -- http://mail.python.org/mailman/listinfo/pyth

Re: python html 2 image (png)

2006-10-26 Thread baur79
thanks Diez i will start with your suggestions let see what happen On Oct 25, 11:27 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] schrieb: > > >> what tools are you using to do that today? > > > where are many of EXE programs > > but i need python solution for adding it to

Re: python html 2 image (png)

2006-10-25 Thread Diez B. Roggisch
[EMAIL PROTECTED] schrieb: >> what tools are you using to do that today? > > where are many of EXE programs > but i need python solution for adding it to my automate program under > lunix Whatever lunix is, under linux, a popular free OS you could e.g. use PyKDE and let Qt render a KHTML-compone

Re: python html 2 image (png)

2006-10-25 Thread baur79
> what tools are you using to do that today? where are many of EXE programs but i need python solution for adding it to my automate program under lunix Fredrik Lundh wrote: > [EMAIL PROTECTED] wrote: > > > how can i render html page to png image > > ex: > > > > http://www.website.com/index.html

Re: python html 2 image (png)

2006-10-25 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > how can i render html page to png image > ex: > > http://www.website.com/index.html -> index.png what tools are you using to do that today? -- http://mail.python.org/mailman/listinfo/python-list

python html 2 image (png)

2006-10-25 Thread baur79
hi everyone how can i render html page to png image ex: http://www.website.com/index.html -> index.png thanks a lot -- http://mail.python.org/mailman/listinfo/python-list