mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-22 07:08:18 +00:00
parent
3b919a4224
commit
c1b663d56f
36
bc.py
36
bc.py
@ -20,10 +20,11 @@ from pagermaid.utils import execute
|
|||||||
imported = True
|
imported = True
|
||||||
try:
|
try:
|
||||||
from binance.client import Client
|
from binance.client import Client
|
||||||
|
import xmltodict
|
||||||
except ImportError:
|
except ImportError:
|
||||||
imported = False
|
imported = False
|
||||||
|
|
||||||
API = "https://api.exchangeratesapi.io/latest"
|
API = "https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml"
|
||||||
CURRENCIES = []
|
CURRENCIES = []
|
||||||
DATA = {}
|
DATA = {}
|
||||||
BINANCE_API_KEY = '8PDfQ2lSIyHPWdNAHNIaIoNy3MiiMuvgwYADbmtsKo867B0xnIhIGjPULsOtvMRk'
|
BINANCE_API_KEY = '8PDfQ2lSIyHPWdNAHNIaIoNy3MiiMuvgwYADbmtsKo867B0xnIhIGjPULsOtvMRk'
|
||||||
@ -35,14 +36,15 @@ def init():
|
|||||||
with urllib.request.urlopen(API) as response:
|
with urllib.request.urlopen(API) as response:
|
||||||
result = response.read()
|
result = response.read()
|
||||||
try:
|
try:
|
||||||
global DATA
|
global CURRENCIES, DATA
|
||||||
DATA = json.loads(result)
|
rate_data = xmltodict.parse(result)
|
||||||
DATA["rates"][DATA["base"]] = 1.0
|
rate_data = rate_data['gesmes:Envelope']['Cube']['Cube']['Cube']
|
||||||
for key in list(enumerate(DATA["rates"])):
|
for i in rate_data:
|
||||||
CURRENCIES.append(key[1])
|
CURRENCIES.append(i['@currency'])
|
||||||
|
DATA[i['@currency']] = float(i['@rate'])
|
||||||
CURRENCIES.sort()
|
CURRENCIES.sort()
|
||||||
except JSONDecodeError as _e:
|
except Exception as e:
|
||||||
raise _e
|
raise e
|
||||||
|
|
||||||
|
|
||||||
@listener(is_plugin=True,
|
@listener(is_plugin=True,
|
||||||
@ -53,15 +55,17 @@ def init():
|
|||||||
async def coin(context):
|
async def coin(context):
|
||||||
""" coin change """
|
""" coin change """
|
||||||
if not imported:
|
if not imported:
|
||||||
await context.edit("支持库python-binance未安装...\n正在尝试自动安装...")
|
await context.edit("支持库 `python-binance` `xmltodict` 未安装...\n正在尝试自动安装...")
|
||||||
await execute('python3 -m pip install python-binance')
|
await execute('python3 -m pip install python-binance')
|
||||||
|
await execute('python3 -m pip install xmltodict')
|
||||||
await sleep(10)
|
await sleep(10)
|
||||||
result = await execute('python3 show python-binance')
|
result = await execute('python3 show python-binance')
|
||||||
if len(result) > 0:
|
result1 = await execute('python3 show xmltodict')
|
||||||
await context.edit('支持库python-binance安装成功...\n正在尝试自动重启...')
|
if len(result) > 0 and len(result1) > 0:
|
||||||
|
await context.edit('支持库 `python-binance` `xmltodict` 安装成功...\n正在尝试自动重启...')
|
||||||
await context.client.disconnect()
|
await context.client.disconnect()
|
||||||
else:
|
else:
|
||||||
await context.edit("自动安装失败..请尝试手动安装 `python3 -m pip install python-binance`\n随后,请重启 PagerMaid")
|
await context.edit("自动安装失败..请尝试手动安装 `python3 -m pip install python-binance`\n\n`python3 -m pip install xmltodict`\n随后,请重启 PagerMaid")
|
||||||
return
|
return
|
||||||
init()
|
init()
|
||||||
action = context.arguments.split()
|
action = context.arguments.split()
|
||||||
@ -80,16 +84,16 @@ async def coin(context):
|
|||||||
price = 0.0
|
price = 0.0
|
||||||
|
|
||||||
if ((CURRENCIES.count(_from) != 0) and (CURRENCIES.count(_to) != 0)):
|
if ((CURRENCIES.count(_from) != 0) and (CURRENCIES.count(_to) != 0)):
|
||||||
text = f'{action[0]} {action[1].upper().strip()} = {round(float(action[0])*DATA["rates"][_to]/DATA["rates"][_from], 2)} {action[2].upper().strip()}'
|
text = f'{action[0]} {action[1].upper().strip()} = {round(float(action[0])*DATA[_to]/DATA[_from], 2)} {action[2].upper().strip()}'
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if CURRENCIES.count(_from) != 0:
|
if CURRENCIES.count(_from) != 0:
|
||||||
number = number * DATA["rates"]["USD"] / DATA["rates"][_from]
|
number = number * DATA["USD"] / DATA[_from]
|
||||||
_from = 'USDT'
|
_from = 'USDT'
|
||||||
front_text = f'{action[0]} {action[1]} = \n'
|
front_text = f'{action[0]} {action[1]} = \n'
|
||||||
|
|
||||||
if CURRENCIES.count(_to) != 0:
|
if CURRENCIES.count(_to) != 0:
|
||||||
_to_USD_rate = DATA["rates"][_to] / DATA["rates"]["USD"]
|
_to_USD_rate = DATA[_to] / DATA["USD"]
|
||||||
_to = 'USDT'
|
_to = 'USDT'
|
||||||
|
|
||||||
for _a in prices:
|
for _a in prices:
|
||||||
@ -97,7 +101,7 @@ async def coin(context):
|
|||||||
price = _a['price']
|
price = _a['price']
|
||||||
if _to == 'USDT':
|
if _to == 'USDT':
|
||||||
if action[2].upper().strip() == 'USDT':
|
if action[2].upper().strip() == 'USDT':
|
||||||
rear_text = f'\n= {round(number * float(price) * DATA["rates"]["CNY"]/DATA["rates"]["USD"], 2)} CNY'
|
rear_text = f'\n= {round(number * float(price) * DATA["CNY"]/DATA["USD"], 2)} CNY'
|
||||||
else:
|
else:
|
||||||
rear_text = f'\n= {round(number * float(price) * _to_USD_rate, 2)} {action[2]}'
|
rear_text = f'\n= {round(number * float(price) * _to_USD_rate, 2)} {action[2]}'
|
||||||
_r = 2
|
_r = 2
|
||||||
|
Loading…
Reference in New Issue
Block a user