def search_stock(self, ticker_symbl):
     stock = Stock()
     stock.get_info(ticker_symbl)
     return stock
 def search_stock(self, ticker_symbl):
     stock = Stock()
     stock.get_info(ticker_symbl)
     return stock
 def __get_current_price(self, ticker_symbl):
     stk = Stock()
     stk.get_info(ticker_symbl)
     return stk.current_price
 def __get_current_price(self, ticker_symbl):
     stk = Stock()
     stk.get_info(ticker_symbl)
     return stk.current_price