mirror of
https://github.com/rscmbbng/Border-Check.git
synced 2024-12-26 05:50:41 +01:00
21 lines
460 B
Python
Executable File
21 lines
460 B
Python
Executable File
#!/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 import bc
|
|
|
|
class NullOutput(object):
|
|
def write(self, text):
|
|
pass
|
|
def flush(self):
|
|
pass
|
|
|
|
if __name__ == "__main__":
|
|
app = bc()
|
|
options = app.create_options()
|
|
if options:
|
|
app.set_options(options)
|
|
app.run()
|