Skip to content

Commit

Permalink
Merge pull request #29 from yuriscosta/master
Browse files Browse the repository at this point in the history
Add method to get coins info
  • Loading branch information
gateio authored Jun 25, 2019
2 parents ff4dd59 + 6d7d213 commit 9079a74
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions python/gateAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ def pairs(self):
URL = "/api2/1/pairs"
params=''
return httpGet(self.__url, URL, params)

#所有货币
def coins_info(self):
URL = "/api2/1/coininfo"
params = ''
return httpGet(self.__url, URL, params)

#市场订单参数
def marketinfo(self):
Expand Down

0 comments on commit 9079a74

Please sign in to comment.