This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import gi | |
gi.require_version('Gtk', '3.0') | |
gi.require_version('Poppler', '0.18') | |
from gi.repository import GObject, Gtk, Poppler | |
class MyApp(): | |
def __init__(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import gi | |
gi.require_version('NM', '1.0') | |
gi.require_version('Gtk', '3.0') | |
from gi.repository import NM | |
from gi.repository import Gtk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import gi | |
gi.require_version('NM', '1.0') | |
gi.require_version('NMA', '1.0') | |
gi.require_version('Gtk', '3.0') | |
from gi.repository import NM | |
#from gi.repository import NMA |