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)
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)
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)