コード例 #1
0
 def search_stock(self, ticker_symbl):
     stock = Stock()
     stock.get_info(ticker_symbl)
     return stock
コード例 #2
0
 def search_stock(self, ticker_symbl):
     stock = Stock()
     stock.get_info(ticker_symbl)
     return stock
コード例 #3
0
 def __get_current_price(self, ticker_symbl):
     stk = Stock()
     stk.get_info(ticker_symbl)
     return stk.current_price
コード例 #4
0
 def __get_current_price(self, ticker_symbl):
     stk = Stock()
     stk.get_info(ticker_symbl)
     return stk.current_price