forked from appditto/natrium-wallet-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prices_banano.py
63 lines (55 loc) · 2.75 KB
/
prices_banano.py
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import redis
import urllib3
import certifi
import socket
import rapidjson as json
import time
import os
import sys
import requests
rdata = redis.StrictRedis(host=os.getenv('REDIS_HOST', 'localhost'), port=6379, db=int(os.getenv('REDIS_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", "SAR", "AED", "KWD"]
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'))