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'})