Skip to content

Commit

Permalink
Merge pull request pandas-dev#149 from xgdgsc/patch-1
Browse files Browse the repository at this point in the history
Fix Quandl library references in README.md ; Apple can be found in WIKI/AAPL
  • Loading branch information
jamesblackburn authored Jul 1, 2016
2 parents 5afeb6c + b8b39f9 commit 91930c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ mongod --dbpath <path/to/db_directory>

```
from arctic import Arctic
import quandl
# Connect to Local MONGODB
store = Arctic('localhost')
Expand All @@ -45,7 +46,7 @@ store.initialize_library('NASDAQ')
library = store['NASDAQ']
# Load some data - maybe from Quandl
aapl = Quandl.get("NASDAQ/AAPL", authtoken="your token here")
aapl = quandl.get("WIKI/AAPL", authtoken="your token here")
# Store the data in the library
library.write('AAPL', aapl, metadata={'source': 'Quandl'})
Expand Down

0 comments on commit 91930c6

Please sign in to comment.