This is a code I am trying
import matplotlib.pyplot as plt import pandas as pd ticker = \'GLD\' begdate = \'2014-11-11\' enddate = \'2016-11-11\' data1 =
You need to do
import pandas.io.data as web
then you can easily execute
web.DataReader(stuff)
Also, don't forget to import datetime as dt otherwise you'll catch another exception. Also, I've just was late for 1 sec :(
import datetime as dt