Need a Vte library for python 3 . How to find her? Found only for python 2 .
- I'm also waiting to be pushed into pygi-aio - eri
- maybe already included? - eri
- and, by the way, vte3 can be hooked to Linux via gi - eri
|
1 answer
VTE3 can be connected in Python 3 via GI .
from gi.repository import Vte builder = Gtk.Builder() builder.add_from_file("mainwindow.glade") builder.connect_signals(self) scrolledterminal = builder.get_object("scrolledterminal") terminal = Vte.Terminal() scrolledterminal.add(terminal)
Here is an example of a poor replacement of this widget for Windows applications https://github.com/alex-eri/mssh/blob/master/terminalwidget.py
|