Paolo Bacci wrote:
Hi, I want to know if there's any functional browser in python.

If not, how can I make it?

There is nothing in python that I would call a functional web browser, assuming that's what you're asking for. There are gtk widgets like GtkHTML (http://en.wikipedia.org/wiki/GtkHTML) and ways to embed Firefox into GTK apps (http://www.mozilla.org/unix/gtk-embedding.html).

Personally, I like reading web pages in my own chosen web browser, not a low-quality html widget or a bizarre embedded window. I recommend this code for opening a web page in the user's preferred browser:

    import webbrowser
    webbrowser.open('http://www.python.org/')

--
Tim Evans
Applied Research Associates NZ
http://www.aranz.com/
_______________________________________________
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to