예제 #1
0
 def exchange_gbpusd(self):
     find_price_tag = Processing().find_html_id(self.got_html, "GBPUSD_detail_bid")
     bid_price = Processing().get_price_text(find_price_tag)
     return float(bid_price)
예제 #2
0
 def exchange_eurgbp(self):
     find_price_tag = Processing().find_html_id(self.got_html, "EURGBP_detail_bid")
     bid_price = Processing().get_price_text(find_price_tag)
     return float(bid_price)
예제 #3
0
 def exchange_usdchf(self):
     find_price_tag = Processing().find_html_id(self.got_html, "USDCHF_detail_bid")
     bid_price = Processing().get_price_text(find_price_tag)
     return float(bid_price)