DYDX 交换的 python API 请求未在 Visual Studio Code 的终端中发回响应

问题描述 投票:0回答:1

在 Visual Studio 代码中,我在终端中没有收到响应。

我不知道问题是什么,我真的需要任何非常感谢的人的帮助!!!

DYDX API python 包的 github https://github.com/dydxprotocol/dydx-v3-python

pip 安装 dydx-v3-python

enter image description here

enter image description here

如果我打印(蜡烛)我得到 在终端

这里是DYDX交易所的API文档 https://dydxprotocol.github.io/v3-teacher/?python#get-candles-for-market

import asyncio, json, time, websockets
from sortedcontainers import SortedDict

from dydx3 import Client
from dydx3.helpers.request_helpers import generate_now_iso
from web3 import Web3
from dydx3.constants import *



# Access public API endpoints.
client = Client(
    host='https://api.dydx.exchange',
)
client.public.get_markets()

price=client.public.get_candles(MARKET_BTC_USD, resolution="5MINS")
print(price)

candles = client.public.get_candles(
  market=MARKET_BTC_USD,
  resolution='1DAY',
)
candles
python python-3.x visual-studio-code
1个回答
0
投票

您所需要的只是打印(蜡烛.数据)

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.