From 8a31d827e1492722c7e2bdecb99fab9181eeaabc Mon Sep 17 00:00:00 2001 From: "Trenton J. McKinney" Date: Mon, 3 Aug 2020 22:37:28 -0700 Subject: [PATCH] Update README.rst There seems to be a missing method call and the tab completion has uppercase tickers available. `tickers.msft.info` results in `AttributeError: 'Tickers' object has no attribute 'msft'`, while `tickers.tickers.MSFT.info` works as expected. --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index c945fb6f3..c6d3af348 100644 --- a/README.rst +++ b/README.rst @@ -157,9 +157,9 @@ To initialize multiple ``Ticker`` objects, use # ^ returns a named tuple of Ticker objects # access each ticker using (example) - tickers.msft.info - tickers.aapl.history(period="1mo") - tickers.goog.actions + tickers.tickers.MSFT.info + tickers.tickers.AAPL.history(period="1mo") + tickers.tickers.GOOG.actions Fetching data for multiple tickers