def logoNotebook(symbol, token="", version=""): """This is a helper function, but the google APIs url is standardized. https://iexcloud.io/docs/api/#logo 8am UTC daily Args: symbol (str): Ticker to request token (str): Access token version (str): API version Returns: image: result """ _raiseIfNotStr(symbol) url = logo(_quoteSymbols(symbol), token, version)["url"] return ImageI(url=url)
def logoNotebook(symbol, token='', version='', filter=''): '''This is a helper function, but the google APIs url is standardized. https://iexcloud.io/docs/api/#logo 8am UTC daily Args: symbol (str): Ticker to request token (str): Access token version (str): API version filter (str): filters: https://iexcloud.io/docs/api/#filter-results Returns: image: result ''' _raiseIfNotStr(symbol) url = logo(symbol, token, version, filter)['url'] return ImageI(url=url)
def logoNotebook(symbol): '''https://iextrading.com/developer/docs/#logo''' _raiseIfNotStr(symbol) url = logo(symbol)['url'] return ImageI(url=url)
def logoNotebook(symbol): url = logo(symbol)['url'] return ImageI(url=url)
def logoNotebook(symbol): _raiseIfNotStr(symbol) url = logo(symbol)['url'] return ImageI(url=url)