如何调用Python中需要“self”的方法?

时间:2017-11-16 04:10:14

标签: python api

我是python的新手,我正在试图弄清楚需要传递给这个方法的内容。我敢肯定这是一个noob问题,但我如何创建一个传递给self的对象?

class Bittrex(object):

    def get_markets(self):

        return self._api_query(path_dict={
            API_V1_1: '/public/getmarkets',
            API_V2_0: '/pub/Markets/GetMarkets'
        }, protection=PROTECTION_PUB)

    get_markets(self) //My attempt to call

1 个答案:

答案 0 :(得分:2)

创建类Bittrex的对象,然后使用.

调用方法
b = Bittrex()
res = b.get_markets()