Skip to content

Commit

Permalink
Update README.rst
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
trenton3983 authored Aug 4, 2020
1 parent 476cf81 commit 8a31d82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a31d82

Please sign in to comment.