You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
508 B
24 lines
508 B
from huobi.connection.restapi_sync_client import RestApiSyncClient
|
|
from huobi.constant.system import HttpMethod
|
|
|
|
|
|
class GetSystemStatusService:
|
|
|
|
def __init__(self, params):
|
|
self.params = params
|
|
|
|
def request(self, **kwargs):
|
|
channel = "/api/v2/summary.json"
|
|
kwargs["url"] = "https://status.huobigroup.com"
|
|
|
|
def parse(dict_data):
|
|
return dict_data
|
|
|
|
return RestApiSyncClient(**kwargs).request_process(HttpMethod.GET, channel, self.params, parse)
|
|
|
|
|
|
|
|
|
|
|
|
|