mirror of https://github.com/rscmbbng/Border-Check
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
518 B
20 lines
518 B
#!/usr/bin/python
|
|
# -*- coding: iso-8859-15 -*-
|
|
"""
|
|
BC (Border-Check) is a tool to retrieve info of traceroute tests over website navigation routes.
|
|
GPLv3 - 2013 by psy (epsylon@riseup.net)
|
|
"""
|
|
from main_gtk import GuiStarter, GuiUtils
|
|
|
|
try:
|
|
import gtk, gtk.glade
|
|
except:
|
|
print ("\nError importing: Gtk/Glade libs. \n\nOn Debian based systems, please try like root:\n\n $ apt-get install python-gtk2\n")
|
|
sys.exit(2)
|
|
|
|
class BCGTK():
|
|
@staticmethod
|
|
def run():
|
|
GuiStarter()
|
|
gtk.main()
|
|
|
|
|