The British Pound against the US Dollar is one of the oldest currency pairings in the world.
Due to the current Brexit turbulence, the trading opportunity around GBP can be great!
This daily post is trying to give updates of GPB/USD rate.

Currency data were collected using a currency python API with the follinde code:
from forex_python.converter import CurrencyRates
def collect_currency_data():
c = CurrencyRates()
# price_list = c.get_rates('USD') # you can directly call get_rates('USD')
GBP_USD = c.get_rate('GBP', 'USD')
currency_history_hour= json.load(open('currency_history_hour.json'))
currency_history_hour.update({str(datetime.utcnow())[:-7]:{
'GBP_USD':GBP_USD
}
})
with open('currency_history_hour.json', 'w') as fp:
json.dump(currency_history_hour,fp, indent=4,default=str)
Congratulations @python-dev! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :
You can view your badges on your Steem Board and compare to others on the Steem Ranking
If you no longer want to receive notifications, reply to this comment with the word
STOPTo support your work, I also upvoted your post!
Vote for @Steemitboard as a witness to get one more award and increased upvotes!