cryptocompsdk.exchanges.symbols package

Submodules

cryptocompsdk.exchanges.symbols.api module

class cryptocompsdk.exchanges.symbols.api.ExchangeSymbolsAPI(api_key, throttle=None)[source]

Bases: cryptocompsdk.request.APIBase

get(from_symbol=None, exchange=None, top_tier_only=False)[source]
Return type

ExchangesSymbols

cryptocompsdk.exchanges.symbols.parse module

exception cryptocompsdk.exchanges.symbols.parse.CouldNotGetExchangeSymbolsException[source]

Bases: cryptocompsdk.response.ResponseException

class cryptocompsdk.exchanges.symbols.parse.ExchangesSymbols(data, response=None, message=None, has_warning=None, param_with_error=None, type=None, rate_limit=None)[source]

Bases: cryptocompsdk.response.ResponseAPIBase

__init__(data, response=None, message=None, has_warning=None, param_with_error=None, type=None, rate_limit=None)

Initialize self. See help(type(self)) for accurate signature.

data: dict
static from_dict(obj)[source]
Return type

ExchangesSymbols

has_warning: Optional[bool] = None
message: Optional[str] = None
param_with_error: Optional[str] = None
rate_limit: Optional[cryptocompsdk.exchanges.symbols.parse.RateLimit] = None
response: Optional[str] = None
to_df()[source]
Return type

DataFrame

to_dict()[source]
Return type

dict

to_history_query_dicts()[source]
Return type

List[Dict[str, str]]

type: Optional[int] = None
class cryptocompsdk.exchanges.symbols.parse.RateLimit[source]

Bases: object

__init__()

Initialize self. See help(type(self)) for accurate signature.

static from_dict(obj)[source]
Return type

RateLimit

to_dict()[source]
Return type

dict

cryptocompsdk.exchanges.symbols.parse.exchanges_symbols_from_dict(s)[source]
Return type

ExchangesSymbols

cryptocompsdk.exchanges.symbols.parse.exchanges_symbols_to_dict(x)[source]
Return type

Any