def get_crypto_quotes(**kwargs): """ Function for obtaining all available cryptocurrency quotes .. warning:: This endpoint is only available using the legacy IEX Developer API (v1). See :ref:`Migrating` for more information. """ return CryptoReader(**kwargs).fetch()
def get_crypto_quotes(**kwargs): """ DEPRECATED """ return CryptoReader(**kwargs).fetch()
def get_crypto_quotes(**kwargs): """ Top-level function for obtaining all available cryptocurrency quotes """ return CryptoReader(**kwargs).fetch()