我对 Python 还很陌生,我一直在尝试让 Python Poloniex 包装器工作,但对它的用法有点不确定。代码发布在Github上
有人能够首先了解我将 API 密钥和秘密放在哪里吗?
我想它会进入这个部分吗?
class poloniex:
def __init__(self, APIKey, Secret):
self.APIKey = APIKey # Key here?
self.Secret = Secret # Secret here?
一旦我设置好密钥和秘密,调用各种功能的正确语法是什么,例如余额调用或购买调用?
它只是api_query('returnBalances') or poloniex.returnBalances('returnBalances')
一个例子吗?
我认为很多人可以在这方面使用一些指导和帮助!