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.

33 lines
711 B

HUOBI_URL_PRO = "https://api.huobi.pro"
HUOBI_URL_VN = "https://api.huobi.vn"
HUOBI_URL_SO = "https://api.huobi.so"
HUOBI_WEBSOCKET_URI_PRO = "wss://api.huobi.pro"
HUOBI_WEBSOCKET_URI_VN = "wss://api.huobi.vn"
HUOBI_WEBSOCKET_URI_SO = "wss://api.huobi.so"
class WebSocketDefine:
Uri = HUOBI_WEBSOCKET_URI_PRO
class RestApiDefine:
Url = HUOBI_URL_PRO
class HttpMethod:
GET = "GET"
GET_SIGN = "GET_SIGN"
POST = "POST"
POST_SIGN = "POST_SIGN"
class ApiVersion:
VERSION_V1 = "v1"
VERSION_V2 = "v2"
def get_default_server_url(user_configed_url):
if user_configed_url and len(user_configed_url):
return user_configed_url
else:
return RestApiDefine.Url