Here is a simple browser in Python Webkit Gtk:
#!/usr/bin/python
import gtk
import webkit
view = webkit.WebView()
sw = gtk.ScrolledWindow()
sw.add(view)
win = gtk.Window(gtk.WINDOW_TOPLEVEL)
win.add(sw)
win.show_all()
view.open("https://www.kernel.org/")
gtk.main()
Browsing works perfectly. Unfortunately, it does not work to save files on the local computer. I could not find a ready solution. I do not need a progress bar, folder selection, I want to click on the link resulted in downloading. Do you know the easiest way to save files to the directory /home/user?
As it says in the docs, you have to connect to the
mime-type-policy-decision-requested
anddownload-requested
signals.Then you check the mime-type and decide if you want to download it:
When
download-requested
is emitted afterwards, you can let theWebKit.Download
object handle the download or (in this case) do it with python: