How to use the yfinance.get_quotes function in yfinance

To help you get started, we’ve selected a few yfinance examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github neberej / pinance / pinance / __init__.py View on Github external
def __request_quotes__(self):
    gfinance_data = gfinance.get_quotes(self.symbol)
    yfinance_data = yfinance.get_quotes(self.symbol)
    yfinance2_data = yfinance2.get_quotes(self.symbol)
    return combine_objects(gfinance_data, yfinance_data, yfinance2_data)