From b8b39f9e5181fb88306ab2c1b9fe6a3a4698b53b Mon Sep 17 00:00:00 2001 From: xgdgsc Date: Fri, 17 Jun 2016 10:54:32 +0800 Subject: [PATCH] quandl changes --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b3d0423228ef..f408b22b4e878 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ mongod --dbpath ``` from arctic import Arctic +import quandl # Connect to Local MONGODB store = Arctic('localhost') @@ -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'})