123456789101112131415161718192021222324252627282930313233343536 |
- #!/usr/bin/env python
- # -*- coding: iso-8859-15 -*-
- """
- BC (Border-Check) is a tool to retrieve info of traceroute tests over website navigation routes.
- GPLv3 - 2013-2014-2015 by psy (epsylon@riseup.net)
- """
- import optparse
- import json
- class BCOptions(optparse.OptionParser):
- def __init__(self, *args):
- optparse.OptionParser.__init__(self,
- prog='bc.py',
- version='\nBC (Border-Check) v0.2 - 2015 - (GPLv3.0)\n',
- usage= '\n\nbc [OPTIONS]')
-
- self.add_option("-w", "--wizard", action="store_true", dest="wizard", help="wizard installer")
- self.add_option("-d", "--debug", action="store_true", dest="debug", help="debug mode")
- self.add_option("-l", action="store", dest="lft_path", help="path to lft (fetch from source or use provided binary)")
- self.add_option("--xml", action="store", dest="export_xml", help="export traces to xml (ex: --xml foo.xml)")
- self.add_option("--load", action="store", dest="import_xml", help="import traces (non root required) (ex: --load bar.xml)")
- self.add_option("--bh", action="store", dest="browser_history", help="set browser's history path")
- self.add_option("-b", action="store", dest="browser", help="set browser type to be used: F = Firefox / C = Chrome / S = Safari / Ch = Chromium / N = None")
- #self.add_option("--proxy", action="store", dest="proxy", help="set proxy server")
- self._options={}
-
- def get_options(self, user_args=None):
- (options, args) = self.parse_args(user_args)
- self._options=options
- return options
- def save_options(self):
- optionfile=open("options.json","w")
- json.dump(self._options,optionfile)
|