I need to get the HTTP result, specifically the part with the BTC, ETH and USD prices (Under converted last in the image) and then save it as a variable in python so that I can display the price in the application. IDE: Pycharm Professional OS: Windows 10 I can also put the GET request for the URL into the python script, I just don't know how to narrow down the HTTP result to just the numbers in between the : and the , then save it as a variable to be displayed to the user I need to be able to save this piece of a http return from a get request
},
"last": 46775.88,
"volume": 410.2487549,
"converted_last": {
"btc": 0.99807622,
"eth": 11.872556,
"usd": 46893
},
and narrow it down to just BTC ETH and USD and then save it as a variable to be displayed to the user.