forked from appditto/natrium-wallet-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prices.py
57 lines (49 loc) · 2.56 KB
/
prices.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
import redis
import rapidjson as json
import os
import time
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/nano?localization=false&tickers=false&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 = response['market_data']['current_price'][data_name]
print(rdata.hset("prices", "coingecko:nano-"+data_name,
price_currency), "Coingecko NANO-"+currency, price_currency)
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 NANO-"+currency.upper()+" Error")
# Convert to VES
usdprice = float(rdata.hget(
"prices", "coingecko:nano-usd").decode('utf-8'))
bolivarprice = float(rdata.hget(
"prices", "dolartoday:usd-ves").decode('utf-8'))
convertedves = usdprice * bolivarprice
rdata.hset("prices", "coingecko:nano-ves", convertedves)
print("Coingecko NANO-VES", rdata.hget("prices",
"coingecko:nano-ves").decode('utf-8'))
# Convert to ARS
price_ars = float(rdata.hget(
"prices", "dolarsi:usd-ars").decode('utf-8'))
converted_ars = usdprice * price_ars
rdata.hset("prices", "coingecko:nano-ars", converted_ars)
print("Coingecko NANO-ARS", rdata.hget("prices",
"coingecko:nano-ars").decode('utf-8'))
print(rdata.hset("prices", "coingecko:lastupdate",
int(time.time())), int(time.time()))
coingecko()
print("Coingecko NANO-USD:", rdata.hget("prices",
"coingecko:nano-usd").decode('utf-8'))
print("Coingecko NANO-BTC:", rdata.hget("prices",
"coingecko:nano-btc").decode('utf-8'))
print("Last Update: ", rdata.hget(
"prices", "coingecko:lastupdate").decode('utf-8'))