Source code for pyEX.stocks.news

# *****************************************************************************
#
# Copyright (c) 2020, the pyEX authors.
#
# This file is part of the pyEX library, distributed under the terms of
# the Apache License 2.0.  The full license can be found in the LICENSE file.
#
from functools import wraps

import pandas as pd

from ..common import _get, _quoteSymbols, _raiseIfNotStr, _reindex, _toDatetime


[docs]def news( symbol, count=10, token="", version="stable", filter="", format="json", ): """News about company https://iexcloud.io/docs/api/#news Continuous Args: symbol (str): Ticker to request count (int): limit number of results token (str): Access token version (str): API version filter (str): filters: https://iexcloud.io/docs/api/#filter-results format (str): return format, defaults to json Returns: dict or DataFrame: result dict: result """ _raiseIfNotStr(symbol) symbol = _quoteSymbols(symbol) return _get("stock/" + symbol + "/news/last/" + str(count), token, version, filter)
def _newsToDF(n): """internal""" return _reindex(_toDatetime(pd.DataFrame(n), reformatcols=["datetime"]), "datetime")
[docs]@wraps(news) def newsDF(*args, **kwargs): return _newsToDF(news(*args, **kwargs))
[docs]def marketNews(count=10, token="", version="stable", filter="", format="json"): """News about market https://iexcloud.io/docs/api/#news Continuous Args: count (int): limit number of results token (str): Access token version (str): API version filter (str): filters: https://iexcloud.io/docs/api/#filter-results format (str): return format, defaults to json Returns: dict or DataFrame: result dict: result """ return _get( "stock/market/news/last/" + str(count), token=token, version=version, filter=filter, format=format, )
[docs]@wraps(marketNews) def marketNewsDF(*args, **kwargs): return _reindex(_toDatetime(pd.DataFrame(marketNews(*args, **kwargs))), "datetime")