Answer the question
In order to leave comments, you need to log in
Question on parsing the exchange rate from json to python. How to implement automatic updating of a variable in code?
import requests
import json
url = 'https://blockchain.info/ticker'
def btc():
global btc
response = requests.get(url)
json_data = json.loads(response.text)
price = json_data['RUB']
btc = price['last']
btc()
btc = btc
Answer the question
In order to leave comments, you need to log in
After you run the btc() function, the btc function is replaced by a number. So just calling the function something else should help. For example, UpdatePrice. That is, it will be like this:
url = ' https://blockchain.info/ticker '
def UpdatePrice():
response = requests.get(url)
json_data = json.loads(response.text)
price = json_data['RUB']
btc = price['last']
return btc
btc = UpdatePrice()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question