Search results

  1. T

    Browser engine encoding, Python / C++

    Thanks for your response. I have Python working with libwebkitgtk 1 #!/usr/bin/python 2 3 import gtk 4 import webkit 5 import sys 6 7 class Browser( object ) : 8 def __init__( self, path, title = None ) : 9 win = gtk.Window() { . . . } The code I mostly put...
  2. T

    Browser engine encoding, Python / C++

    I'm working on an IDE and I'd like it to run in its own browser. I see lots of good docs for doing this in C++ and I can handle that but I'd like to write it in Python so the code itself is available for hacking to a larger group of people. The IDE itself will not be a heavy process so the...
Top