-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathprices.py
More file actions
44 lines (38 loc) · 2.34 KB
/
prices.py
File metadata and controls
44 lines (38 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import redis, urllib3, certifi, socket, json, time, os, sys, requests
#rblocks = redis.StrictRedis(host='localhost', port=6379, db=0)
#rwork = redis.StrictRedis(host='localhost', port=6379, db=1)
rdata = redis.StrictRedis(host='localhost', port=6379, db=2)
currency_list = [ "ARS", "AUD", "BRL", "BTC", "CAD", "CHF", "CLP", "CNY", "CZK", "DKK", "EUR", "GBP", "HKD", "HUF", "IDR", "ILS", "INR", "JPY", "KRW", "MXN", "MYR", "NOK", "NZD", "PHP", "PKR", "PLN", "RUB", "SEK", "SGD", "THB", "TRY", "TWD", "USD", "ZAR" ]
coingecko_url='https://api.coingecko.com/api/v3/coins/banano?localization=false&tickers=true&market_data=true&community_data=false&developer_data=false&sparkline=false'
def coingecko():
response = requests.get(url=coingecko_url).json()
if 'market_data' not in response:
return
for currency in currency_list:
try:
data_name = currency.lower()
price_currency = float(response['market_data']['current_price'][data_name])
print(rdata.hset("prices", "coingecko:banano-"+data_name, f"{price_currency:.16f}"),"Coingecko BANANO-"+currency, f"{price_currency:.16f}")
except Exception:
exc_type, exc_obj, exc_tb = sys.exc_info()
print('exception',exc_type, exc_obj, exc_tb.tb_lineno)
print("Failed to get price for BANANO-"+currency.upper()+" Error")
# Convert to VES
usdprice = float(rdata.hget("prices", "coingecko:banano-usd").decode('utf-8'))
bolivarprice = float(rdata.hget("prices", "dolartoday:usd-ves").decode('utf-8'))
convertedves = usdprice * bolivarprice
rdata.hset("prices", "coingecko:banano-ves", f"{convertedves:.16f}")
print("Coingecko BANANO-VES", rdata.hget("prices", "coingecko:banano-ves").decode('utf-8'))
# Convert to NANO
xrb_prices = []
for t in response['tickers']:
if t['target'] == 'XRB':
xrb_prices.append(float(t['last']))
nanoprice = sum(xrb_prices) / len(xrb_prices)
rdata.hset("prices", "coingecko:banano-nano", f"{nanoprice:.16f}")
print(rdata.hset("prices", "coingecko:lastupdate",int(time.time())),int(time.time()))
coingecko()
print("Coingecko BANANO-USD:", rdata.hget("prices", "coingecko:banano-usd").decode('utf-8'))
print("Coingecko BANANO-BTC:", rdata.hget("prices", "coingecko:banano-btc").decode('utf-8'))
print("Coingecko BANANO-NANO:", rdata.hget("prices", "coingecko:banano-nano").decode('utf-8'))
print("Last Update: ", rdata.hget("prices", "coingecko:lastupdate").decode('utf-8'))