def show(keyword): """Show support status of specified coins. Keywords match against key, name or shortcut (ticker symbol) of coin. """ defs, _ = coin_info.coin_info_with_duplicates() for kw in keyword: for coin in coin_info.search(defs, kw): print_support(coin)