def call_compare(self, other_args): """Process compare command""" parser = argparse.ArgumentParser( add_help=False, formatter_class=argparse.ArgumentDefaultsHelpFormatter, prog="compare", description="Compare selected ETFs [Source: StockAnalysis]", ) parser.add_argument( "-e", "--etfs", type=str, dest="names", help="Symbols to compare", required="-h" not in other_args, ) if other_args and "-" not in other_args[0][0]: other_args.insert(0, "-e") ns_parser = parse_known_args_and_warn( parser, other_args, export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED) if ns_parser: etf_list = ns_parser.names.upper().split(",") stockanalysis_view.view_comparisons(etf_list, export=ns_parser.export)
def call_compare(self, other_args): """Process compare command""" parser = argparse.ArgumentParser( add_help=False, formatter_class=argparse.ArgumentDefaultsHelpFormatter, prog="compare", description="Compare selected ETFs", ) parser.add_argument( "-e", "--etfs", type=str, dest="names", help="Symbols to compare", required="-h" not in other_args, ) parser.add_argument( "--export", choices=["csv", "json", "xlsx"], default="", dest="export", help="Export dataframe data to csv,json,xlsx file", ) try: if other_args: if "-" not in other_args[0]: other_args.insert(0, "-e") ns_parser = parse_known_args_and_warn(parser, other_args) if not ns_parser: return etf_list = ns_parser.names.upper().split(",") stockanalysis_view.view_comparisons(etf_list, export=ns_parser.export) except Exception as e: print(e, "\n")
def test_view_comparisons(symbols, mocker): mocker.patch.object(target=helper_funcs.gtff, attribute="USE_TABULATE_DF", new=False) stockanalysis_view.view_comparisons(symbols, export="")