bc 475 B

123456789101112131415161718192021
  1. #!/usr/bin/env python2
  2. # -*- coding: iso-8859-15 -*-
  3. """
  4. BC (Border-Check) is a tool to retrieve info of traceroute tests over website navigation routes.
  5. GPLv3 - 2013-2014-2015 by psy (epsylon@riseup.net)
  6. """
  7. from main import bc
  8. class NullOutput(object):
  9. def write(self, text):
  10. pass
  11. def flush(self):
  12. pass
  13. if __name__ == "__main__":
  14. app = bc()
  15. options = app.create_options()
  16. if options:
  17. app.set_options(options)
  18. app.run()